Uncomment the following line to install leafmap if needed.
# !pip install leafmap
import leafmap
Search xyz tiles from xyzservices.
leafmap.search_xyz_services(keyword="esri")
Add an xyz tile to the map.
m = leafmap.Map()
m.add_xyz_service("xyz.Esri.NatGeoWorldMap")
m
Search xyz tiles from Quick Map Services.
leafmap.search_qms(keyword="google")
Add xyz tile to the map.
m = leafmap.Map()
m.add_xyz_service("qms.Google Satellite Hybrid")
m
Search basemaps interactively without coding.