new ov.AirspaceModelData()
            webgl/module/airspaceModule/ov-Airspace.js, line 92
        
        
    由模型建立的空域資訊。
Methods
- 
    
update(parameter)
webgl/module/airspaceModule/ov-Airspace.js, line 114 - 
    
    
    
更新空域資訊。
Name Type Description parameterObject 參數。
Name Type Description arrayDataGeo3DPoint optional 模型參數。
colorov.Color optional 顏色。
opacityNumber optional 透明度。
drawBoundBoolean optional 繪製空域。
Example
var param = {};
param.arrayData = [
[Geo3DPoint, Geo3DPoint, Geo3DPoint],
[Geo3DPoint, Geo3DPoint, Geo3DPoint],...
];
param.color = new ov.Color("#FF00FF");
param.opacity = 0.8;
param.drawBound = true;
entity.update(param);