meta_geo {metathis} | R Documentation |
Geotagging Metadata Tags
Description
Geotagging Metadata Tags
Usage
meta_geo(
.meta = meta(),
icbm = NULL,
geo_position = NULL,
geo_region = NULL,
geo_placename = NULL,
...
)
Arguments
.meta |
A |
icbm |
Latitude and longitude of geographic positions specified as
|
geo_position |
Latitude and longitude of geographic positions specified
as |
geo_region |
Name of the geographic region related to the page content,
specified using ISO-3166
2-character country code and 2-character national subdivision. Example:
|
geo_placename |
Name of the geographic place related to the page
content. Example: |
... |
Additional geotagging metadata keyword and value pairs, such as
|
Value
A meta
object, or a set of <meta>
HTML tags inside an HTML
<head>
tag. For use in rmarkdown::html_document()
, shiny::runApp()
,
or other HTML locations.
References
ICBM on Wikipedia, Geotagging on Wikipedia
See Also
Other meta:
meta_apple_itunes_app()
,
meta_apple_web_app()
,
meta_general()
,
meta_google_scholar()
,
meta_name()
,
meta_social()
,
meta_tag()
,
meta_viewport()
,
meta()
Examples
meta() %>%
meta_geo(
icbm = c(50.167958, -97.133185),
geo_position = c(50.167958, -97.133185),
geo_placename = "Manitoba, Canada",
geo_region = "ca-mb"
)