I want to plot latitude and longitude as a node and there will be edge to connect the node. I want to show map in the background of graph. How can I do that ?
0
votes
1 Answers
1
votes
It sounds like you're looking at something along the lines of:
figure
image(...)
hold
plot(...)
where you use the image function to display your map, and plot (or similar function) to display your latitude/longitude data however it is you want (you're not very specific about that).
You will probably have to play with axes properties in order to get the scaling right and get your plot in the right place relative to your map, but it depends on your data.
help plot
and let us know when you get stuck. – Dennis Jaheruddin