The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

deckgl 0.3.0

deckgl 0.2.7

deckgl 0.2.7-beta.2

deckgl 0.2.7-beta.1

deckgl 0.2.7-alpha.1

deckgl 0.2.6

deckgl 0.2.6-beta.4

deckgl 0.2.6-beta.3

deckgl 0.2.6-beta.2

deckgl 0.2.6-beta.1

deckgl 0.2.5-cran

deckgl 0.2.5

Renamed

deckgl 0.2.4

deckgl 0.2.3

deckgl 0.2.2

deckgl 0.2.1

properties <- list(
  getPosition = JS("d => [d.lng, d.lat]")
  getRadius = JS("d => d.radius")
)

# equals

properties <- list(
  getPosition = ~lng + lat,
  getRadius = ~radius
)

deckgl 0.2.0

deckgl 0.1.9

deckgl 0.1.8

deckgl 0.1.7

deckgl:::browse_api_examples()[1] %>%
  deckgl:::run_api_example()
deck

deckgl 0.1.6

deckgl(
  zoom = 5,
  pickingRadius = 5,
  style = list(background = "black")
)
deckgl() %>%
  add_data(bart_stations) %>%
  add_scatterplot(data = get_data(), properties = properties)

deckgl 0.1.5

properties <- list(
  getText = JS("data => data.text")
)

# equals

properties <- list(
  getText = get_property("text")
)

deckgl 0.1.4

icon_properties <- list(
  iconAtlas = encode_icon_atlas(),
  iconMapping = list(marker = icon_definition()),
  getIcon = JS("d => 'marker'"),
  ...
)

deckgl 0.1.3

# Tooltip example for a grid layer

properties <- list(
  pickable = TRUE
  getTooltip = JS("object => `${object.position.join(', ')}\nCount: ${object.count}`")
  fixedTooltip = TRUE # show tooltip always on upper left corner,
  ...
)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.