From 339c17d7006c5bb3eac1f8fe58e87faef05ae14a Mon Sep 17 00:00:00 2001 From: philipp lang Date: Wed, 31 Jul 2024 13:41:26 +0200 Subject: [PATCH] Update zoom --- src/Point.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Point.php b/src/Point.php index 5a3078d..af3f5a9 100644 --- a/src/Point.php +++ b/src/Point.php @@ -24,7 +24,7 @@ class Point extends Data return '/osm-static-maps/?' . http_build_query([ 'geojson' => json_encode(['type' => 'Point', 'coordinates' => [$this->lon, $this->lat]]), 'zoom' => 20, - 'maxZoom' => 18, + 'maxZoom' => 20, ]); } }