From 66e9e46458712640102ddcdcc284d42d02d55a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Z=C3=B6hner?= Date: Thu, 29 Sep 2016 17:52:14 +0200 Subject: [PATCH] feat(googlemaps): support bounds in Geocoder (#599) --- src/plugins/googlemaps.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index 34a5c350e..6437c64a2 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -900,6 +900,7 @@ export class GoogleMapsLatLng { */ export interface GeocoderRequest { address?: string; + bounds?: GoogleMapsLatLng[]; position?: { lat: number; lng: number }; } /**