Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattsrinc/b7f0ac4ea3c60897858a153eb04c6b25 to your computer and use it in GitHub Desktop.
Save mattsrinc/b7f0ac4ea3c60897858a153eb04c6b25 to your computer and use it in GitHub Desktop.
disable interaction leaflet
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