Hello there! I’m new to CesiumJS and have project where i have dataset with files
tileset.json
e.json
and .glb file(108MB) in folder content and some .subtree files
I already loaded data with Cesium.Cesium3DTileset.fromUrl function but i don’t know how to implement LOD for my polyies. Is there some out of the box solutions?
Please help me
Hi @GISRABOTA, welcome to the community!
How are you generating the tileset? The LODs would normally be created during the tiling process. For a small test dataset, you could try uploading the raw data into Cesium ion to be tiled there. This could give you some idea of what your output data should look like.
Thank you about Cesium Ion information! My asset is number 3405875
(const tileset = viewer.scene.primitives.add(
await Cesium.Cesium3DTileset.fromIonAssetId(3405875),
)
But this tileset don’t have any LOD, i think it’s because raw data don’t have the system parameters to implement LOD.
But i need it. How to do this task? I’ve searched about Douglas Peucker algorithm. Can this be realised to optimize my lines in real time?
Still waiting
Still waiting