三維封閉線資料結構
三維封閉線資料結構
為起始節點和末端節點相同的環狀線資料。要特別注意的是封閉線資料仍為線資料結構,並不包含所圍成的範圍,因此無法計算面積,不能當作面資料看。封閉線資料為定義面資料的基礎。
function drawline() {
var path = []; //設定path節點順序
path[0] = new TGOS.TEPoint(121.54882, 25.04146);
path[1] = new TGOS.TEPoint(121.54903, 25.05172);
path[2] = new TGOS.TEPoint(121.57055, 25.05137);
path[3] = new TGOS.TEPoint(121.56448, 25.04118);
path[4] = new TGOS.TEPoint(121.54882, 25.04146);
//注意封閉線資料path的首尾節點必須相同
var lineStr = new TGOS.TELineString(path); //設定封閉線資料的path
var testline = new TGOS.TELine(tg3dEarth,lineStr,{
strokeColor: '#00FF77',
strokeWeight: 5,
strokeOpacity: 0.7
});
}