Add a standard control to the map
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)
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 |
https://docs.mapbox.com/mapbox-gl-js/api/markers/ for available options for the used control.
map <- mapboxer() %>% add_navigation_control( pos = "top-left", showCompass = FALSE ) %>% add_fullscreen_control() %>% add_scale_control( unit = "nautical" ) if (interactive()) map