Earth Map in C#
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
-
the easiest thing is to use google maps api. just create a html code with javascript using C# and call that html in webBrowser control.
Thank you for your attention, But I need windows application and I don't need the Web solution. Please assistant me about windows application.
Best Regards, Reza Shojaee
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
Well, if your app will be on a computer that is not on the internet, then I guess you want to rewrite google maps.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Thank you for your attention, But I need windows application and I don't need the Web solution. Please assistant me about windows application.
Best Regards, Reza Shojaee
-
Thank you for your attention, But I need windows application and I don't need the Web solution. Please assistant me about windows application.
Best Regards, Reza Shojaee
A quick google search for "c# virtual Earth" gave me this thread. I think it can give you the answers you need.
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
What you need is a GIS application (believe me, you don't want to write one yourself - these are seriously complicated). There's an open source implementation called SharpMap here[^]. Beyond that, you need the actual map images - and these are going to cost you, unless you use something like OpenStreetMap[^]. Alternatively, you could (as others have suggested) just use Google Maps.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
Hello My Friends I think some misunderstanding happened. I don't need the GIS application or web solution. I only want insert a simple ground map (no a map with zoom capability or street map, only earth map) in C# and each times determine certain latitude and longitude in the map with color point(for example).
Best Regards, Reza Shojaee
-
Hello My Friends I think some misunderstanding happened. I don't need the GIS application or web solution. I only want insert a simple ground map (no a map with zoom capability or street map, only earth map) in C# and each times determine certain latitude and longitude in the map with color point(for example).
Best Regards, Reza Shojaee
Reza - a GIS solution is still your best option. If you don't have one, then the maths behind your lat/long can be seriously complicated due to issues such as Mercator projections. Basically, when you represent a sphere (technically the earth isn't a sphere, but let's keep things simple) in a 2D format, you need to distort portions of the unwrapped sphere to represent it. This means that you need to take things like altitude into account when you perform your calculations.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Hi everybody I want develop application with C# that able : 1. Draw ground map. 2. Draw a point or another image to each latitude and longitude. for example user can enter arbitrary coordinate by latitude and longitude then show point in the map. If you know good application or method please help me.
Best Regards, Reza Shojaee
I implementing a application for satellite orbit predicting, and in my program need the insert satellite in the certain lat/long on the map. for example you can see the track of NOAA 15 in the below link: http://science.nasa.gov/temp/NOAA15Loc.html[^]
Best Regards, Reza Shojaee
-
I implementing a application for satellite orbit predicting, and in my program need the insert satellite in the certain lat/long on the map. for example you can see the track of NOAA 15 in the below link: http://science.nasa.gov/temp/NOAA15Loc.html[^]
Best Regards, Reza Shojaee
Fine, so why doesn't GIS satisfy your needs? Please read this[^] link and then think about how you are planning to tackle this - all I ask is that you don't try to reinvent a particularly well defined wheel.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.