Disable scroll zooming on the map. (#11825)

In safari, scrolling caused the map to zoom in/out when the users scrolled up or down a dashboard. This was disabled pre 5.4 as well.
This commit is contained in:
Thomas Neirynck 2017-05-22 12:04:13 -04:00 committed by GitHub
parent e62e063439
commit f20186122a

View file

@ -105,6 +105,7 @@ export class KibanaMap extends EventEmitter {
};
this._leafletMap = L.map(containerNode, leafletOptions);
this._leafletMap.scrollWheelZoom.disable();
const worldBounds = L.latLngBounds(L.latLng(-90, -180), L.latLng(90, 180));
this._leafletMap.setMaxBounds(worldBounds);