I have a question similar to here:

using jquery.getJson with Google's GeoCoding HTTP Service

with the exception that I'm trying to retrieve the geo-coordinates for an address without using the API key, from a client-side lookup.

Everything seems to work when using this code:

$.getJSON("http://maps.google.com/maps/api/geocode/json?address=202++3991+Henning+Dr+Burnaby+BC+V5C+6N5&sensor=false&callback=?",
  function(data, textStatus){
     console.log(data);
     console.log(textStatus);
});

However, I'm getting an 'invalid label' jQuery error.

link|improve this question
Out of curiosity, why use this method instead of just using the JavaScript Maps API Geocoder? code.google.com/apis/maps/documentation/javascript/… – Mano Marks Feb 9 at 18:27
feedback

2 Answers

up vote 1 down vote accepted

The V3 geocoding API doesn't support the callback parameter, so the JSONP call you're trying to make won't work. Instead you could use the JavaScript API and use the Geocoding Service or proxy the results through your web server (to get around the cross-site issues).

link|improve this answer
feedback

You can't use the web service directly because of same origin policy.

Lucky, there is a solution: The Geocoding Service in the Maps API V3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.