This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.map.addListener('click', | |
// Lambdas to the rescue, it will automatically capture this | |
(e: google.maps.MouseEvent) => { | |
// Run event handler in Angular Zone, so that change detection will work | |
this._ngZone.run(() => | |
this.mapClick.emit(e.latLng)); | |
}); |
OlderNewer