garnishMap {leafem} | R Documentation |
Garnish/decorate leaflet or mapview maps.
Description
This function provides a versatile interface to add components to a
leaflet or mapview map. It takes functions such as "addMouseCoordinates"
or addLayersControl
and their respective arguments and adds
them to the map. Arguments must be named. Functions can be plain or
character strings.
Usage
garnishMap(map, ...)
Arguments
map |
a mapview or leaflet object. |
... |
functions and their arguments to add things to a map. |
Examples
library(leaflet)
m <- leaflet() %>% addProviderTiles("OpenStreetMap")
garnishMap(m, addMouseCoordinates)
## add more than one with named argument
library(leaflet)
m1 <- garnishMap(m, addScaleBar, addMouseCoordinates,
position = "bottomleft")
m1
[Package leafem version 0.2.3 Index]