From 8d21f5f2254390e88cc048c9a08aecdb0f1f974b Mon Sep 17 00:00:00 2001 From: Daniel Leal Date: Tue, 27 Sep 2016 15:51:43 +0100 Subject: [PATCH] fix(googlemaps): CameraPosition target can now be GoogleMapsLatLng[] (#587) --- 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 47fd6913..34a5c350 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -358,7 +358,7 @@ export interface AnimateCameraOptions { * @private */ export interface CameraPosition { - target?: GoogleMapsLatLng | GoogleMapsLatLngBounds; + target?: GoogleMapsLatLng | GoogleMapsLatLngBounds | GoogleMapsLatLng[]; zoom?: number; tilt?: number; bearing?: number;