From a4a8722de0e28b7e21f0e3f49f88fb5bbb217257 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Fri, 29 May 2020 07:36:11 +1000 Subject: [PATCH] Reversed zoom direction --- 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 f04bc84..60e929a 100644 --- a/src/components/map/MapInteraction.js +++ b/src/components/map/MapInteraction.js @@ -14,7 +14,7 @@ import { MapInteractionProvider } from "../../contexts/MapInteractionContext"; import MapStageContext from "../../contexts/MapStageContext"; import AuthContext from "../../contexts/AuthContext"; -const wheelZoomSpeed = 0.001; +const wheelZoomSpeed = -0.001; const touchZoomSpeed = 0.005; const minZoom = 0.1; const maxZoom = 5;