Display a non-interactive map
This source code of this example is adapted from the MapLibre GL JS example - Display a non-interactive map.
Uncomment the following line to install leafmap if needed.
# %pip install "leafmap[maplibre]"
import leafmap.maplibregl as leafmap
# import os
# os.environ["MAPTILER_KEY"] = "YOUR_API_KEY"
m = leafmap.Map(
center=[-74.5, 40], zoom=9, interactive=False, style="streets", controls={}
)
m