Skip to content

Instantly share code, notes, and snippets.

@szymon-przybyl
Created May 28, 2011 22:46
Show Gist options
  • Save szymon-przybyl/997310 to your computer and use it in GitHub Desktop.
Save szymon-przybyl/997310 to your computer and use it in GitHub Desktop.
new Ajax.Request('https://maps.googleapis.com/maps/api/place/autocomplete/json', {
method: 'get',
parameters: {
language: 'pl',
input: 'Polichno',
sensor: true,
key: 'ABQIAAAAHyX2ujLFqkeXszJQ65ZPbhQCULP4XOMyhPd8d_NrQQEO8sT8XBQKE5E92FkCP2ATUaYPiLb3YFfVzg'
},
onSuccess: function(transport, json) {
alert(json ? Object.inspect(json) : 'no JSON object');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment