Hello,
Lets say I have given object(for example 3d building) in czml:
{
"id":"somename",
"availability":"2008-01-01T23:00:00Z/2008-01-02T23:00:00Z",
"vertexPositions":{
"cartographicDegrees":[
...positions(with nonzero-z)
]
},
"polyline":{
"color":{
"rgba":[
255,0,0,255
]
},
"outlineWidth":0.0,
"width":1.0,
"show":true
},
"polygon":{
"show":true,
"material":{
"solidColor":{
"color":{
"rgba":[
255,255,0,255
]
}
}
}
}
}
But the effect I get is that only polylines get proper height, polygon seems to be glued to the surface, its totally flat. Is there a way to write in czml 3d object?
Best regards.