視圖的初始化選項。

interface TerrainViewOptions {
    antialias?: boolean;
    backgroundColor?: ov.Color;
    cacheLayerEnable?: boolean;
    cacheLayerOffline?: boolean;
    outputDepthMap?: boolean;
    outputSelectMap?: boolean;
    requestWebGL2?: boolean;
    showAtmosphere?: boolean;
    showOuterSpaceBox?: boolean;
    showSun?: boolean;
    transparentBackground?: boolean;
    webglImage?: string;
    xrCompatible?: boolean;
}

Properties

antialias?: boolean

抗鋸齒。

Default Value

true
backgroundColor?: ov.Color

底色。

Default Value

new ov.Color("#FFFFFF")
cacheLayerEnable?: boolean

是否使用indexedDB快取。

Default Value

false
cacheLayerOffline?: boolean

indexedDB快取是否保證不連接MapServer也可以使用。

Default Value

false
outputDepthMap?: boolean

深度測試。

Default Value

true
outputSelectMap?: boolean

點選物件。

Default Value

true
requestWebGL2?: boolean

是否使用WebGL2。

Default Value

false
showAtmosphere?: boolean

畫大氣。

Default Value

true
showOuterSpaceBox?: boolean

畫外太空。

Default Value

true
showSun?: boolean

畫太陽。

Default Value

true
transparentBackground?: boolean

背景是否透明。

Default Value

false
webglImage?: string

初始化底圖。

Default Value

null
xrCompatible?: boolean

若要使用xr功能,需設為true。

Default Value

false

Generated using TypeDoc