Class: MultiWindow

ov.Widget. MultiWindow

new ov.Widget.MultiWindow(param)

common/PilotGaea-Widget.js, line 9043

MultiWindow,需加入material-icons.css
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
或參照Google Fonts Material Icons Guide設置離線版本。
https://developers.google.com/fonts/docs/material_icons

Name Type Description
param Object

參數。

Name Type Default Description
view ov.TerrainView

圖台物件。

urlTemplate String "" optional

網址字串模板,可給代理如PROXY_URL/{URL}。

Methods

addEventListener(event, listener)

common/PilotGaea-Widget.js, line 9115

新增一個事件到項目上。

Name Type Description
event String

要註冊的事件類型。
load 自動生成的TerrainView初始化完成
focus 目前焦點位置

listener ov.Widget.MultiWindow~addEventListenerCallback

事件回呼。

getSubTerrainView(index){ov.TerrainView}

common/PilotGaea-Widget.js, line 9087

取得自動生成的TerrainView

Name Type Description
index string | number

支援以下格式
單view模式
- center
雙view模式
- left
- right
四view模式
- left-top
- right-top
- left-bottom
- right-bottom
數值指定

Returns:
Type Description
ov.TerrainView
Examples

var result = multiWindow.getSubTerrainView("right");

var result = multiWindow.getSubTerrainView(0);

Type Definitions

addEventListenerCallback(index)

common/PilotGaea-Widget.js, line 9125
Name Type Description
index number

subTerrainView的索引值。

See: