The following does not work:
$.get('http://maps.googleapis.com/maps/api/geocode/json?&sensor=false®ion=nz&address=queen', function(response){
console.debug(response);
});
It seems like it is not possible due to Ajax's same origin policy. However, I am trying to do something interactive and I need responses from Google Maps API within javascript in order to do so.