gee-community/geemap

Can't remove openstreetmap and Google Maps base layers

ccsuehara opened this issue · 2 comments

Hello,
When adding basemap layers, 2 of them appear by default: openstreetmap and Google Maps.
image

I added the Google Hybrid one, but want to remove the 2 mentioned above. How can I do this?
Thanks!

giswqs commented

Like this:

import geemap.foliumap as geemap
Map = geemap.Map(tiles=None, add_google_map=False)
Map.add_basemap('HYBRID')
Map

Screenshot_20230803_223406

Thanks so much!