View source: R/google_map_urls.R
google_map_search | R Documentation |
Opens a Google Map in a browser with the result of the specified search query.
google_map_search(query, place_id = NULL)
query |
string or vector of lat/lon coordinates (in that order) |
place_id |
a Google place id (https://developers.google.com/maps/documentation/places/web-service/place-id). |
If both parameters are given, the query
is only used if Google Maps cannot
find the place_id
.
There is no need for an api key
## Not run:
google_map_search("Melbourne, Victoria")
google_map_search("Restaruants")
## Melbourne Cricket Ground
google_map_search(c(-37.81997, 144.9834), place_id = "ChIJgWIaV5VC1moR-bKgR9ZfV2M")
## Without the place_id, no additional place inforamtion is displayed on the map
google_map_search(c(-37.81997, 144.9834))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.