Skip to content

Commit

Permalink
fix(google-maps): incorrect event name
Browse files Browse the repository at this point in the history
Looks like a regression from angular#17845 where the name of the `zoom_changed` even was mistyped.

Fixes angular#18026.
  • Loading branch information
crisbeto committed Dec 22, 2019
1 parent a30094b commit 788223b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google-maps/google-map/google-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
* See
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.zoom_changed
*/
@Output() zoomChanged: Observable<void> = this._eventManager.getLazyEmitter<void>('zoomChanged');
@Output() zoomChanged: Observable<void> = this._eventManager.getLazyEmitter<void>('zoom_changed');

constructor(
private readonly _elementRef: ElementRef,
Expand Down

0 comments on commit 788223b

Please sign in to comment.