UNPKG

@stadiamaps/api

Version:
51 lines 1.53 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.1.2 * 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 OsrmWaypoint */ export interface OsrmWaypoint { /** * * @type {string} * @memberof OsrmWaypoint */ name?: string; /** * A (longitude, latitude) coordinate pair. * @type {Array<number>} * @memberof OsrmWaypoint */ location: Array<number>; /** * The distance of the snapped point from the original location. * @type {number} * @memberof OsrmWaypoint */ distance: number; /** * * @type {string} * @memberof OsrmWaypoint */ hint?: string; } /** * Check if a given object implements the OsrmWaypoint interface. */ export declare function instanceOfOsrmWaypoint(value: object): value is OsrmWaypoint; export declare function OsrmWaypointFromJSON(json: any): OsrmWaypoint; export declare function OsrmWaypointFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsrmWaypoint; export declare function OsrmWaypointToJSON(json: any): OsrmWaypoint; export declare function OsrmWaypointToJSONTyped(value?: OsrmWaypoint | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OsrmWaypoint.d.ts.map