View source: R/layers_grid-cell-layer.R
add_grid_cell_layer | R Documentation |
The GridCellLayer
can render a grid-based heatmap.
It is a variation of the ColumnLayer
. It takes the constant width / height of all cells and top-left coordinate of each cell.
The grid cells can be given a height using the getElevation
accessor.
add_grid_cell_layer( deckgl, data = NULL, properties = list(), ..., id = "grid-cell-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/grid-cell-layer
hexagon_centroids <- system.file("sample-data/centroids.csv", package = "deckgl") %>% read.csv() deck <- deckgl(zoom = 11, pitch = 35) %>% add_grid_cell_layer( data = hexagon_centroids, getPosition = ~lng + lat, getElevation = ~value, getFillColor = "@=[48, 128, value * 255, 255]", elevationScale = 5000, cellSize = 250, extruded = TRUE, tooltip = "{{value}}" ) %>% add_mapbox_basemap() if (interactive()) deck
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.