R/layers_screen-grid-layer.R

Defines functions add_screen_grid_layer

Documented in add_screen_grid_layer

#' Add a screen grid layer to the deckgl widget
#'
#' The \code{ScreenGridLayer} takes in an array of latitude and longitude coordinated points,
#' aggregates them into histogram bins and renders as a grid.
#'
#' @inheritParams add_layer
#' @seealso \url{https://deck.gl/#/documentation/deckgl-api-reference/layers/screen-grid-layer}
#' @example inst/examples/deckgl-api-reference/screen-grid-layer.R
#' @export
add_screen_grid_layer <- function(deckgl, data = NULL, properties = list(), ..., id = "screen-grid-layer") {
  add_layer(deckgl, "ScreenGridLayer", data, properties, ..., id = id)
}

Try the deckgl package in your browser

Any scripts or data that you put into this service are public.

deckgl documentation built on March 7, 2023, 5:37 p.m.