I am trying to get the altitudes of all points in a specific Google Map, be it in the UK or the US or just randomly around the world, and then store the altitude data into an Array[x,y] in C#??
I know that Google has something called Elevation map, but it seems that everyone are trying to get the Longitude / Latitude using it, so.. Can anyone give a link to where I can find how to get the Altitude or give an example program for it in C#??
You need to call the rest service of google which returns the elevations base on direction or coordinates here's some code that could guide you in the right way
From here's you need to parse the xml and store in in whatever element that you want, could be a database, List, Array. etc.
Here you will found how to call service and all the different ways to consume the service and see which part you need