what should I do with geemap library map illustration?

128 Views Asked by At

I am using geemap on my project but the map which came up it is not like the one presented in the documentation and does not provide the icon that helps to select layers. what should I do?

Map = geemap.Map()
Map

what it shows:

What it supposed to be:

1

There are 1 best solutions below

0
On

if you are using the

folium-based Map

After adding the wanted layer and before displaying the Map object, you may try to add a layer control:

import geemap.eefolium as geemap

Map = geemap.Map()

Map.add_basemap('Esri National Geographic')

Map.add_layer_control()

Map