Lines Matching refs:lat
78 private float $lat; variable in dokuwiki\\plugin\\openlayersmap\\StaticMap
100 * @param float $lat
128 float $lat, argument
144 $this->lat = $lat;
202 $geoms [] = new Point($this->lon, $this->lat);
261 $this->lat = $centroid->getY();
262 …("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat");
279 $this->lat,
342 $this->centerY = $this->latToTile($this->lat, $this->zoom);
360 * @param float $lat
364 public function latToTile(float $lat, int $zoom): float argument
366 … return (1 - log(tan($lat * M_PI / 180) + 1 / cos($lat * M_PI / 180)) / M_PI) / 2 * 2 ** $zoom;