I want to write a standalone application (preferable 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/
- The Google Web Services allow me to determine distances and routes, but no visualization as I would need it (this is how I understand it, I might be wrong).
- The same as in 1 seems to be true for the Bing AJAX controls ("JavaScript in Web page").
- The Bing SOAP Services again seem to be the equivalent to 2, more focused on textual queries rather than displaying the maps. There is the Imagery service, but this looks more low level, not like a 3D globe I could modify.
- In stackoverflow article " best api for develop with maps web application google-maps vs bing-maps " are some links about the APIs, but nothing .net focused.
Is anybody aware of a .NET/C# API which allows me to do basically the same as in 1/3 with C#?