import streamlit as st
import leafmap.foliumap as leafmap
st.title("split map")
st.markdown(
"""
Hello
"""
)
m = leafmap.Map()
m.split_map(
left_layer='https://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}', right_layer='ESA WorldCover 2020'
)
m.add_legend(title='ESA Land Cover', builtin_legend='ESA_WorldCover')
m.to_streamlit(height=500)