Hi there,
We have a huge 3D tileset of buildings and face some problems may need your help as below:
Question 1:
This is how we insert the 3D tileset:
try {
const tileset = await Cesium.Cesium3DTileset.fromUrl(url, {
skipScreenSpaceErrorFactor: 16,
skipLevelOfDetail: true,
maximumMemoryUsage: 128,
shadows: Cesium.ShadowMode.DISABLED,
featureIdLabel: num,
instanceFeatureIdLabel: num,
});
this.viewer.scene.primitives.add(tileset);
} catch (error) {
console.error(`Error creating tileset: ${error}`);
}
After the insert, we found color differences in the 3D buildings. We want to know if this is the original default color of the 3D tileset? Please suggest how to uniform the colors if we want to retain the contour of the 3D buildings, thank you.
Question 2:
We noticed that when we zoom in extensively into the 3D building, the building model will turn dark black. Is this the feature provided by Cesium for 3D tileset? Can it be switched off?
Before color change
After color change
Question 3:
If we add a 3D building onto an existing 3D building, will they overlap or the new one will replace the old one straight the way? Or what kind of behavior would it show?