Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
104 views
in Technique[技术] by (71.8m points)

python - what should I do with geemap library map illustration?

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:

question from:https://stackoverflow.com/questions/65886266/what-should-i-do-with-geemap-library-map-illustration

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...