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.
add_layer(
deckgl,
class_name,
data = NULL,
properties = list(),
...,
id = "hopeful-hopper",
tooltip = NULL,
source = NULL,
filter = NULL
)
A deckgl widget object.
The name of the JavaScript layer class, e. g. ScatterplotLayer
.
The url to fetch data from or a data object.
A named list of properties with names corresponding to the properties defined
in the deckgl-api-reference
for the given layer class. The properties
parameter can also be an empty list. In this case
all props must be passed as named arguments.
Named arguments that will be added to the properties
object. Identical parameters
are overwritten.
The unique id of the layer.
A tooltip template that defines what should be displayed when the mouse enters an object.
You can also pass a list with the properties html
and style
. See also use_tooltip
.
The ID of the data source. See add_source
.
A filter expression that is applied to the data object.
A deckgl widget object.