我声明了一个 CZML 数据源:
public geometryDataPromise: Cesium.CzmlDataSource;
加载组件时,我正在使用上面的端点加载它:
if(!this.store.geometryDataPromise) {
this.store.geometryDataPromise = Cesium.CzmlDataSource.load(environment.apiBaseURL + `/protectedareas/geometry/all`);
}
所有渲染的对象都显示在地形上,但尝试按照以下说明进行操作:
this.store.geometryDataPromise.show = false;
对象没有被隐藏