Nothing
#' Add a line layer to the deckgl widget
#'
#' The \code{LineLayer} renders flat lines joining pairs of source and target points,
#' specified as latitude/longitude coordinates.
#'
#' @inheritParams add_layer
#' @seealso \url{https://deck.gl/#/documentation/deckgl-api-reference/layers/line-layer}
#' @example inst/examples/deckgl-api-reference/line-layer.R
#' @export
add_line_layer <- function(deckgl, data = NULL, properties = list(), ..., id = "line-layer") {
add_layer(deckgl, "LineLayer", data, properties, ..., id = id)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.