UNPKG

@stadiamaps/api

Version:
45 lines 1.6 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 MatrixWaypoint */ export interface MatrixWaypoint { /** * The latitude of a point in the shape. * @type {number} * @memberof MatrixWaypoint */ lat: number; /** * The longitude of a point in the shape. * @type {number} * @memberof MatrixWaypoint */ lon: number; /** * The cutoff (in meters) at which we will assume the input is too far away from civilisation to be worth correlating to the nearest graph elements. The default is 35 km. * @type {number} * @memberof MatrixWaypoint */ searchCutoff?: number; } /** * Check if a given object implements the MatrixWaypoint interface. */ export declare function instanceOfMatrixWaypoint(value: object): value is MatrixWaypoint; export declare function MatrixWaypointFromJSON(json: any): MatrixWaypoint; export declare function MatrixWaypointFromJSONTyped(json: any, ignoreDiscriminator: boolean): MatrixWaypoint; export declare function MatrixWaypointToJSON(json: any): MatrixWaypoint; export declare function MatrixWaypointToJSONTyped(value?: MatrixWaypoint | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MatrixWaypoint.d.ts.map