UNPKG

@stadiamaps/api

Version:
45 lines 1.54 kB
/** * Stadia Maps Geospatial APIs * The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. * * The version of the OpenAPI document: 10.0.1 * Contact: support@stadiamaps.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface OsrmViaWaypoint */ export interface OsrmViaWaypoint { /** * The distance from the start of the leg, in meters. * @type {number} * @memberof OsrmViaWaypoint */ distanceFromStart: number; /** * The index of the waypoint's location in the route geometry. * @type {number} * @memberof OsrmViaWaypoint */ geometryIndex: number; /** * The index of the associated waypoint. * @type {number} * @memberof OsrmViaWaypoint */ waypointIndex: number; } /** * Check if a given object implements the OsrmViaWaypoint interface. */ export declare function instanceOfOsrmViaWaypoint(value: object): value is OsrmViaWaypoint; export declare function OsrmViaWaypointFromJSON(json: any): OsrmViaWaypoint; export declare function OsrmViaWaypointFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsrmViaWaypoint; export declare function OsrmViaWaypointToJSON(json: any): OsrmViaWaypoint; export declare function OsrmViaWaypointToJSONTyped(value?: OsrmViaWaypoint | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OsrmViaWaypoint.d.ts.map