管線Widget使用教學
本章將說明管線模組Widget的使用方式。
[info] 小提示:
程式碼連結:https://doc-3dgdp.colife.org.tw/samplecode/#src/testweb/widget-pipeline-sample/
[info] 小提示:
構成本Widget使用之Function:
ov.TerrainView.addPipelineLayer
ov.TerrainView.removeLayer
ov.PipelineLayer.setDrawAllFlow
注意!!
在本範例使用proxy前請先修改oviewTLS12.aspx,如下所示:
private bool ValidateWhiteList(string url) { bool ret = false; List<string> whiteList = new List<string>(); whiteList.Add("http://127.0.0.1:8080"); // 本範例必要的proxy URL,已經存在的可以不用再加一次 whiteList.Add("https://other.proxy.url"); // 其他proxy的 URL,可依照需求自行增加 // must validate white list foreach (string s in whiteList) { if (url.ToLower().StartsWith(s.ToLower()))// CompareNoCase { ret = true; break; } } return ret; }
如果還有需求可以在
whiteList.Add("https://api.n2yo.com");
之後新增proxy URL。
初始化Widget
這裡先撰寫一個最基本的圖台。
並在圖台中加入按鈕以控制Widget開關。
[info] 小提示:
- 此Widget有使用到
Material ICON
,可自行下載引入或使用線上CDN。
index.html
:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>管線Widget</title>
<script src="PGWeb3D.min.js"></script>
<link rel="stylesheet" type="text/css" href="./css/PGWeb3D.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
</head>
<body>
<div id="MyControl" style="position: absolute;z-index:1;color: white;background-color:black;">
<button id="openWidget" onclick="openWidget()" style="left: 5px; top: 7px; position: absolute; width: 120px; border-radius: 7px;">開啟Widget</button>
</div>
<div id="MyMap" style="width:100%;height:100%;position:absolute;top:0;left:0"></div>
<script src="main.js"></script>
</body>
</html>
main.js
:
var terrainview = new ov.TerrainView("MyMap");
function openCallback (result) {
//設定底圖
terrainview.setBaseLayer({
url: "BING_MAP",
identifier: "IMAGE",
urlTemplate: "{URL}"
});
}
terrainview.openTerrain(
{
url: "http://127.0.0.1:8080",
identifier: "terrain",
callback: openCallback,
urlTemplate: "oview.aspx?{URL}"
}
);
再來我們要把openWidget按鈕點擊事件
加進我們撰寫好的main.js
中。
main.js
:
var terrainview = new ov.TerrainView("MyMap");
var Pipeline = null;// 預留一個物件當Pipeline Widget開啟成功後的手柄。
function openCallback (result) {
//設定預設底圖
terrainview.setBaseLayer({
url: "BING_MAP",
identifier: "IMAGE",
urlTemplate: "{URL}"
});
}
terrainview.openTerrain(
{
url: "http://127.0.0.1:8080",
identifier: "terrain",
callback: openCallback,
urlTemplate: "oview.aspx?{URL}"
}
);
// 加入開啟管線 Widget的按鈕事件
function openWidget() {
Pipeline = new window.ov.Widget.Pipeline({
view: terrainview,
list: [
{
url: "http://127.0.0.1:8080",
identifier: "Pipeline_taichungline"
}
],
proxy: "https://sample.pilotgaea.com.tw/Oview.aspx?"
});
var button = document.getElementById("openWidget");
button.disabled = true;
setTimeout(function () {
button.disabled = false;
}, 1000);
}
到目前為止,我們已成功將開啟管線Widget加入圖台中。