diff --git a/src/ui/handler/touch_zoom_rotate.js b/src/ui/handler/touch_zoom_rotate.js index 3f03721869d..7bd1ad3b41a 100644 --- a/src/ui/handler/touch_zoom_rotate.js +++ b/src/ui/handler/touch_zoom_rotate.js @@ -273,10 +273,6 @@ class TouchZoomRotateHandler { const duration = Math.abs(speed / (inertiaDeceleration * inertiaLinearity)) * 1000; let targetScale = lastScale + speed * duration / 2000; - if (targetScale < 0) { - targetScale = 0; - } - map.easeTo({ zoom: targetScale, duration,