Is it easy to implement a .net library for geocoding with a free service?

I need to geocode addresses (get lat / long from addresses) using in .Net to store in the database.

What is the library / project to study to do this?

After searching here on google and codeplex.com , I found several options there, it looks like they will do what I ask ... But some of them can be shit and a waste of time, and some can just be stellar .

Which one should you look for? Did you use them?

+6
geocoding
source share
3 answers

Using the Google Maps API or the Microsoft MapPoint API, this is very easy to do. It depends on your usage requirements, i.e. How many geocodes do you plan to do on an ongoing basis.

+2
source share

Check Out GeoCoding.Net - Generic Geocoding API for Google, Yahoo and Bing

+4
source share

We use geoNames for our geocoding needs. Just connect, send a request, and it will return XML or JSON (in some cases). Here is an article on how to connect it to WCF.

+1
source share

All Articles