Created
September 24, 2017 12:48
-
-
Save carolina-vallejo/81f2bc195421ac05cca4fc7fa1d3051c to your computer and use it in GitHub Desktop.
disable interaction leaflet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
leafletMap.dragging.disable(); | |
leafletMap.touchZoom.disable(); | |
leafletMap.doubleClickZoom.disable(); | |
leafletMap.scrollWheelZoom.disable(); | |
leafletMap.boxZoom.disable(); | |
leafletMap.keyboard.disable(); | |
if (leafletMap.tap) leafletMap.tap.disable(); | |
document.getElementById('mapid').style.cursor = 'default'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment