Extract geocoded bounds from Google Maps Geocode API response
Extract geocoded bounds from Google Maps Geocode API response
mp_get_bounds(doc)
Arguments
doc: XML document with Google Maps Geocode API response
Returns
sf Polygonal layer representing bounds of geocoded locations. In cases when there is more than one response per address, only first response is considered.
Examples
# Built-in reponse examplelibrary(xml2)doc = list("Tel-Aviv"= as_xml_document(response_geocode))b = mp_get_bounds(doc)## Not run:# Text file with API keykey = readLines("~/key")# Get boundsdoc = mp_geocode(addresses = c("Tel-Aviv","Rehovot","Beer-Sheva"), region ="il", key = key)b = mp_get_bounds(doc)## End(Not run)