/mapdeck

R interface to Deck.gl

Primary LanguageR

mapdeck

CRAN_Status_Badge downloads CRAN RStudio mirror downloads Github Stars Build Status Coverage Status

Interactive maps using Mapbox GL and Deck.gl

Installation

From cran

install.packages("mapdeck")

Development version

## Until googlePolylines 0.7.2+ is on CRAN you'll need 
devtools::install_github("SymbolixAU/googlePolylines")

## then mapdeck
devtools::install_github("SymbolixAU/mapdeck")

Basic Use

mapdeck(token = 'your_token') will give you a map. You then start adding layers by using one of the various add_*() functions.

url <- 'https://raw.githubusercontent.com/plotly/datasets/master/2011_february_aa_flight_paths.csv'
flights <- read.csv(url)
flights$info <- paste0("<b>",flights$airport1, " - ", flights$airport2, "</b>")

mapdeck(token = key, style = mapdeck_style('dark')) %>%
  add_arc(
    data = flights
    , origin = c("start_lon", "start_lat")
    , destination = c("end_lon", "end_lat")
    , stroke_from = "airport1"
    , stroke_to = "airport2"
    , tooltip = "info"
    , layer_id = 'arclayer'
  )

Arcs

Access Token

Mapdeck uses Mapbox maps, and to use Mapbox you need an access token

Available Layers

  • Arc
  • GeoJSON
  • Grid
  • Line
  • Path
  • Point cloud
  • Polygon
  • Scatter plot
  • Screen grid
  • Text

Shiny

Mapdeck is also an htmlwidget, so will work in a shiny application.

Examples of all plots and shiny can be found in the vignette