How to load massive 3d tileset data,about 100G

let tileset = window.viewer.scene.primitives.add(
new Cesium.Cesium3DTileset({
url:’/api/tile/tileset.json’,
maximumScreenSpaceError:16,
skipLevelOfDetail:true,
preferLeaves:true,
maximumMemoryUsage:1024
})
)

For example, this traditional way of loading is too demanding for the graphics card, and high-precision data is easy to crash.How to solve it. Thanks!

@Hb1731276584

Welcome to the community! Thank you for bringing your question to us :grinning: :rocket:

I suggest that you try uploading your data to Cesium ion. You will likely get better runtime performance and you will not have to store this massive file locally. The following guide should help get you started.

Let me know if you have any other questions or concerns.

-Sam