Dave
Dave
First posted here - https://stackoverflow.com/questions/64045451/mapdeck-with-shiny-mobile And the related RFC - https://github.com/visgl/deck.gl/blob/master/dev-docs/RFCs/proposals/mobile-platform-support-rfc.md
These should probably be categorical because only 6 colours are used.
https://github.com/visgl/deck.gl/blob/master/docs/layers/terrain-layer.md --- TODO - [ ] examples of loading various DEMs --- Proof of concept ```r mapdeck() %>% add_terrain() ``` 
working [fiddle](https://jsfiddle.net/symbolixau/r68t2ces/52/) TODO - [x] stroke_width needs replicating for each waypoint (when `stroke_width = 10`, for example, not a column of `data`) - [x] check my `path.cpp` is creating the...
To work with https://github.com/SymbolixAU/spatialwidget/issues/40 requires https://github.com/dcooley/sfheaders/issues/28 so I can down-cast `sfc_MULTIPOINT` objects An example of how to use the 'binary' data structures and [interleaving attributes](https://github.com/uber/deck.gl/blob/master/docs/developer-guide/performance.md#supply-attributes-directly) https://jsfiddle.net/symbolixau/r06edftg/114/ Path and Polygon layers...