From 8c304c76e59910329b1b6ab373f4ed79098f877f Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Thu, 30 Apr 2020 16:16:12 +1000 Subject: [PATCH] Adjusted map zoom speed --- src/components/map/MapInteraction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/MapInteraction.js b/src/components/map/MapInteraction.js index 5d21afe..e440b17 100644 --- a/src/components/map/MapInteraction.js +++ b/src/components/map/MapInteraction.js @@ -5,7 +5,7 @@ import normalizeWheel from "normalize-wheel"; import { MapInteractionProvider } from "../../contexts/MapInteractionContext"; -const zoomSpeed = -0.005; +const zoomSpeed = -0.001; const minZoom = 0.1; const maxZoom = 5;