Skip to content

Instantly share code, notes, and snippets.

@MTco
Forked from andrewroberts/getAddress.gs
Created February 27, 2018 22:21
Show Gist options
  • Save MTco/c5976651eda67dc4b2ff8f894c451109 to your computer and use it in GitHub Desktop.
Save MTco/c5976651eda67dc4b2ff8f894c451109 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 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment