mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
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:
parent
e62e063439
commit
f20186122a
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue