通过Ground类,设置四至范围、纹理以及透明度,支持在底图上叠加地面覆盖物(自定义图片)。
示例代码:
// 添加地面覆盖物const image:ImageEntity = new ImageEntity('rawfile://ground.png');this.ground = new Ground({image: image,bounds: [new LatLng(35, 100), new LatLng(45, 120)],transparency: 0.8});this.ground.addEventListener(OverlayEvent.CLICK, () => {this.ground?.setBound(new LatLng(40, 100), new LatLng(50, 120));promptAction.showToast({message: '点击贴地覆盖物',duration: 2000,});});this.map.addOverlay(this.ground);
上一篇
下一篇
本篇文章对您是否有帮助?