From 0c85dc3d186c4a9955a9c240a7ea5eefdba76d0e Mon Sep 17 00:00:00 2001 From: FalloutPL Date: Fri, 26 Jun 2015 16:22:48 +0200 Subject: [PATCH] Update google.maps.d.ts Missing *overview_polyline* in DirectionsRoute as defined in: https://developers.google.com/maps/documentation/javascript/directions --- googlemaps/google.maps.d.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index 9fa61ddab1..39b85fd239 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -971,12 +971,13 @@ declare module google.maps { } export interface DirectionsRoute { + legs: DirectionsLeg[]; + waypoint_order: number[]; + overview_path: LatLng[]; + overview_polyline: string; bounds: LatLngBounds; copyrights: string; - legs: DirectionsLeg[]; - overview_path: LatLng[]; warnings: string[]; - waypoint_order: number[]; } export interface DirectionsLeg {