-
I see that when I search a location using lat, lon with foliumap (import leafmap.foliumap as leafmap), it will jump to the scene and show the marker. Is it possible to show the marker with the default leafmap (import leafmap)? |
Beta Was this translation helpful? Give feedback.
Answered by
giswqs
Jun 15, 2023
Replies: 1 comment 1 reply
-
Like this? import leafmap
m = leafmap.Map(search_control=False)
url = 'https://nominatim.openstreetmap.org/search?format=json&q={s}'
m.add_search_control(url, zoom=10)
m |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zxdawn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Like this?