add_control: Add a standard control to the map

Description Usage Arguments See Also Examples

View source: R/controls.R

Description

Add a standard control to the map

Usage

1
2
3
4
5
6
7
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 top-left, top-right, bottom-right or bottom-left.

See Also

https://docs.mapbox.com/mapbox-gl-js/api/markers/ for available options for the used control.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
map <- mapboxer() %>%
  add_navigation_control(
    pos = "top-left",
    showCompass = FALSE
  ) %>%
  add_fullscreen_control() %>%
  add_scale_control(
    unit = "nautical"
  )

if (interactive()) map

crazycapivara/mapboxer documentation built on Nov. 13, 2021, 3:22 a.m.