Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Maps returning error 610

Tags:

google-maps

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?

like image 490
user2161482 Avatar asked Mar 12 '13 14:03

user2161482


People also ask

Why isn't my Google Maps API working?

There are a several reasons why your google maps may not be working, the most common issue being no Google Map API key set or set incorrectly. To use the Google Maps JavaScript API, you must register your app project on the Google Cloud Platform Console and get a Google API key which you can add to your app.


1 Answers

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

like image 95
Alex Avatar answered Sep 22 '22 09:09

Alex