From 0e1686decab32ebed5b7af3e37d381ad8b5ee5c4 Mon Sep 17 00:00:00 2001 From: Boubrid Ihab Date: Tue, 21 Jun 2022 23:59:43 +0100 Subject: check if maxZoom has value before using it --- modern/src/map/core/MapView.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'modern') diff --git a/modern/src/map/core/MapView.js b/modern/src/map/core/MapView.js index 38191a94..98865157 100644 --- a/modern/src/map/core/MapView.js +++ b/modern/src/map/core/MapView.js @@ -81,7 +81,9 @@ const MapView = ({ children }) => { const maxZoom = useAttributePreference('web.maxZoom'); useEffect(() => { - map.setMaxZoom(maxZoom); + if (maxZoom) { + map.setMaxZoom(maxZoom); + } }, [maxZoom]); useEffect(() => { -- cgit v1.2.3