add_control {mapboxer} | R Documentation |
Add a standard control to the map
Description
Add a standard control to the map
Usage
add_control(map, control_name, ..., pos = NULL)
add_navigation_control(map, ..., pos = NULL)
add_scale_control(map, ..., pos = NULL)
add_fullscreen_control(map, pos = NULL)
Arguments
map |
A mapboxer object. |
control_name |
The (class) name of the control. |
... |
The options of the control. |
pos |
The position of the control. One of |
See Also
https://docs.mapbox.com/mapbox-gl-js/api/markers/ for available options for the used control.
Examples
map <- mapboxer() %>%
add_navigation_control(
pos = "top-left",
showCompass = FALSE
) %>%
add_fullscreen_control() %>%
add_scale_control(
unit = "nautical"
)
if (interactive()) map
[Package mapboxer version 0.4.0 Index]