Is anyone familiar with this library ?: https://angular-maps.com/
If possible, someone will help me create a click event on the marker, I tried this:
<sebm-google-map-marker *ngFor="#location of locations" (click)="updateDiv()"
[latitude]="location.lat" [longitude]="location.lng" [label]="location.id">
updateDiv() {
console.log('check');
}
But it doesn't seem to work? What am I doing wrong?
source
share