來源的圖層 。
是否顯示圖素。
取得圖素參數。
圖素參數。
取得圖素類型。
圖素類型。
設定滑鼠左鍵點擊事件,設成null可取消。
滑鼠左鍵按一下實體時要執行的函式。
let metaData = "meta"
entity.setOnClickListener((pos, attr, SN, name) => {
console.log(metaData);
});
更新圖素。
修改的參數,可部份更新。
const triA = [
new GeoPoint(120.18, 22.99, 70),
new GeoPoint(120.18, 22.99, 60),
new GeoPoint(120.19, 22.99, 60)
];
const triB = [
new GeoPoint(120.19, 22.99, 60),
new GeoPoint(120.19, 22.99, 70),
new GeoPoint(120.18, 22.99, 70)
];
const param = {
geo: [triA, triB],
drawLines: false,
drawColor: new ov.Color("#FF0000"),
fillColor: new ov.Color("#EBEBEB"),
texture: "rock.jpg";
fillOpacity: 1,
drawOpacity: 1,
epsg: 4326,
triangleTp: [
[new GeoPoint(0, 0), new GeoPoint(0, 1), new GeoPoint(1, 1)],
[new GeoPoint(1, 1), new GeoPoint(1, 0), new GeoPoint(0, 0)]
];
};
const triangleSet = customLayer.addTriangleSetEntity(param);
triangleSet.update({ drawColor: new ov.Color("#00FF00"), });
使用指令參數更新圖素。
指令參數。
Generated using TypeDoc
自畫三角網格圖素