chore: maxZoom = 20;

This commit is contained in:
ISA
2025-09-16 11:55:41 +02:00
parent eaacec71da
commit 995f084e15
12 changed files with 17 additions and 26 deletions

View File

@@ -67,7 +67,7 @@ export const initializeMap = (
let mapCenter = [53.111111, 8.4625];
let mapZoom = 12;
let minZoom = 5;
let maxZoom = 15;
let maxZoom = 20;
try {
if (window && window.__leafletConfig) {
config = window.__leafletConfig;

View File

@@ -15,7 +15,7 @@ export const zoomIn = (e, map) => {
return;
}
let maxZoom = 19;
let maxZoom = 20;
try {
if (window && window.__tileSourceMaxZoom !== undefined) {
maxZoom = window.__tileSourceMaxZoom;