Value and type information for per-instance geometry attribute that determines if the geometry instance will be shown.
alias ShowGeometryInstanceAttribute
- {Boolean} [show=true] Determines if the geometry instance will be shown.
Annotations
@RawJSType()@native()@JSName(...)
Example:
var 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)
}
});
Value and type information for per-instance geometry attribute that determines if the geometry instance will be shown.
alias ShowGeometryInstanceAttribute
- {Boolean} [show=true] Determines if the geometry instance will be shown.
var 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) } });
GeometryInstanceAttribute
GeometryInstance