Set a marker at an arbitrary location on the web map
4 次查看(过去 30 天)
显示 更早的评论
- 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?
0 个评论
回答(1 个)
Alan Moses
2020-8-7
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!
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!