uber / react-vis

Data Visualization Components
https://uber.github.io/react-vis
MIT License
8.72k stars 833 forks source link

[question] can react-vis do geolocation based visualization? #719

Closed syang closed 6 years ago

syang commented 6 years ago

I am going to do something like this see a similar geo-based visualization effect I want to achieve

data viz on a map

I have I don't see the use case on the react-vis demo page though, not sure if react-vis could provide some out-of-box solution for React integration for such use case or if I should be using d3 directly.

BertCh commented 6 years ago

not react-vis but there is another react-based, modular and composable data visualization library open sourced by Uber that is focused on geospatial data.

this example comes to mind based upon your pic: https://uber.github.io/deck.gl/#/examples/core-layers/arc-layer

jonsadka commented 6 years ago

@syang there is also https://uber.github.io/react-map-gl/

jckr commented 6 years ago

you could do that with react-vis if you really wanted to, but it would be very cumbersome. states could be done through the svg series, circles through the mark series and lines, with the line series. It is definitely not what react-vis is good at, contrary to deck.gl / react-map-gl libraries highlighted by Robert and Jon.