style-editor: Add style editor

Description Usage Arguments Examples

Description

Add style editor

Remove style editor

Usage

1
2
3
4
addStyleEditor(map, position = c("topleft", "topright", "bottomleft",
  "bottomright"), openOnLeafletDraw = TRUE, useGrouping = FALSE, ...)

removeStyleEditor(map)

Arguments

map

the map widget

position

position of the control

openOnLeafletDraw

whether to open automatically when used with addDrawToolbar()

useGrouping

Should be false to work with addDrawToolbar()

...

other options. See plugin code

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
leaflet() %>%
  setView(0, 0, 2) %>%
  addProviderTiles(providers$CartoDB.Positron) %>%
  addDrawToolbar(
    targetGroup = "draw",
    editOptions = editToolbarOptions(selectedPathOptions = selectedPathOptions())
  ) %>%
  addLayersControl(
    overlayGroups = c("draw"), options = layersControlOptions(collapsed = FALSE)
  ) %>%
  # add the style editor to alter shapes added to map
  addStyleEditor()

Example output

Loading required package: leaflet

leaflet.extras documentation built on May 2, 2019, 2:11 a.m.