圆由Circle类定义,开发者可以通过CircleOptions类设置圆心位置、半径(米)、边框以及填充颜色。
示例代码如下:
// 带有描边的圆let stroke:Stroke = new Stroke({strokeWidth: 12,color: '#f00',strokeStyle: SysEnum.StrokeStyle.SQUARE});this.circle = new Circle({center: new LatLng(39.915935, 116.402119),fillcolor: 'rgba(200, 120, 56, 0.5)',radius: 6000,stroke: stroke});this.circle.setCenter(new LatLng(39.916935, 116.372119));this.circle.setFillcolor('#0ff');this.mapController?.addOverlay(this.circle);
上一篇
下一篇
本篇文章对您是否有帮助?