Lines Matching refs:imgUrl

109         $imgUrl = "{{";
112 $imgUrl .= $this->getGoogle($gmap, $overlay);
113 $imgUrl .= "&.png";
119 $imgUrl .= $_firstimageID;
121 $imgUrl .= "&.png";
126 $imgUrl .= $this->getBing($gmap, $overlay) . "&.png";
145 $imgUrl .= $_firstimageID;
147 $imgUrl .= "&.png";
152 $imgUrl .= "?" . str_replace("px", "", $gmap ['width']) . "x"
154 $imgUrl .= "&nolink";
158 $imgUrl .= "&nocache";
161 $imgUrl .= " |" . $gmap ['summary'] . " }}";
243 … return [$mapid, $js, $mainLat, $mainLon, $poitable, $gmap ['summary'], $imgUrl, $_firstimageID];
351 $imgUrl = "https://maps.googleapis.com/maps/api/staticmap?";
352 $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
355 $imgUrl .= "&center=" . $gmap ['lat'] . "," . $gmap ['lon'];
358 $imgUrl .= "&zoom=17";
360 $imgUrl .= "&zoom=" . $gmap ['zoom'];
366 … $imgUrl .= "&markers=icon%3a" . $sUrl . "lib/plugins/openlayersmap/icons/" . $img . "%7c"
370 $imgUrl .= "&format=png&maptype=" . $maptype;
372 $imgUrl .= "&language=" . $conf ['lang'];
374 $imgUrl .= "&key=" . $this->getConf('googleAPIkey');
376 return $imgUrl;
535 $imgUrl = "https://staticmap.openstreetmap.de/staticmap.php";
536 $imgUrl .= "?center=" . $gmap ['lat'] . "," . $gmap ['lon'];
537 $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
542 $imgUrl .= "&zoom=16";
544 $imgUrl .= "&zoom=" . $gmap ['zoom'];
549 $imgUrl .= "&markers=";
554 $imgUrl .= "$lat,$lon,$iconStyle%7c";
556 $imgUrl = substr($imgUrl, 0, -3);
559 $result = $imgUrl;
577 $imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/" . $maptype;// . "/";
582 … $imgUrl .= "?ma=" . $bbox ['minlat'] . "%2C" . $bbox ['minlon'] . "%2C" . $bbox ['maxlat']
584 $imgUrl .= "&dcl=1";
586 if (!str_contains($imgUrl, "?"))
587 $imgUrl .= "?";
591 $imgUrl .= "&ms=" . str_replace("px", "", $gmap ['width']) . "%2C"
593 $imgUrl .= "&key=" . $this->getConf('bingAPIKey');
607 $imgUrl .= "&pp=$lat%2C$lon%3B$iconStyle%3B$rowId";
611 $imgUrl .= "&fmt=png";
612 $imgUrl .= "&c=" . $conf ['lang'];
613 return $imgUrl;