Google Maps returning error 610
google-maps
Solution
Google has officially deprecated support for API v2 https://developers.google.com/maps/documentation/geocoding/v2/
You have to change your lookup: https://developers.google.com/maps/documentation/geocoding/index
Example:
https://maps.googleapis.com/maps/api/geocode/xml?address=64108&sensor=false
And you don't need to use the key anymore, do note the limit has been changed to 2500
This article from Google shows how to upgrade from version 2 to 3: https://developers.google.com/maps/articles/geocodingupgrade
Problem
I had a google maps v3 application working for about a year now without any problems. The application uses two different methods to geocode an address, when I geocode using the google maps javascript everything works. I also geocode with a c# page, I request geocoding through a url. I get error 610 using the URL method. Here is the URL I am using:http://maps.google.com/maps/geo?q=64108&key=KEY Did you URL change? should i be using something different?