Lines Matching refs:lat
75 private $lat; variable in dokuwiki\\plugin\\openlayersmap\\StaticMap
97 * @param float $lat
125 float $lat, argument
141 $this->lat = $lat;
199 $geoms [] = new Point($this->lon, $this->lat);
258 $this->lat = $centroid->getY();
259 …("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), $thi…
328 $this->centerY = $this->latToTile($this->lat, $this->zoom);
346 * @param float $lat
350 public function latToTile(float $lat, int $zoom) argument
352 … return (1 - log(tan($lat * M_PI / 180) + 1 / cos($lat * M_PI / 180)) / M_PI) / 2 * 2 ** $zoom;