View source: R/layers_path-layer.R
add_path_layer | R Documentation |
The PathLayer
takes in lists of coordinate points and renders them as extruded lines with mitering.
add_path_layer( deckgl, data = NULL, properties = list(), ..., id = "path-layer" )
deckgl |
A deckgl widget object. |
data |
The url to fetch data from or a data object. |
properties |
A named list of properties with names corresponding to the properties defined
in the deckgl-api-reference
for the given layer class. The |
... |
Named arguments that will be added to the |
id |
The unique id of the layer. |
https://deck.gl/#/documentation/deckgl-api-reference/layers/path-layer
sample_data <- paste0( "https://raw.githubusercontent.com/", "uber-common/deck.gl-data/", "master/website/bart-lines.json" ) properties <- list( pickable = TRUE, widthScale = 20, widthMinPixels = 2, getPath = ~path, getColor = ~color, getWidth = 5, tooltip = ~name ) deck <- deckgl(pitch = 25, zoom = 10.5) %>% add_path_layer(data = sample_data, properties = properties) %>% add_basemap() %>% add_control("Path Layer") if (interactive()) deck
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.