28 public function init(): void
35 parent::setNode($a_node);
47 $this->map_node = $this->dom->create_element(
"Map");
48 $this->map_node = $this->node->append_child($this->map_node);
49 $this->map_node->set_attribute(
"Latitude",
"0");
50 $this->map_node->set_attribute(
"Longitude",
"0");
51 $this->map_node->set_attribute(
"Zoom",
"3");
56 if (!is_null($a_lat)) {
57 $this->map_node->set_attribute(
"Latitude", (
string) $a_lat);
59 if ($this->map_node->has_attribute(
"Latitude")) {
60 $this->map_node->remove_attribute(
"Latitude");
67 if (is_object($this->map_node)) {
68 return (
float) $this->map_node->get_attribute(
"Latitude");
75 if (!is_null($a_long)) {
76 $this->map_node->set_attribute(
"Longitude", $a_long);
78 if ($this->map_node->has_attribute(
"Longitude")) {
79 $this->map_node->remove_attribute(
"Longitude");
86 if (is_object($this->map_node)) {
87 return (
float) $this->map_node->get_attribute(
"Longitude");
92 public function setZoom(?
int $a_zoom): void
95 $this->map_node->set_attribute(
"Zoom", (
int) $a_zoom);
105 if (is_object($this->map_node)) {
106 return (
int) $this->map_node->get_attribute(
"Zoom");
114 string $a_horizontal_align
116 if (is_object($this->map_node)) {
123 array(
"Width" => (
string) $a_width,
124 "Height" => (
string) $a_height,
"HorizontalAlign" => $a_horizontal_align)
131 if (is_object($this->map_node)) {
132 $childs = $this->map_node->child_nodes();
133 foreach ($childs as $child) {
134 if ($child->node_name() ==
"Layout") {
135 $w = $child->get_attribute(
"Width")
136 ? (
int) $child->get_attribute(
"Width")
147 if (is_object($this->map_node)) {
148 $childs = $this->map_node->child_nodes();
149 foreach ($childs as $child) {
150 if ($child->node_name() ==
"Layout") {
151 $h = $child->get_attribute(
"Height")
152 ? (
int) $child->get_attribute(
"Height")
163 if (is_object($this->map_node)) {
164 $childs = $this->map_node->child_nodes();
165 foreach ($childs as $child) {
166 if ($child->node_name() ==
"Layout") {
167 return $child->get_attribute(
"HorizontalAlign");
176 if (is_object($this->map_node)) {
190 if (is_object($this->map_node)) {
191 $childs = $this->map_node->child_nodes();
192 foreach ($childs as $child) {
193 if ($child->node_name() ==
"MapCaption") {
194 return $child->get_content();
204 $a_text = str_replace(chr(13) . chr(10),
"<br />", $a_text);
205 $a_text = str_replace(chr(13),
"<br />", $a_text);
206 $a_text = str_replace(chr(10),
"<br />", $a_text);
214 $a_text = str_replace(
"<br />",
"\n", $a_text);
215 $a_text = str_replace(
"<br/>",
"\n", $a_text);
223 bool $a_abstract_only =
false 226 $start = strpos($a_output,
"[[[[[Map;");
227 if (is_int($start)) {
228 $end = strpos($a_output,
"]]]]]", $start);
232 $param = substr($a_output, $start + 9, $end - $start - 9);
237 $map_gui->setMapId(
"map_" .
$i)
241 ->setWidth(
$param[3] .
"px")
242 ->setHeight(
$param[4] .
"px")
243 ->setEnableTypeControl(
true)
244 ->setEnableNavigationControl(
true)
245 ->setEnableCentralMarker(
true);
246 $h2 = substr($a_output, 0, $start) .
247 $map_gui->getHtml() .
248 substr($a_output, $end + 5);
252 $start = strpos($a_output,
"[[[[[Map;", $start + 5);
254 if (is_int($start)) {
255 $end = strpos($a_output,
"]]]]]", $start);
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
setType(string $a_type)
Set Type.
static setFirstOptionalElement(php4DOMDocument $doc, php4DOMElement $parent_node, string $a_node_name, array $a_successors, string $a_content, array $a_attributes, bool $a_remove_childs=true)
searches for an element $a_node_name within the childs of $parent_node if no node is found...
setLatitude(?float $a_lat=null)
setNode(php4DOMElement $a_node)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getMapGUI()
Get an instance of the GUI class.
static handleCaptionFormOutput(string $a_text)
insertContent(ilPageContent $a_cont_obj, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="", bool $remove_placeholder=true)
insert a content node before/after a sibling or as first child of a parent
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
setLongitude(?float $a_long=null)
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
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)