Hello, when I am using GeoJsonPrimitive, I have also enabled terrain elevation. My GeoJsonPrimitive will automatically load below the terrain elevation. How can I set it to display closely to the elevation?
I tried the following attributes, but they were invalid
const geoJsonPrimitive = new Cesium.GeoJsonPrimitive({
data: ‘path/to/large-data.geojson’,
// Enable fully automatic ground pasting
clampToGround: true,
// Category type: Specify both Terrain and 3D Tiles for oblique photography/white modeling (CESIUM-3D_FILE)
classificationType: Cesium.ClassificationType.BOTH
});