UNPKG

@veeroute/lss-universal-angular

Version:

OpenAPI client for @veeroute/lss-universal-angular

29 lines (28 loc) 1.4 kB
/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.23.2926 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { RoutingMatrixWaypointUniversal } from './routingMatrixWaypoint'; /** * Routing matrix. Contains durations and distances between points. */ export interface RoutingMatrixUniversal { [key: string]: any | any; /** * Array of geographical points with distances and times calculated between them. */ waypoints: Array<RoutingMatrixWaypointUniversal>; /** * Routes length between two neighbors locations, in meters. The values in the array are ordered according to the elements order in the `waypoints` parameter. Each matrix row is an array of distances from the desired point to every other point. A negative value (-1) means that it is not possible to drive between the specified locations. */ distances: Array<Array<number>>; /** * An array of route durations between points, in seconds. The values in the array are ordered according to the order of the elements in the `waypoints` parameter. Each row of the matrix is an array of travel times from the desired point to each other point. A negative value (-1) means that it is impossible to travel between the specified points. */ durations: Array<Array<number>>; }