Nothing
osm <- function(country, var, path, proxy=FALSE, ...) {
stopifnot(var %in% c("places", "highways", "railway"))
iso <- .getCountryISO(country)
path <- .get_path(path, "osm")
filename <- paste0(iso, "_", var, ".gpkg")
filepath <- file.path(path, filename)
if (!(file.exists(filepath))) {
url <- .data_url(paste0("osm/", var, "/", filename))
if (is.null(url)) return(NULL)
if (!.downloadDirect(url, filepath, ...)) return(NULL)
}
vect(filepath, proxy=proxy)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.