@veeroute/lss-routing-angular
Version:
OpenAPI client for @veeroute/lss-routing-angular
29 lines (28 loc) • 1.21 kB
TypeScript
/**
* VRt.Routing [RT]
*
* The version of the OpenAPI document: 7.16.2673
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { RoutingMatrixWaypointRouting } from './routingMatrixWaypoint';
/**
* Routing matrix. Contains durations and distances between points.
*/
export interface RoutingMatrixRouting {
[key: string]: any | any;
/**
* Array of geographical points with distances and times calculated between them.
*/
waypoints: Array<RoutingMatrixWaypointRouting>;
/**
* 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.
*/
distances: Array<Array<number>>;
/**
* Array of route durations between two neighbors locations, in seconds. 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.
*/
durations: Array<Array<number>>;
}