According to the Cesium API, to toggle the visibility of an asset's billboard (or label) you can simply assign the billboard.show property to false. When I attempted to do this, Cesium would error with
An error occurred while rendering. Rendering has stopped.
TypeError: undefined is not a function
...
This discussion from the cesium-dev google group includes some example code to toggle billboard visibility on/off. The same code does not work if you attempt show = false on an entity from CZML (this example does not use CZML).
Here is what I tried
var asset = loadedCZML.entities.getById(id);
asset.billboard.show = false; //Error!
(loadedCZML is a Cesium.CzmlDataSource
)
The API doc's don't mention that the
show
property of your entity might not always be a simple boolean property (as the API describes).When working with a
CzmlDataSource
'sentity
, theshow
property is considered aTimeIntervalCollectionProperty
(at least it was with my CZML).All properties in Cesium must implement a
getValue
function, and when you go to set yourshow = false
, the setter for the property is unable to apply false to aTimeIntervalCollectionProperty
and instead replaces the entire property with a simple value offalse
.The error
undefined is not a function
is a result of the cesium render call attempting to call getValue() on ourshow
property. Regardless, the fix is simple:Instead of this:
asset.billboard.show = false; //error
Do this:
PS: This applies for other Cesium properties, see the following example: