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];
361 $imgUrl = "https://maps.googleapis.com/maps/api/staticmap?";
362 $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
365 $imgUrl .= "&center=" . $gmap ['lat'] . "," . $gmap ['lon'];
368 $imgUrl .= "&zoom=17";
370 $imgUrl .= "&zoom=" . $gmap ['zoom'];
376 … $imgUrl .= "&markers=icon%3a" . $sUrl . "lib/plugins/openlayersmap/icons/" . $img . "%7c"
380 $imgUrl .= "&format=png&maptype=" . $maptype;
382 $imgUrl .= "&language=" . $conf ['lang'];
384 $imgUrl .= "&key=" . $this->getConf('googleAPIkey');
386 return $imgUrl;
545 $imgUrl = "https://staticmap.openstreetmap.de/staticmap.php";
546 $imgUrl .= "?center=" . $gmap ['lat'] . "," . $gmap ['lon'];
547 $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
552 $imgUrl .= "&zoom=16";
554 $imgUrl .= "&zoom=" . $gmap ['zoom'];
559 $imgUrl .= "&markers=";
564 $imgUrl .= "$lat,$lon,$iconStyle%7c";
566 $imgUrl = substr($imgUrl, 0, -3);
569 $result = $imgUrl;
599 $imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/" . $maptype;// . "/";
604 … $imgUrl .= "?ma=" . $bbox ['minlat'] . "%2C" . $bbox ['minlon'] . "%2C" . $bbox ['maxlat']
606 $imgUrl .= "&dcl=1";
608 if (strpos($imgUrl, "?") === false)
609 $imgUrl .= "?";
613 $imgUrl .= "&ms=" . str_replace("px", "", $gmap ['width']) . "%2C"
615 $imgUrl .= "&key=" . $this->getConf('bingAPIKey');
629 $imgUrl .= "&pp=$lat%2C$lon%3B$iconStyle%3B$rowId";
633 $imgUrl .= "&fmt=png";
634 $imgUrl .= "&c=" . $conf ['lang'];
635 return $imgUrl;