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
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
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