Class: Layer

ov. Layer

new ov.Layer()

webgl/ov-Layer.js, line 5

圖層

Members

boundary

Boundary

Properties:
Name Type Description
Boundary GeoBoundary

圖層邊界。

readonlyname

圖層名稱

Properties:
Name Type Description
name String

名稱。

show

圖層顯示

Properties:
Name Type Description
show Boolean

是否顯示圖層。

tooltipSetting

Tooltip設定。

Properties:
Name Type Description
positionMode ov.TOOLTIP_POSITION_MODE

定位模式。

show Boolean

是否顯示。

offset GeoPoint

偏移。

style Object

Tooltip style,可自行擴充。

preProcessing ov.Layer~tooltipPreProcessingCallback

內容前處理方法。

positionPreProcessing ov.Layer~tooltipPositionPreProcessingCallback

座標前處理方法。

Methods

enableOrderIndependentTransparency(enable)

webgl/ov-Layer.js, line 280

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

Name Type Description
enable Boolean

啟用OIT透明。

getHeader(callback)

webgl/ov-Layer.js, line 96

取得圖層標頭物件。

Name Type Description
callback ov.Layer~setOnGetHeaderCallback

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

goto(callback)

webgl/ov-Layer.js, line 288

飛到圖層的位置。

Name Type Description
callback ov.Layer~gotoCallback

移動完成後執行的回呼。

setAllowHoverEntity(allow)

webgl/ov-Layer.js, line 199

設定圖層的圖素是否能Hover。

Name Type Description
allow Boolean

是否能Hover。

setAllowSelectEntity(allow)

webgl/ov-Layer.js, line 207

設定圖層的圖素是否能被選取。

Name Type Description
allow Boolean

是否能被點選。

setDepthFunc(depthFunc)

webgl/ov-Layer.js, line 313

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

Name Type Description
depthFunc ov.DEPTH_FUNC

深度測試的方式。

setDrawSelectedEntityOutline(isDraw)

webgl/ov-Layer.js, line 151

設定圖層的圖素是否顯示outline。

Name Type Description
isDraw Boolean

是否顯示。

setEntitySelected(entityID)

webgl/ov-Layer.js, line 324

設定圖素選取狀態。
未選取則變成選取狀態。
選取則變成未選取狀態。
-1清除所有選取狀態。

Name Type Description
entityID Number

圖素ID。

setFadeNearFar(near, far){Boolean}

webgl/ov-Layer.js, line 272

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

Name Type Description
near Number

開始淡出的距離。

far Number

完全消失的距離。

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

setHide(mode)

webgl/ov-Layer.js, line 305

設定圖層隱藏模式。

Name Type Description
mode ov.HIDE

隱藏模式。

setHoverEntityHighlightColor(color, opacity)

webgl/ov-Layer.js, line 188

設定圖層圖素的Hover高亮顏色。

Name Type Description
color ov.Color

Hover高亮的顏色。

opacity Number

不透明度。

setOffset(x, y, z){Boolean}

webgl/ov-Layer.js, line 218

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

Name Type Description
x Number

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

y Number

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

z Number

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

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

setOnClickEntity(callback)

webgl/ov-Layer.js, line 109

設定此圖層圖素被點擊時的回呼。

Name Type Description
callback ov.Layer~setOnClickEntityCallback

圖素被點擊時的回呼。

setOpacity(opacity)

webgl/ov-Layer.js, line 143

設置圖層不透明程度。

Name Type Description
opacity Number

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

setOutlineColor(VisibleColor, HiddenColor)

webgl/ov-Layer.js, line 160

設定選取圖層圖素的Outline顏色。

Name Type Description
VisibleColor ov.Color

outline可視的顏色。

HiddenColor ov.Color

outline不可視的顏色。

setResolutionScale(resolutionScale){Boolean}

webgl/ov-Layer.js, line 245

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

Name Type Description
resolutionScale Number

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

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

setRotate(degree){Boolean}

webgl/ov-Layer.js, line 227

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

Name Type Description
degree Number

旋轉角度。

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

setScale(scale){Boolean}

webgl/ov-Layer.js, line 236

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

Name Type Description
scale Number

縮放比例。

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

setSelectedEntityHighlightColor(color, opacity)

webgl/ov-Layer.js, line 176

設定圖層圖素的選取高亮顏色。

Name Type Description
color ov.Color

選取高亮的顏色。

opacity Number

不透明度。

setUseFade(useFade)

webgl/ov-Layer.js, line 262

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

Name Type Description
useFade Boolean

淡出開關。

setZScale(zScale){Boolean}

webgl/ov-Layer.js, line 254

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

Name Type Description
zScale Number

ZScale的值。

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

Type Definitions

gotoCallback()

webgl/ov-Layer.js, line 296
See:

setOnClickEntityCallback(id, pos)

webgl/ov-Layer.js, line 112
Name Type Description
id Number

圖素id。

pos GeoPoint

滑鼠坐標。

See:

setOnGetHeaderCallback(header)

webgl/ov-Layer.js, line 99
Name Type Description
header Object

標頭物件。

See:

tooltipPositionPreProcessingCallback(pos){GeoPoint}

webgl/ov-Layer.js, line 84
Name Type Description
pos GeoPoint

當前座標。

See:
Returns:
Type Description
GeoPoint 處理後座標。

tooltipPreProcessingCallback(id, field){String}

webgl/ov-Layer.js, line 77
Name Type Description
id Number

圖素編號。

field Array | Object | null

屬性物件。

See:
Returns:
Type Description
String 欲顯示內容。