add_layer {deckgl} | R Documentation |
Add any kind of layer to the deckgl widget
Description
Generic function to add any kind of layer to the deckgl widget.
Usually you will not use this one but any of the add_*_layer
functions instead.
Usage
add_layer(
deckgl,
class_name,
data = NULL,
properties = list(),
...,
id = "hopeful-hopper",
tooltip = NULL,
source = NULL,
filter = NULL
)
Arguments
deckgl |
A deckgl widget object. |
class_name |
The name of the JavaScript layer class, e. g. |
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. |
tooltip |
A tooltip template that defines what should be displayed when the mouse enters an object.
You can also pass a list with the properties |
source |
The ID of the data source. See |
filter |
A filter expression that is applied to the data object. |
Value
A deckgl widget object.