Nothing
addBaseMap <- function(name, title, url, options) {
# get existing base maps
baseMaps <- getOption("leafletBaseMaps")
# create base map
if(missing(title)) title <- name
newBaseMap <- list(title=title, url=url)
if(missing(options)) options <- NULL
newBaseMap$options <- options
# add base map
baseMaps[[name]] <- newBaseMap
options(leafletBaseMaps=baseMaps)
}
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.