File size: 173 Bytes
69dfda6 |
1 2 3 4 5 6 7 8 9 |
import leafmap
import streamlit as st
def app():
st.title("Cesium 3D Map")
html = "data/html/sfo_buildings.html"
leafmap.cesium_to_streamlit(html, height=800)
|
69dfda6 |
1 2 3 4 5 6 7 8 9 |
import leafmap
import streamlit as st
def app():
st.title("Cesium 3D Map")
html = "data/html/sfo_buildings.html"
leafmap.cesium_to_streamlit(html, height=800)
|