mapdeckScatterplotDependency <- function() {
list(
createHtmlDependency(
name = "scatterplot",
version = "1.0.0",
src = system.file("htmlwidgets/lib/scatterplot", package = "mapdeck"),
script = c("scatterplot.js"),
all_files = FALSE
)
)
}
#' Add Scatterplot
#'
#' The Scatterplot Layer takes in coordinate points and renders them as circles
#' with a certain radius.
#'
#' @inheritParams add_polygon
#' @param lon column containing longitude values
#' @param lat column containing latitude values
#' @param radius in metres. Default 1
#' @param radius_min_pixels the minimum radius in pixels. Can prevent circle from
#' getting too small when zoomed out
#' small for the given zoom level
#' @param radius_max_pixels the maximum radius in pixels. Can prevent the circle from
#' getting too big when zoomed in
#' @param collision_filter set to `TRUE` if you want to hide features that overlap
#' other features. Default is `FALSE`
#'
#' @inheritSection add_polygon data
#' @inheritSection add_arc legend
#' @inheritSection add_arc id
#'
#' @section transitions:
#'
#' The transitions argument lets you specify the time it will take for the shapes to transition
#' from one state to the next. Only works in an interactive environment (Shiny)
#' and on WebGL-2 supported browsers and hardware.
#'
#' The time is in milliseconds
#'
#' Available transitions for scatterplot
#'
#' list(
#' position = 0,
#' fill_colour = 0,
#' radius = 0
#' )
#'
#' @examples
#'
#' \donttest{
#' ## You need a valid access token from Mapbox
#' key <- 'abc'
#' set_token( key )
#'
#' mapdeck( style = mapdeck_style("dark"), pitch = 45 ) %>%
#' add_scatterplot(
#' data = capitals
#' , lat = "lat"
#' , lon = "lon"
#' , radius = 100000
#' , fill_colour = "country"
#' , layer_id = "scatter_layer"
#' , tooltip = "capital"
#' )
#'
#' ## using legend options
#' mapdeck( style = mapdeck_style("dark"), pitch = 45 ) %>%
#' add_scatterplot(
#' data = capitals
#' , lat = "lat"
#' , lon = "lon"
#' , radius = 100000
#' , fill_colour = "lon"
#' , stroke_colour = "lat"
#' , layer_id = "scatter_layer"
#' , tooltip = "capital"
#' , legend = TRUE
#' , legend_options = list( digits = 5 )
#' )
#'
#'
#' df <- read.csv(paste0(
#' 'https://raw.githubusercontent.com/uber-common/deck.gl-data/master/',
#' 'examples/3d-heatmap/heatmap-data.csv'
#' ))
#'
#' df <- df[ !is.na(df$lng), ]
#'
#' mapdeck(style = mapdeck_style("dark"), pitch = 45 ) %>%
#' add_scatterplot(
#' data = df
#' , lat = "lat"
#' , lon = "lng"
#' , layer_id = "scatter_layer"
#' , stroke_colour = "lng"
#' )
#'
#' ## as an sf object
#' library(sfheaders)
#' sf <- sfheaders::sf_point( df, x = "lng", y = "lat")
#'
#' mapdeck( style = mapdeck_style("dark"), pitch = 45 ) %>%
#' add_scatterplot(
#' data = sf
#' , radius = 100
#' , fill_colour = "country"
#' , layer_id = "scatter_layer"
#' , tooltip = "capital"
#' )
#'
#' }
#'
#' @details
#'
#' \code{add_scatterplot} supports POINT and MULTIPOINT sf objects
#'
#' @export
add_scatterplot <- function(
map,
data = get_map_data(map),
lon = NULL,
lat = NULL,
polyline = NULL,
radius = NULL,
radius_min_pixels = 1,
radius_max_pixels = NULL,
fill_colour = NULL,
fill_opacity = NULL,
stroke_colour = NULL,
stroke_width = NULL,
stroke_opacity = NULL,
tooltip = NULL,
auto_highlight = FALSE,
highlight_colour = "#AAFFFFFF",
layer_id = NULL,
id = NULL,
palette = "viridis",
na_colour = "#808080FF",
legend = FALSE,
legend_options = NULL,
legend_format = NULL,
digits = 6,
update_view = TRUE,
focus_layer = FALSE,
transitions = NULL,
brush_radius = NULL,
collision_filter = FALSE,
...
) {
if( nrow( data ) == 0 ) {
return( clear_scatterplot( map, layer_id, ... ) )
}
## using binary data requires hex-colorus to include teh alpha
if( !is.null( fill_colour ) ) {
fill_colour <- appendAlpha( fill_colour )
}
if( !is.null( stroke_colour ) ) {
stroke_colour <- appendAlpha( stroke_colour )
}
l <- list()
l[["lon"]] <- force(lon)
l[["lat"]] <- force(lat)
l[["polyline"]] <- force(polyline)
l[["radius"]] <- force(radius)
l[["fill_colour"]] <- force(fill_colour)
l[["fill_opacity"]] <- resolve_opacity(fill_opacity)
l[["stroke_colour"]] <- force( stroke_colour)
l[["stroke_opacity"]] <- force( stroke_opacity )
l[["stroke_width"]] <- force( stroke_width )
l[["tooltip"]] <- force(tooltip)
l[["id"]] <- force(id)
l[["na_colour"]] <- force(na_colour)
l <- resolve_palette( l, palette )
l <- resolve_legend( l, legend )
l <- resolve_legend_options( l, legend_options )
l <- resolve_data( data, l, c( "POINT") )
bbox <- init_bbox()
update_view <- force( update_view )
focus_layer <- force( focus_layer )
if ( !is.null(l[["data"]]) ) {
data <- l[["data"]]
l[["data"]] <- NULL
}
# print( data )
if( !is.null(l[["bbox"]] ) ) {
bbox <- l[["bbox"]]
l[["bbox"]] <- NULL
}
layer_id <- layerId(layer_id, "scatterplot")
checkHexAlpha(highlight_colour)
map <- addDependency(map, mapdeckScatterplotDependency())
tp <- l[["data_type"]]
l[["data_type"]] <- NULL
jsfunc <- "add_scatterplot_geo_columnar"
if ( tp == "sf" ) {
geometry_column <- list( geometry = c("lon","lat") ) ## using columnar structure, the 'sf' is converted to a data.frame
## so the geometry columns are obtained after sfheaders::sf_to_df()
l[["geometry"]] <- NULL
shape <- rcpp_point_sf_columnar( data, l, geometry_column, digits, "scatterplot" )
} else if ( tp == "df" ) {
geometry_column <- list( geometry = c("lon", "lat") )
shape <- rcpp_point_df_columnar( data, l, geometry_column, digits, "scatterplot" )
} else if ( tp == "sfencoded" ) {
geometry_column <- c( "polyline" )
shape <- rcpp_point_polyline( data, l, geometry_column, "scatterplot" )
}
js_transitions <- resolve_transitions( transitions, "scatterplot" )
if( inherits( legend, "json" ) ) {
shape[["legend"]] <- legend
legend_format <- "hex"
} else {
shape[["legend"]] <- resolve_legend_format( shape[["legend"]], legend_format )
legend_format <- "rgb"
}
invoke_method(
map, jsfunc, map_type( map ), shape[["data"]], nrow(data) , layer_id, auto_highlight, highlight_colour,
shape[["legend"]], legend_format, bbox, update_view, focus_layer, js_transitions,
radius_min_pixels, radius_max_pixels, brush_radius, collision_filter
)
}
#' @rdname clear
#' @export
clear_scatterplot <- function( map, layer_id = NULL, update_view = TRUE, clear_legend = TRUE) {
layer_id <- layerId(layer_id, "scatterplot")
invoke_method(map, "md_layer_clear", map_type( map ), layer_id, "scatterplot", update_view, clear_legend )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.