使用 Agm mps,我想在地图上获取经纬度点击 angular 10

Using Agm mps and i want to get the lat lng on map click in angular 10

这是我的代码,但它不起作用。当我点击地图时它显示错误:无法读取 属性 'lat' of undefined

 <agm-map
          style="height: 700px"
          [latitude]="lat"
          [longitude]="lng"
          [zoom]="zoom"
          (mapClick)="placeMarker($event)"
        >

Ts file


placeMarker($event) {
    console.log($event.coords.lat);
    console.log($event.coords.lng);
  }```

请参考这个例子,

https://www.freakyjolly.com/angular-google-maps-using-agm-core/#.X3L25nUzY5k

有一个很好的例子可以理解关于 AGM 也可以参考下面的例子

https://stackblitz.com/edit/angular-google-maps-demo?file=app%2Fapp.component.html