Disable scroll zoom
Disable scroll zoom
This source code of this example is adapted from the MapLibre GL JS example - Disable scroll zoom.
Uncomment the following line to install leafmap if needed.
In [ ]:
Copied!
# %pip install "leafmap[maplibre]"
# %pip install "leafmap[maplibre]"
In [ ]:
Copied!
import leafmap.maplibregl as leafmap
import leafmap.maplibregl as leafmap
In [ ]:
Copied!
# import os
# os.environ["MAPTILER_KEY"] = "YOUR_API_KEY"
# import os
# os.environ["MAPTILER_KEY"] = "YOUR_API_KEY"
In [ ]:
Copied!
m = leafmap.Map(center=[-122.65, 45.52], zoom=9, scroll_zoom=False, style="streets")
m
m = leafmap.Map(center=[-122.65, 45.52], zoom=9, scroll_zoom=False, style="streets")
m
