Skip to content

Instantly share code, notes, and snippets.

@andrewroberts
Created November 16, 2015 19:44
Show Gist options
  • Save andrewroberts/8799f63e9130669f97f5 to your computer and use it in GitHub Desktop.
Save andrewroberts/8799f63e9130669f97f5 to your computer and use it in GitHub Desktop.
Google Sheets custom function to get Google's best guess at the address of a place.
function GET_ADDRESS(placeName) {
var response = Maps.newGeocoder().geocode(placeName);
return response.results[0].formatted_address 
}
@andrewroberts
Copy link
Author

First version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment