Last active
May 18, 2016 06:33
-
-
Save huguogang/d2805cc19f463ba8c7545cc206c18fed to your computer and use it in GitHub Desktop.
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)); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment