From 23fc908eb659181a46f56bf307bc3d0db27e3aaa Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Tue, 13 Sep 2016 06:17:07 -0400 Subject: [PATCH] fix(googlemaps): CameraPosition target can now be LatLngBounds closes #547 --- src/plugins/googlemaps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index 764478b91..f6058527c 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -396,7 +396,7 @@ export interface AnimateCameraOptions { * @private */ export interface CameraPosition { - target?: GoogleMapsLatLng; + target?: GoogleMapsLatLng | GoogleMapsLatLngBounds; zoom?: number; tilt?: number; bearing?: number;