R/layers_geojson-layer.R

Defines functions add_geojson_layer

Documented in add_geojson_layer

#' Add a geojson layer to the deckgl widget
#'
#' The \code{GeoJsonLayer} takes in \href{https://geojson.org}{GeoJson} formatted data
#' and renders it as interactive polygons, lines and points.
#'
#' @inheritParams add_layer
#' @seealso \url{https://deck.gl/#/documentation/deckgl-api-reference/layers/geojson-layer}
#' @example inst/examples/deckgl-api-reference/geojson-layer.R
#' @export
add_geojson_layer <- function(deckgl, data = NULL, properties = list(), ..., id = "geojson-layer") {
  add_layer(deckgl, "GeoJsonLayer", 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.