gee-community/geemap

Some basemaps do not work.

osgeokr opened this issue · 2 comments

Some of the basemaps listed by the code below do not work.

for basemap in geemap.basemaps.keys():
    print(basemap)

Last July, I was able to use the following layers as basemaps. What changes could have occurred?

ESA Worldcover 2021
ESA Worldcover 2021 S2 FCC
ESA Worldcover 2021 S2 TCC

You can still access custom basemaps using the add_basemap method. The basemap module now only shows the standard basemap tiles available through the xyzservices package.

m = geemap.Map()
m.add_basemap("ESA Worldcover 2021")
m

image

Ah! Thank you! I will close the issue.