当它改变时,我想得到一个圆的边界。从这里https://angular-maps.com/api-docs/agm-core/directives/AgmCircle.html可以看到它有一个“ getBounds”方法,如何从我的打字稿文件中访问它来记录此数据?目前,我的html circle组件如下所示:
htonl
我希望具有这样的功能:
<agm-circle [latitude]="lat + 0.3" [longitude]="lng"
[radius]="10000"
[fillColor]="'blue'"
[circleDraggable]="true"
[editable]="true"
(dragEnd)="test($event)"
>
</agm-circle>
答案 0 :(得分:0)
只需将其作为ViewChild
添加到您的组件中
@ViewChild(AgmCircle) child;
test(m) {
console.log(this.child.getBounds())
}