新增固定在畫面的某一位置上的UI物件。
可以用來放html元素,ex: <iframe>、ov.Chart 生成的圖表等等,需加入 material-icons.css
<iframe>
material-icons.css
<head> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"></head> Copy
<head> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"></head>
或參照 Google Fonts Material Icons Guide 設置離線版本。
新增視窗UI
UI設定參數
const windowUI = new ov.UI.WindowUI(parameter); Copy
const windowUI = new ov.UI.WindowUI(parameter);
把內容加進div的預設content裡
div
要加進去的節點元素
以BubbleUI舉例
BubbleUI
let bubbleUI = new ov.UI.BubbleUI(parameter);bubbleUI.appendContent(node); Copy
let bubbleUI = new ov.UI.BubbleUI(parameter);bubbleUI.appendContent(node);
取得內容的<div>元素
<div>
取得UI的<div>元素
在ov.terrainView修改位置需要用到,雖然沒有底線但請勿亂更改
ov.terrainView
取得標頭的<div>元素
移除content裡的內容
Optional
刷新UI參數
要修改的UI參數
Protected
用來存放最終計算過後的位置用
Generated using TypeDoc
新增固定在畫面的某一位置上的UI物件。
可以用來放html元素,ex:
<iframe>
、ov.Chart 生成的圖表等等,需加入material-icons.css
或參照 Google Fonts Material Icons Guide 設置離線版本。