tags:

views:

1764

answers:

6

I need to do a quick demo app using Google Maps (or Yahoo Maps, or any similar service). So far I haven't had much luck finding .NET wrappers for any of these services.

Any suggestions or pointers?

I'm not opposed to using the native javascript api to do this, but I assumed someone would have already written a wrapper to easily integrate this into an ASP.NET application.

+9  A: 

I always check CodePlex.com

http://www.codeplex.com/googlemap

http://www.codeplex.com/YahooMap

The GoogleMaps project above has a lot of good examples on the project leader's website.

Brian Boatright
A: 

I've had good luck with this one: http://www.shabdar.org/google-maps-user-control-for-ASP-Net-part1.html (assumes you have the ajax extensions at your disposal - this makes it easy to use but it might not be the best for performance)

AlexCuse
It works, but it's very incomplete but is full of WTF's and bad coding practices.For example, it uses the session to maintain state, meaning that if you open multiple windows using this control, they will share their state (!).
Zidad
A: 

I like the virtual earth maps that microsoft produces. For a .net mashup of this go here: http://dotnetslackers.com/columns/ajax/ASPNETAJAXMeetsVirtualEarthPartOne.aspx

Geri Langlois
A: 

Here are some links but as with most things i have not got round to trying them yet.

http://gathadams.com/2007/08/21/add-google-maps-to-your-net-site-in-10-minutes/

http://www.mapbuilder.net/

Cheers John

solrev
+1  A: 

If you are interested, there is an ASP.NET Virtual Earth Mapping Server Control here:

http://simplovation.com/page/webmapsve.aspx

This is essentially a "wrapper" around Virtual Earth that abstracts out most (if not all) of the JavaScript that you would traditionally need to write. It allows you to handle map events and manipulate map events completely from server-side .NET code.

Chris Pietschmann
+4  A: 

I'm the creator of one of the most important GoogleMaps controls for ASP.NET.

You can find it on googlemaps.subgurim.net. It's translated to 15 languages, has more than 25.000 downloads, a very active forum, code gallery, icon gallery, etc.

It's great for novel developers and advanced ones. You can done almost everything that can be done with the javascript API, plus a lot of extra features.

Of course, it has a great documentation.

Try it!

Subgurim
Used it and abused it, and it still worked. Very nice control
Robert
Thanks Robert ;)
Subgurim