19 declare(strict_types=1);
35 $this->tile_server =
"";
36 $this->geolocation_server =
"";
46 $this->tile_server = $tile;
57 $this->geolocation_server = $geolocation;
64 "tpl.openlayers_map.html",
67 "components/ILIAS/Maps" 71 "tpl.openlayers_map.js",
74 "components/ILIAS/Maps" 77 $this->
lng->loadLanguageModule(
"maps");
78 $this->tpl->addCss(
"components/ILIAS/Maps/css/service_openlayers.css");
79 $this->tpl->addJavaScript(
"assets/js/ServiceOpenLayers.js");
83 foreach ($this->user_marker as
$user_id) {
86 if ($user->getLatitude() != 0 && $user->getLongitude() != 0 &&
87 $user->getPref(
"public_location") ==
"y") {
88 $js_tpl->setCurrentBlock(
"user_marker");
93 $js_tpl->setVariable(
"CNT", $cnt);
95 $js_tpl->setVariable(
"ULAT", htmlspecialchars($user->getLatitude()));
96 $js_tpl->setVariable(
"ULONG", htmlspecialchars($user->getLongitude()));
97 $info = htmlspecialchars($user->getFirstName() .
" " . $user->getLastName());
99 if ($user->getPref(
"public_institution") ==
"y") {
100 $info .= $delim . htmlspecialchars($user->getInstitution());
103 if ($user->getPref(
"public_department") ==
"y") {
104 $info .= $delim . htmlspecialchars($user->getDepartment());
107 if ($user->getPref(
"public_street") ==
"y") {
108 $info .= $delim . htmlspecialchars($user->getStreet());
110 if ($user->getPref(
"public_zip") ==
"y") {
111 $info .= $delim . htmlspecialchars($user->getZipcode());
114 if ($user->getPref(
"public_city") ==
"y") {
115 $info .= $delim . htmlspecialchars($user->getCity());
118 if ($user->getPref(
"public_country") ==
"y") {
119 $info .= $delim . htmlspecialchars($user->getCountry());
121 $js_tpl->setVariable(
125 $js_tpl->setVariable(
127 $user->getPersonalPicturePath(
"xsmall")
129 $js_tpl->parseCurrentBlock();
135 $html_tpl->setVariable(
"MAP_ID", $this->
getMapId());
136 $html_tpl->setVariable(
"WIDTH", $this->
getWidth());
137 $html_tpl->setVariable(
"HEIGHT", $this->
getHeight());
139 $js_tpl->setVariable(
"MAP_ID", $this->
getMapId());
142 $js_tpl->setVariable(
"ZOOM", (
int) $this->
getZoom());
147 $js_tpl->setVariable(
"NAV_CONTROL", $nav_control);
155 $js_tpl->setVariable(
"REPLACE_MARKER", $replace_marker);
158 $tile_servers = explode(
" ", $tile_servers);
159 array_walk($tile_servers,
function (&$string) {
160 $string =
'"' . $string .
'"';
162 $tile_servers =
'[' . implode(
', ', $tile_servers) .
']';
164 $js_tpl->setVariable(
"TILES", $tile_servers);
166 $js_tpl->setVariable(
"INVALID_ADDRESS_STRING", $this->
lng->txt(
"invalid_address"));
168 $this->tpl->addOnLoadCode($js_tpl->get());
170 return $html_tpl->get();
179 "tpl.openlayers_map_user_list.html",
182 "components/ILIAS/Maps" 186 foreach ($this->user_marker as
$user_id) {
189 $this->css_row = ($this->css_row !=
"tblrow1_mo")
192 if ($user->getLatitude() != 0 && $user->getLongitude() != 0
193 && $user->getPref(
"public_location") ==
"y") {
194 $list_tpl->setCurrentBlock(
"item");
195 $list_tpl->setVariable(
"MARKER_CNT", $cnt);
196 $list_tpl->setVariable(
"MAP_ID", $this->
getMapId());
199 $list_tpl->setCurrentBlock(
"item_no_link");
201 $list_tpl->setVariable(
"CSS_ROW", $this->css_row);
202 $list_tpl->setVariable(
"TXT_USER", $user->getLogin());
203 $list_tpl->setVariable(
205 $user->getPersonalPicturePath(
"xxsmall")
207 $list_tpl->parseCurrentBlock();
208 $list_tpl->touchBlock(
"row");
212 return $list_tpl->get();
getUserListHtml()
Get User List HTML (to be displayed besides the map)
getEnableUpdateListener()
getEnableNavigationControl()
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
string $geolocation_server
setTileServers(string $tile)
__construct(Container $dic, ilPlugin $plugin)
User interface class for maps.
User interface class for OpenLayers maps.
setGeolocationServer(?string $geolocation)