View source: R/geocode_address.R
geocode_address | R Documentation |
Geocodes a location (determines latitude and longitude from physical address) using the Google Maps API. Note that the Google Maps API requires registered credentials (Google Cloud Platform), see the ggmap package for more details at https://github.com/dkahle/ggmap. Note that when using this function you are agreeing to the Google Maps API Terms of Service at https://cloud.google.com/maps-platform/terms/.
geocode_address(location)
location |
a character vector of physical addresses (e.g. 1600 University Ave., Morgantown, WV) |
Returns a two column matrix with the latitude and longitude of each location queried.
Jamie Spaulding, Keith Morris
library(ggmap) #needed to register Google Cloud Credentials
register_google("**Google Cloud Credentials Here**")
addresses <- c("Milan Puskar Stadium, Morgantown, WV","Woodburn Hall, Morgantown, WV")
geocode_address(addresses)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.