Lines Matching defs:lon
76 private $lon;
99 * @param float $lon
121 * Wheter or not to override zoom/lat/lon and zoom to the extent of gpx/kml and markers
126 float $lon,
142 $this->lon = $lon;
190 * Calculate the lat/lon/zoom values to make sure that all of the markers and gpx/kml are on the map.
199 $geoms [] = new Point($this->lon, $this->lat);
202 $geoms [] = new Point($marker ['lon'], $marker ['lat']);
257 $this->lon = $centroid->getX();
259 Logger::debug("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat");
274 [$this->zoom, $this->lat, $this->lon, $this->width, $this->height, serialize($this->markers), $this->maptype, $this->kmlFileName, $this->gpxFileName, $this->geojsonFileName]
327 $this->centerX = $this->lonToTile($this->lon, $this->zoom);
522 $markerLon = $marker ['lon'];