From 5d46abe828fe35b57437b42264f811aec1903791 Mon Sep 17 00:00:00 2001 From: Jim O'Donnell Date: Wed, 5 Jun 2024 15:55:36 +0100 Subject: [PATCH] fix(frontend): fix max map zoom The maximum map zoom was accidentally changed during the move to vector basemaps. This reverts that change. --- frontend/src/config/map-view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/config/map-view.ts b/frontend/src/config/map-view.ts index 3cd921dc..451ca666 100644 --- a/frontend/src/config/map-view.ts +++ b/frontend/src/config/map-view.ts @@ -20,7 +20,7 @@ export const mapViewConfig: MapViewConfig = { }, viewLimits: { minZoom: 3, - maxZoom: 12, + maxZoom: 16, maxPitch: 0, }, };