每实例几何体属性的值和类型信息,决定是否显示几何体实例。
Name | Type | Default | Description |
---|---|---|---|
show |
Boolean |
true
|
optional 决定是否显示几何体实例。 |
Example:
var instance = new SuperMap3D.GeometryInstance({
geometry : new SuperMap3D.BoxGeometry({
vertexFormat : SuperMap3D.VertexFormat.POSITION_AND_NORMAL,
minimum : new SuperMap3D.Cartesian3(-250000.0, -250000.0, -250000.0),
maximum : new SuperMap3D.Cartesian3(250000.0, 250000.0, 250000.0)
}),
modelMatrix : SuperMap3D.Matrix4.multiplyByTranslation(SuperMap3D.Transforms.eastNorthUpToFixedFrame(
SuperMap3D.Cartesian3.fromDegrees(-75.59777, 40.03883)), new SuperMap3D.Cartesian3(0.0, 0.0, 1000000.0), new SuperMap3D.Matrix4()),
id : 'box',
attributes : {
show : new SuperMap3D.ShowGeometryInstanceAttribute(false)
}
});
See:
Members
-
readonlycomponentDatatype : 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
-
将boolean显示转换为可用于分配显示属性的类型化数组。
Name Type Description show
Boolean 显示值。 result
Uint8Array optional 存储结果的数组,如果未定义,将创建一个新实例。 Returns:
如果result未定义,则修改的结果参数或新实例。Example:
var attributes = primitive.getGeometryInstanceAttributes('an id'); attributes.show = SuperMap3D.ShowGeometryInstanceAttribute.toValue(true, attributes.show);