solara-maplibre / pages /01_globe.py
giswqs's picture
Add more apps
5ef50b1
raw
history blame contribute delete
315 Bytes
import solara
import leafmap.maplibregl as leafmap
def create_map():
m = leafmap.Map(
style="liberty",
projection="globe",
height="750px",
zoom=2.5,
sidebar_visible=True,
)
return m
@solara.component
def Page():
m = create_map()
return m.to_solara()