Class: PointCloudLayer

ov. PointCloudLayer

new ov.PointCloudLayer()

webgl/ov-PointCloudLayer.js, line 6

點雲圖層

Extends

Members

boundary

Boundary

Properties:
Name Type Description
Boundary GeoBoundary

圖層邊界。

edlStrength

邊界增強效果的強度

Properties:
Name Type Description
edlStrength Number

EDL加權強度。

readonlyname

圖層名稱

Properties:
Name Type Description
name String

名稱。

show

圖層顯示

Properties:
Name Type Description
show Boolean

是否顯示圖層。

Methods

addClipPolygon(polygon, mode){Boolean}

webgl/ov-PointCloudLayer.js, line 154

在圖層上加入要裁切的區域。

Name Type Description
polygon GeoPolygon

多邊形區域。

mode ov.CLIP_MODE

裁切模式。

Returns:
Type Description
Boolean 是否加入成功。

enableAltitudeMode(enableAltitudeMode){Boolean}

webgl/ov-PointCloudLayer.js, line 82

設定點雲是否用高度填色。

Name Type Description
enableAltitudeMode Boolean

是否用高度填色。

Returns:
Type Description
Boolean 是否成功設定。

enableColorBlend(enableBlend){Boolean}

webgl/ov-PointCloudLayer.js, line 97

設定高度填色是否開啟漸層,預設開啟。

Name Type Description
enableBlend Boolean

是否開啟漸層。

Returns:
Type Description
Boolean 是否成功設定。

enableEDL(enableEDL){Boolean}

webgl/ov-PointCloudLayer.js, line 112

設定點雲是否啟用EDL效果,瀏覽器是否支援,可透過ov.PointCloudLayer#isSupportEDL檢查。

Name Type Description
enableEDL Boolean

是否啟用EDL。

Returns:
Type Description
Boolean 是否成功設定。

inherited enableOrderIndependentTransparency(enable)

webgl/ov-Layer.js, line 195

透明度是否使用OIT演算法,正確性較高但效能會降低。

Name Type Description
enable Boolean

啟用OIT透明。

getAllClipPolygon(){Object|null}

webgl/ov-PointCloudLayer.js, line 183

取得所有在圖層上的裁切區域。

Returns:
Name Type Description
clipPolygon Object | null 裁切多邊形資訊。
Name Type Description
polygon Array.<GeoPolygon> 多邊形。
mode Array.<ov.CLIP_MODE> 模式。

getAltitude(){Object}

webgl/ov-PointCloudLayer.js, line 36

取得點雲資料的高度上下界。

Returns:
Name Type Description
altitudeObject Object 高度物件。
Name Type Description
altitudeMin Number 高度下界。
altitudeMax Number 高度上界。

inherited getHeader(callback)

webgl/ov-Layer.js, line 61

取得圖層標頭物件。

Name Type Description
callback ov.Layer~setOnGetHeaderCallback

請求標頭物件的回呼,不給則同步回傳(不保證回傳速度)。

inherited getOpacity(){Number}

webgl/ov-Layer.js, line 122

取得當前圖層不透明程度。

Returns:
Type Description
Number opacity 圖層不透明程度(0~1)。

inherited goto(callback)

webgl/ov-Layer.js, line 203

飛到圖層的位置。

Name Type Description
callback ov.Layer~gotoCallback

移動完成後執行的回呼。

isSupportEDL(){Boolean}

webgl/ov-PointCloudLayer.js, line 126

檢查瀏覽器是否支援EDL效果,瀏覽器需支援texture float與frag depth。

Returns:
Type Description
Boolean 是否支援。

removeClipPolygon(index){Boolean}

webgl/ov-PointCloudLayer.js, line 168

移除先前在圖層上的裁切區域。

Name Type Description
index Number

索引,不填則全刪。

Returns:
Type Description
Boolean 是否刪除成功。

setColorSet(color, upper){Boolean}

webgl/ov-PointCloudLayer.js, line 67

設定點雲高度的分層設色。

Name Type Description
color Array

依序填入RGBA 0~255的數字,目前作畫關閉透明度混色,因此A通道無效。

upper Array

分層中各層的上界。

Returns:
Type Description
Boolean 是否設定成功
Example

var gap = (altitudeMax - altitudeMin)/4;
var ret = lyr.setColorSet(
[0.0, 0.0 , 0 , 255,
0.0, 50 , 50 , 255,
0.0, 150 , 150 , 255,
0.0, 200 , 200 , 255,
0.0, 255 , 255 , 255],
[altitudeMax, altitudeMax - gap, altitudeMax - gap2, altitudeMax - gap3, altitudeMax - gap*4]);

inherited setDepthFunc(depthFunc)

webgl/ov-Layer.js, line 228

設置圖層深度測試的方式。

Name Type Description
depthFunc ov.DEPTH_FUNC

深度測試的方式。

inherited setFadeNearFar(near, far){Boolean}

webgl/ov-Layer.js, line 187

設定圖層開始淡出與完全消失的距離。

Name Type Description
near Number

開始淡出的距離。

far Number

完全消失的距離。

Returns:
Type Description
Boolean 設定是否成功,當near > far時,會失敗。

inherited setFreezeAdjust(freezeAdjust)

webgl/ov-Layer.js, line 236

設定圖層是否暫停分裂。

Name Type Description
freezeAdjust Boolean

是否暫停分裂。

inherited setFreezeCollapse(freezeCollapse)

webgl/ov-Layer.js, line 244

設定圖層是否暫停收斂。

Name Type Description
freezeCollapse Boolean

是否暫停收斂。

inherited setHide(mode)

webgl/ov-Layer.js, line 220

設定圖層隱藏模式。

Name Type Description
mode ov.HIDE

隱藏模式。

inherited setIsUnderground(IsUnderground)

webgl/ov-Layer.js, line 252

此設定影響圖資與地形的作畫順序

Name Type Description
IsUnderground boolean

是否在地底

inherited setOffset(x, y, z){Boolean}

webgl/ov-Layer.js, line 133

設定圖層的公尺平移量(目前僅支援PhotogrammetryModel、PointCloud、Model、ModelSet、Pipeline)。

Name Type Description
x Number

向東西方向偏移,單位為公尺。

y Number

向南北方向偏移,單位為公尺。

z Number

向垂直於地表方向偏移,單位為公尺。

Returns:
Type Description
Boolean 變換是否成功,某些圖層不支持此操作時返回false。

inherited setOpacity(opacity)

webgl/ov-Layer.js, line 114

設置圖層不透明程度。

Name Type Description
opacity Number

圖層不透明程度(0~1)。

setPointSizeScale(scale){Boolean}

webgl/ov-PointCloudLayer.js, line 139

設定點大小的Scale。

Name Type Description
scale Number

大小縮放比例。

Returns:
Type Description
Boolean 是否設定成功。

inherited setResolutionScale(resolutionScale){Boolean}

webgl/ov-Layer.js, line 160

設定圖層解析度條件的Scale比例。

Name Type Description
resolutionScale Number

解析度條件的Scale比例(初始值1,越大越容易分裂,模型越細緻)。

Returns:
Type Description
Boolean 是否設定成功。

inherited setRotate(degree){Boolean}

webgl/ov-Layer.js, line 142

設定圖層的旋轉量(目前僅支援PhotogrammetryModel、PointCloud、Model、ModelSet、Pipeline)。

Name Type Description
degree Number

旋轉角度。

Returns:
Type Description
Boolean 變換是否成功,某些圖層不支持此操作時返回false。

inherited setScale(scale){Boolean}

webgl/ov-Layer.js, line 151

設定圖層的縮放量(目前僅支援PhotogrammetryModel、PointCloud、Model、ModelSet、Pipeline)。

Name Type Description
scale Number

縮放比例。

Returns:
Type Description
Boolean 變換是否成功,某些圖層不支持此操作時返回false。

inherited setUseFade(useFade)

webgl/ov-Layer.js, line 177

設定圖層是否開啟淡出功能。

Name Type Description
useFade Boolean

淡出開關。

inherited setZScale(zScale){Boolean}

webgl/ov-Layer.js, line 169

設定圖層的ZScale(ZScale:越小圖層越不會被遮擋)。

Name Type Description
zScale Number

ZScale的值。

Returns:
Type Description
Boolean 是否設定成功。