Spaces:
Sleeping
Sleeping
File size: 419 Bytes
e38ae2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
import leafmap.plotlymap as leafmap
def app():
st.title("Plotly Maps")
m = leafmap.Map(basemap="street", height=650)
m.add_mapbox_layer(style="streets")
basemaps = list(leafmap.basemaps.keys())
basemap = st.selectbox(
"Select a basemap", basemaps, basemaps.index("Stamen.Terrain")
)
m.add_basemap(basemap)
st.plotly_chart(m, use_container_width=True)
|