BoxVolumePrimitive

new Cesium.BoxVolumePrimitive(options)

三维体素图元类
Name Type Description
options Object 参数选项:
Name Type Description
url String 体素对象的url
showOutline Boolean 是否显示体素范围外轮廓
lowerCounts Boolean 是否使用较低级的体素数量渲染方式,默认为false
readyEvent function optional 数据就绪事件
Example:
volumePrimitive = new Cesium.GeoVolume.BoxVolumePrimitive({
         url : ...,
         readyEvent : function(){
             viewer.scene.camera.lookAt(center, ...);
         }
     });

     viewer.scene.primitives.add(volumePrimitive);

Members

counts : VolumeCounts

体素长宽高个数

density : Number

渲染浓度系数

readonlyloadedEvent : Event

加载完毕事件

maxXRange : Number

x向最大范围值

maxYRange : Number

y向最大范围值

maxZRange : Number

z向最大范围值

minXRange : Number

x向最小范围值

minYRange : Number

y向最小范围值

minZRange : Number

z向最小范围值

readonlyneedRender : Boolean

是否需要渲染

showOutline : Boolean

是否显示轮廓线