Update zoom

This commit is contained in:
philipp lang 2024-12-10 11:20:22 +01:00
parent bb40476fdc
commit 87300623a3
1 changed files with 2 additions and 2 deletions

View File

@ -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,
]);
}
}