View source: R/layers_h3-hexagon-layer.R
add_h3_hexagon_layer | R Documentation |
Add a h3 hexagon layer to the deckgl widget
add_h3_hexagon_layer( deckgl, data = NULL, properties = list(), ..., id = "h3-hexagon-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/h3-hexagon-layer
## @knitr h3-hexagon-layer-layer h3_cells <- system.file("sample-data/h3-cells.csv", package = "deckgl") %>% read.csv() properties <- list( getHexagon = ~h3_index, getFillColor =JS("d => [255, (1 - d.count / 500) * 255, 0]"), getElevation = ~count, elevationScale = 20, getTooltip = "{{h3_index}}: {{count}}" ) deck <- deckgl(zoom = 11, pitch = 35) %>% add_h3_hexagon_layer(data = h3_cells, properties = properties) %>% add_control("H3 Hexagon Layer") %>% add_basemap() if (interactive()) deck
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.