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 parameter
Object 參數。
Name Type Description arrayData
Geo3DPoint optional 模型參數。
color
ov.Color optional 顏色。
opacity
Number optional 透明度。
drawBound
Boolean 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);