user2161482
user2161482

Reputation: 73

Google Maps returning error 610

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?

Upvotes: 7

Views: 5573

Answers (2)

Alex
Alex

Reputation: 1668

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

Upvotes: 13

mfo
mfo

Reputation: 152

Error 610 suggests a invalid API key (key is invalid or domain is wrong).

You can generate one here: http://code.google.com/apis/maps/signup.html

Upvotes: 0

Related Questions