View source: R/layers_point-cloud-layer.R
add_point_cloud_layer | R Documentation |
The PointCloudLayer
takes in points with 3d positions, normals and colors and renders them as spheres with a certain radius.
add_point_cloud_layer( deckgl, data = NULL, properties = list(), ..., id = "point-cloud-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/point-cloud-layer
## @knitr point-cloud-layer sample_data <- paste0( "https://raw.githubusercontent.com/", "uber-common/deck.gl-data/", "master/website/pointcloud.json" ) properties <- list( pickable = TRUE, coordinateSystem = JS("deck.COORDINATE_SYSTEM.METER_OFFSETS"), coordinateOrigin = c(-122.4, 37.74), pointSize = 4, getPosition = ~position, getNormal = ~normal, getColor = ~color, lightSettings = list(), tooltip = "{{position.0}}, {{position.1}}" ) deck <- deckgl(pitch = 45, zoom = 10.5) %>% add_point_cloud_layer(data = sample_data, properties = properties) %>% add_basemap() %>% add_control("Point Cloud Layer") if (interactive()) deck
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.