Polyline collection in CZML

I’m trying to figure out how to generate a CZML with mutiple polylines.

[{

“id” : “collection1”,

“polyline” : {…},

“polyline” : {…},

“polyline” : {…}

}]

Would the above CZML be the same as adding 3 polylines to a single PolylineCollection?

Thank you.

Hello,

I don’t think it’s possible to add multiple polylines to the same primitive via CZML. You will have to add them separately:

[{
“id” : “collection1”,
“polyline” : {…},
}, {
“id” : “collection2”,
“polyline” : {…},
}, {
“id” : “collection3”,
“polyline” : {…},
}]

``

Best,

Hannah