Does anyone have an examples for how to get data from an extremely simple CZML loaded onto a CesiumWidget (preferably not the viewer). I'm basically just trying to draw some polygons on the map. Nothing would change based on time. For example, here's the CZML I'd like to render:
[
{
"id": "MyTestData",
"polygon": {
"material": {
"solidColor": {
"color": {
"rgba": [
255,
165,
0,
255
]
}
}
}
},
"vertexPositions": {
"cartographicDegrees": [
-80.3982608081762,
40.7897431538943,
0,
-50.3906446069755,
40.7897431538943,
0,
-80.3906446069755,
10.7821269526935,
0,
-80.3982608081762,
20.7821269526935,
0,
-60.3982608081762,
30.7897431538943,
0
]
}
}
]