I want to write a standalone application (preferably in C #), displaying a Google or Bing map showing flight paths and patterns in 3D.
- For Google, this is possible in JavaScript embedded in HTML, as shown here: http://code.google.com/apis/maps/documentation/javascript/
- Google Web Services allows me to determine distances and routes, but without visualization, because I need it (as I understand it, I could be wrong).
- The same as in 1 seems to be true for Bing AJAX controls ("JavaScript on a web page").
- Bing SOAP Services again seems to be equivalent to 2, more focused on textual queries rather than map display. There is an Imagery service, but it looks a lower level, not a 3D globe that I could change.
- In stackoverflow's article, βthe best api for development with google-maps vs bing-maps web application maps β are some API links, but nothing .net is focused.
Does anyone know of a .NET / C # API that allows me to do basically the same thing as 1/3 with C #?
source
share