From 6584953cd89120455032421a361b2f3ff4009f6b Mon Sep 17 00:00:00 2001 From: philipp lang Date: Wed, 31 Jul 2024 14:11:01 +0200 Subject: [PATCH] Update zoom --- src/Point.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Point.php b/src/Point.php index af3f5a9..e950efa 100644 --- a/src/Point.php +++ b/src/Point.php @@ -23,8 +23,8 @@ class Point extends Data { return '/osm-static-maps/?' . http_build_query([ 'geojson' => json_encode(['type' => 'Point', 'coordinates' => [$this->lon, $this->lat]]), - 'zoom' => 20, - 'maxZoom' => 20, + 'zoom' => 15, + 'maxZoom' => 15, ]); } }