Skip to content

Commit 79b7901

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

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
@@ -255,8 +255,8 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
255255

256256
ngOnChanges() {
257257
this._setSize();
258-
if (this._googleMap && this.mapTypeId) {
259-
this._googleMap.setMapTypeId(this.mapTypeId);
258+
if (this.googleMap && this.mapTypeId) {
259+
this.googleMap.setMapTypeId(this.mapTypeId);
260260
}
261261
}
262262

0 commit comments

Comments
 (0)