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