How many requests you made today, are there any restrictions on the use of the Maps API, which may prevent you from requesting any additional data.
https://developers.google.com/maps/faq#usagelimits
Although it seems unlikely that you hit your hard 25,000 requests, you can make sure that you are not accidentally using DOSing with HTTP requests. Such things will constantly burn your limit and potentially blacklist your IP address.
Also, you should check the Maps API reference materials, I think you can use the deprecated API.
https://developers.google.com/maps/documentation/webservices
Your http request should look something like this:
http://maps.googleapis.com/maps/api/service/output?parameters
Where output is either json or xml .
edit: The Maps API help page is here .
source share