Hey guys, I wondered what y'all envisioned for how to show and hide dynamic features. We've used a couple of different methods.
One was to simply add/remove items from the dynamic object collection, which worked, but without modifications to the collection to be able to add/remove the actual processed objects rather than re-processing the raw CZML objects every time, the performance when hiding/showing thousands of objects is very poor. Also, this requires us to keep track of hidden objects without a collection (or in a second collection).
Another thing we did was to implement showing/hiding in all the visualizers, which worked with good performance, but if we're going to do that, we'd like to get on the same page and push a change to y'all (especially because we have to make sure it gets put back in properly every time we rebase).
A third method that turns out to be quite simple in implementation is to implement showing/hiding in the collection itself and overriding getObjects so that the objects appear to be removed from the collection but are actually still captured there and can be shown again via their ids.
I don't know how much thought y'all have given this, but I'd like to be able to contribute whatever we do and I wanted to make sure we were on the same page.
Thanks!
-- David