How can I make a small ball float over a certain point (city) of the earth? Using mapping toolbox

1 view (last 30 days)
Hey, I want to indicate a certain city, by letting a small ball or scatter point float over that city. All I have is the world created using Ma tlab's Mapping Toolbox:
load topo
geoshow(topo,topolegend,'DisplayType','texturemap')
demcmap(topo)
land = shaperead('landareas','UseGeoCoords',true);
plotm([land.Lat],[land.Lon],'Color','black')
rivers = shaperead('worldrivers','UseGeoCoords',true);
plotm([rivers.Lat],[rivers.Lon],'Color','blue')
I would like to add for example a small ball over Berlin, by entering latitude and longitude coordinates: 52.30 N, 13.25 E
Can anybody give me a hint, or has already coded that?
Thank you very much.

Answers (1)

Walter Roberson
Walter Roberson on 6 Oct 2011
If you were putting Angels over Berlin, then you could use the Damiel Toolbox written by Wim Wenders.

Products

Community Treasure Hunt

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

Start Hunting!