27 basemap gallery
Uncomment the following line to install leafmap if needed.
In [ ]:
Copied!
# !pip install leafmap
# !pip install leafmap
In [ ]:
Copied!
import leafmap.leafmap as leafmap
import leafmap.leafmap as leafmap
Select 100 basemaps
In [ ]:
Copied!
layers = list(leafmap.basemaps.keys())[17:117]
# layers
layers = list(leafmap.basemaps.keys())[17:117]
# layers
Print out the labels
In [ ]:
Copied!
print(layers[:10])
print(layers[:10])
Create linked maps of 100 basemaps
In [ ]:
Copied!
leafmap.linked_maps(rows=20, cols=5, height="200px", layers=layers, labels=layers)
leafmap.linked_maps(rows=20, cols=5, height="200px", layers=layers, labels=layers)