# !pip install leafmap import leafmap.leafmap as leafmap print(leafmap.basemaps.keys()) layers = ["ROADMAP", "HYBRID"] leafmap.linked_maps(rows=1, cols=2, height="400px", layers=layers) layers = ["Esri.WorldTopoMap", "OpenTopoMap"] leafmap.linked_maps(rows=1, cols=2, height="400px", layers=layers) layers = [str(f"NLCD {year} CONUS Land Cover") for year in [2001, 2006, 2011, 2016]] labels = [str(f"NLCD {year}") for year in [2001, 2006, 2011, 2016]] leafmap.linked_maps( rows=2, cols=2, height="300px", layers=layers, labels=labels, center=[36.1, -115.2], zoom=9, )