Skip to content

27 basemap gallery

image image image

Uncomment the following line to install leafmap if needed.

1
# !pip install leafmap
1
import leafmap.leafmap as leafmap

Select 100 basemaps

1
2
layers = list(leafmap.basemaps.keys())[17:117]
# layers

Print out the labels

1
print(layers[:10])

Create linked maps of 100 basemaps

1
leafmap.linked_maps(rows=20, cols=5, height="200px", layers=layers, labels=layers)