aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/Map.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-04-05 20:15:17 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2021-04-05 20:15:17 -0700
commitdbd9a093caf6df8f5ed50801c40b5e15e7726f59 (patch)
tree52afde885dca4dffdaf6e5e5473238c7620a56f6 /modern/src/map/Map.js
parent5bfcb85c789fcc9fdff8e4eb10c2952fa17969e5 (diff)
downloadetbsa-traccar-web-dbd9a093caf6df8f5ed50801c40b5e15e7726f59.tar.gz
etbsa-traccar-web-dbd9a093caf6df8f5ed50801c40b5e15e7726f59.tar.bz2
etbsa-traccar-web-dbd9a093caf6df8f5ed50801c40b5e15e7726f59.zip
Revert zoom changes
Diffstat (limited to 'modern/src/map/Map.js')
-rw-r--r--modern/src/map/Map.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js
index d83c297..8a43e97 100644
--- a/modern/src/map/Map.js
+++ b/modern/src/map/Map.js
@@ -93,23 +93,6 @@ const Map = ({ children }) => {
};
}, []);
- useEffect(() => {
- if (mapReady && Object.values(map.getStyle().sources).some(e => e.type === 'raster')) {
- const onIdle = function () {
- const zoom = Math.round(map.getZoom());
- if (zoom !== map.getZoom()) {
- map.zoomTo(zoom);
- }
- };
- map.scrollZoom.setWheelZoomRate(1);
- map.on('idle', onIdle);
- return () => {
- map.scrollZoom.setWheelZoomRate(1/450);
- map.off('idle', onIdle);
- }
- }
- }, [mapReady]);
-
useLayoutEffect(() => {
const currentEl = containerEl.current;
currentEl.appendChild(element);