-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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