Advice for real-time rendering up to 10M points (zooming and panning) #7172
Answered
by
ibgreen
NataliaDSmirnova
asked this question in
Q&A
|
Hi, I would like to ask for some advice on best performance practice for rendering more than 1M points (up to 10M) in real-time using deck.gl. My experience at the moment gives two approaches:
Maybe there are other decisions? I appreciate any ideas :) |
Answered by
ibgreen
Jul 27, 2022
Replies: 1 comment 6 replies
For 3D tiling, you'd need to research tiling tools. Cesium has the ION service which is excellent if that is an option. There was an effort to build an open source point cloud tiler in loaders.gl but the maintainer moved on and I am not sure if it still works: https://github.com/visgl/loaders.gl/tree/master/cpp/Model3DTiler |
6 replies
Answer selected by
NataliaDSmirnova
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For 3D tiling, you'd need to research tiling tools. Cesium has the ION service which is excellent if that is an option. There was an effort to build an open source point cloud tiler in loaders.gl but the maintainer moved on and I am not sure …