繪製三維線資料
繪製三維線資料
線資料是一串點資料的陣列,由兩個以上的點位資訊依照順序排列連接而成的幾何圖形。而三維線資料結構允許紀錄點位的高度值,可以設定線的呈現方式(AltitudeMode),在地圖上呈現三維線圖徵。
以X、Y代表坐標值
function addPolyLine(){
var path = [];
path[0] = new TGOS.TEPoint(121.524826, 25.076022, 500);
path[1] = new TGOS.TEPoint(121.624826, 25.076022, 500);
var lineStr = new TGOS.TELineString(path);
var testline = new TGOS.TELine(tg3dEarth,lineStr,{
strokeWeight:1000,
strokeColor:'#ff0000',
AltitudeMode : TGOS.TEAltitudeModeType.RelativeToGround,
//設TEAltitudeModeType,可以有RelativeToGround, Absolute, ClampToGround 3種
Extrude: ture //是否拔高
});
}