From 5cedc661f5399b534fb1e7180b72273e325fff1d Mon Sep 17 00:00:00 2001 From: philipp lang Date: Tue, 15 Jul 2025 10:52:01 +0200 Subject: [PATCH] fix param --- src/Point.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Point.php b/src/Point.php index 6353da4..a94653e 100644 --- a/src/Point.php +++ b/src/Point.php @@ -19,7 +19,7 @@ class Point extends Data ]); } - public function markerUrl(string $zoom = 20): string + public function markerUrl(string $zoom = '20'): string { return '/osm-static-maps/?' . http_build_query([ 'geojson' => json_encode(['type' => 'Point', 'coordinates' => [$this->lon, $this->lat]]),