If I have a czml file read in using:
viewer.dataSources.add(Cesium.CzmlDataSource.load("http://path/to/file.czml"));
If the czml file contains data such as:
{
"id":"Polyline_1",
"name":"Polyline 1",
"polyline": {
"width":3,
"material": {
"solidColor": {
"color": {
"rgba": [255,255,255,255]
}
}
},
"positions": {
"cartographicDegrees": [long1, lat1, height1, long2, lat2, height2]
}
},
"myData":[8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7]
}
How can I then read in this new custom data "myData"?