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.