# !pip install leafmap import leafmap.leafmap as leafmap print(leafmap.basemaps.keys()) leafmap.split_map(left_layer="ROADMAP", right_layer="HYBRID") leafmap.split_map( left_layer="Esri.WorldTopoMap", right_layer="OpenTopoMap", zoom_control=False ) leafmap.split_map( left_layer="NLCD 2001 CONUS Land Cover", right_layer="NLCD 2016 CONUS Land Cover", left_label="2001", right_label="2016", label_position="bottom", center=[36.1, -114.9], zoom=10, )