确定是否显示几何实例的每个实例几何属性的值和类型信息。
Name | Type | Default | Description |
---|---|---|---|
show
|
Boolean |
true
|
可选 确定是否显示几何实例。 |
Example:
const instance = new Cesium.GeometryInstance({
geometry : new Cesium.BoxGeometry({
vertexFormat : Cesium.VertexFormat.POSITION_AND_NORMAL,
minimum : new Cesium.Cartesian3(-250000.0, -250000.0, -250000.0),
maximum : new Cesium.Cartesian3(250000.0, 250000.0, 250000.0)
}),
modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883)), new Cesium.Cartesian3(0.0, 0.0, 1000000.0), new Cesium.Matrix4()),
id : 'box',
attributes : {
show : new Cesium.ShowGeometryInstanceAttribute(false)
}
});
See:
Members
readonly componentDatatype : ComponentDatatype
属性中每个组件的数据类型,例如
ColorGeometryInstanceAttribute#value
中的单个元素。
-
Default Value:
ComponentDatatype.UNSIGNED_BYTE
属性中的组件数,即
ColorGeometryInstanceAttribute#value
。
-
Default Value:
1
当为
true
且
componentDatatype
为整数格式时,指示组件在作为浮点访问以进行渲染时应映射到范围 [0, 1](无符号)或 [-1, 1](有符号)。
-
Default Value:
true
存储在类型化数组中的属性值。
-
Default Value:
[1.0]
Methods
将布尔显示转换为可用于分配显示属性的类型化数组。
Name | Type | Description |
---|---|---|
show
|
Boolean | 展示价值。 |
result
|
Uint8Array | 可选 存储结果的数组,如果未定义,将创建一个新实例。 |
Returns:
如果结果未定义,则修改结果参数或新实例。
Example:
const attributes = primitive.getGeometryInstanceAttributes('an id');
attributes.show = Cesium.ShowGeometryInstanceAttribute.toValue(true, attributes.show);