how to call an event in for fetching the latlng?

<gmp-map [center]="center" [scrollwheel]="true" [zoom]="zoom" map-id="roadmap" style="height:400px;width:100%;" Type="map"><gmp-advanced-marker *ngFor="let marker of markers"[position]="marker.position"[title]="marker.title"[label]="marker.label"[options]="marker.options"></gmp-advanced-marker> </gmp-map>
<google-map class="px-0" height="300px"   width="100%"[center]="center"[options]="options"[latitude]="lat"[longitude]="lng"[scrollwheel]="true"(mapClick)="onMapClick($event)"[zoom]="zoom"language="en"><map-marker*ngFor="let marker of markers"[position]="marker.position"[options]="marker.options"></map-marker><label class="current-location-btn" (click)="getCurrentLocation()">{{ "Locate Me" | language | async }}</label></google-map>

how to use mapclick event in gmp-map i tried the same method but not working

i want to call an event in gmp-map like i call in google-map i metioned above