In my case, I set building’s height less than 50 which to be red, but it’s not work. Beside, it doesn’ t rendering any building and any error in console.
Does anyone know how do I solve this situation?
const scene = ol3d.getCesiumScene()
scene.primitives.add(Cesium.createOsmBuildings({
style: new Cesium.Cesium3DTileStyle({
color : {
conditions : [
['${Height} >= 50', 'color("red")'],
['true', 'color("white")']
]
},
})
}))