Update google.maps.d.ts

Missing *overview_polyline* in DirectionsRoute as defined in: https://developers.google.com/maps/documentation/javascript/directions
This commit is contained in:
FalloutPL
2015-06-26 16:22:48 +02:00
parent e1182d56cc
commit 0c85dc3d18

View File

@@ -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 {