Skip to content

Commit 0da83e8

Browse files
committed
feat(google-maps): Expose the underlying Google Maps objects.
Fixes variable name that reverted due to merge.
1 parent c842628 commit 0da83e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/google-maps/google-map/google-map.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
254254

255255
ngOnChanges() {
256256
this._setSize();
257-
if (this._googleMap && this.mapTypeId) {
258-
this._googleMap.setMapTypeId(this.mapTypeId);
257+
if (this.googleMap && this.mapTypeId) {
258+
this.googleMap.setMapTypeId(this.mapTypeId);
259259
}
260260
}
261261

0 commit comments

Comments
 (0)