Set a marker at an arbitrary location on the web map

6 vues (au cours des 30 derniers jours)
Aditya Manohar
Aditya Manohar le 3 Août 2020
Commenté : Aditya Manohar le 10 Août 2020
  • How can I set a marker at an arbitrary location on the web map? Can the interactive feature be utilized to select a location by 'mouse click'?
  • How can I retrieve latitude/longitude data of this arbitrary point?

Réponses (1)

Alan Moses
Alan Moses le 7 Août 2020
The webmap does not allow adding markers by clicking on it. Although, you can use the geoaxes plot to add markers to the webmap. The function ginput is used to retrieve the latitude and longitude in a vector by clicking click on the geoaxes plot. This vector can be used to add markers on the webmap by using the wmmarker function. The following code demonstrates for adding three markers on the webmap by clicking on the geoaxes plot:
webmap;
geoaxes('Basemap','streets');
[lat,lon] = ginput(3);
wmmarker(lat,lon);
Hope this helps!
  1 commentaire
Aditya Manohar
Aditya Manohar le 10 Août 2020
Yes, this is very helpful. Thank you so much!

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by