26 public function init(): void
40 [
"Latitude" =>
"0",
"Longitude" =>
"0",
"Zoom" =>
"3"]
46 if (!is_null($a_lat)) {
47 $this->
getChildNode()->setAttribute(
"Latitude", (
string) $a_lat);
58 return (
float) $this->
getChildNode()->getAttribute(
"Latitude");
65 if (!is_null($a_long)) {
66 $this->
getChildNode()->setAttribute(
"Longitude", $a_long);
77 return (
float) $this->
getChildNode()->getAttribute(
"Longitude");
82 public function setZoom(?
int $a_zoom): void
85 $this->
getChildNode()->setAttribute(
"Zoom", (
int) $a_zoom);
96 return (
int) $this->
getChildNode()->getAttribute(
"Zoom");
104 string $a_horizontal_align
107 $this->dom_util->setFirstOptionalElement(
112 array(
"Width" => (
string) $a_width,
113 "Height" => (
string) $a_height,
"HorizontalAlign" => $a_horizontal_align)
122 if ($child->nodeName ==
"Layout") {
123 $w = $child->getAttribute(
"Width")
124 ? (
int) $child->getAttribute(
"Width")
137 if ($child->nodeName ==
"Layout") {
138 $h = $child->getAttribute(
"Height")
139 ? (
int) $child->getAttribute(
"Height")
152 if ($child->nodeName ==
"Layout") {
153 return $child->getAttribute(
"HorizontalAlign");
163 $this->dom_util->setFirstOptionalElement(
177 if ($child->nodeName ==
"MapCaption") {
178 return $this->dom_util->getContent($child);
188 $a_text = str_replace(chr(13) . chr(10),
"<br />", $a_text);
189 $a_text = str_replace(chr(13),
"<br />", $a_text);
190 $a_text = str_replace(chr(10),
"<br />", $a_text);
198 $a_text = str_replace(
"<br />",
"\n", $a_text);
199 $a_text = str_replace(
"<br/>",
"\n", $a_text);
207 bool $a_abstract_only =
false 210 $start = strpos($a_output,
"[[[[[Map;");
211 if (is_int($start)) {
212 $end = strpos($a_output,
"]]]]]", $start);
216 $param = substr($a_output, $start + 9, $end - $start - 9);
221 $map_gui->setMapId(
"map_" . $i)
225 ->setWidth(
$param[3] .
"px")
226 ->setHeight(
$param[4] .
"px")
227 ->setEnableTypeControl(
true)
228 ->setEnableNavigationControl(
true)
229 ->setEnableCentralMarker(
true);
230 $h2 = substr($a_output, 0, $start) .
231 $map_gui->getHtml() .
232 substr($a_output, $end + 5);
236 $start = strpos($a_output,
"[[[[[Map;", $start + 5);
238 if (is_int($start)) {
239 $end = strpos($a_output,
"]]]]]", $start);
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
setType(string $a_type)
Set Type.
setLatitude(?float $a_lat=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getMapGUI()
Get an instance of the GUI class.
static handleCaptionFormOutput(string $a_text)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
setLongitude(?float $a_long=null)
static handleCaptionInput(string $a_text)
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)
setLayout(?int $a_width, ?int $a_height, string $a_horizontal_align)
setCaption(string $a_caption)
createInitialChildNode(string $hier_id, string $pc_id, string $child, array $child_attributes=[])