From 47cbf77def2f6a7a7318e3a14d2eaf3bfe7ac471 Mon Sep 17 00:00:00 2001 From: Aadesh-Baral Date: Mon, 20 Mar 2023 19:54:35 +0545 Subject: [PATCH] Set default zoom to 18 --- frontend/src/components/tagEditor/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/tagEditor/map.js b/frontend/src/components/tagEditor/map.js index 65981b0..8d4563e 100644 --- a/frontend/src/components/tagEditor/map.js +++ b/frontend/src/components/tagEditor/map.js @@ -31,7 +31,7 @@ const Map = (props) => { container: "map-container", style: osm_style, center: [0, 0], - zoom: 19, + zoom: 18, }); return () => mapContainerRef.current && mapContainerRef.current.remove(); }, []);