powered by
Add a tile layer from a known map provider
addProviderTiles(map, provider, layerId = NULL, group = NULL, options = providerTileOptions())providerTileOptions(errorTileUrl = "", noWrap = FALSE, opacity = NULL, zIndex = NULL, unloadInvisibleTiles = NULL, updateWhenIdle = NULL, detectRetina = FALSE, reuseTiles = FALSE, ...)
providerTileOptions(errorTileUrl = "", noWrap = FALSE, opacity = NULL, zIndex = NULL, unloadInvisibleTiles = NULL, updateWhenIdle = NULL, detectRetina = FALSE, reuseTiles = FALSE, ...)
the map to add the tile layer to
the name of the provider (see http://leaflet-extras.github.io/leaflet-providers/preview/ and https://github.com/leaflet-extras/leaflet-providers)
the layer id to assign
the name of the group the newly created layers should belong to (for clearGroup and addLayersControl purposes). Human-friendly group names are permitted--they need not be short, identifier-style names.
clearGroup
addLayersControl
tile options
the tile layer options; see http://leafletjs.com/reference.html#tilelayer
named parameters to add to the options
modified map object
# NOT RUN { leaflet() %>% addProviderTiles("Stamen.Watercolor") %>% addProviderTiles("Stamen.TonerHybrid") # }
Run the code above in your browser using DataLab