From 87300623a34f0de029bb8fa1cc03500f626891ee Mon Sep 17 00:00:00 2001 From: philipp lang Date: Tue, 10 Dec 2024 11:20:22 +0100 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 e950efa..af3f5a9 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' => 15, - 'maxZoom' => 15, + 'zoom' => 20, + 'maxZoom' => 20, ]); } }