UNPKG

@stadiamaps/api

Version:
35 lines 1.68 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. */ /** * A model which influences the routing based on the type of travel. The costing model affects parameters ranging from which roads are legally accessible to preferences based on comfort or speed. * See https://valhalla.github.io/valhalla/api/turn-by-turn/api-reference/#costing-models for in-depth descriptions of each costing model. * @export */ export declare const CostingModel: { readonly Auto: "auto"; readonly Bus: "bus"; readonly Taxi: "taxi"; readonly Truck: "truck"; readonly Bicycle: "bicycle"; readonly Bikeshare: "bikeshare"; readonly MotorScooter: "motor_scooter"; readonly Motorcycle: "motorcycle"; readonly Pedestrian: "pedestrian"; readonly LowSpeedVehicle: "low_speed_vehicle"; }; export type CostingModel = (typeof CostingModel)[keyof typeof CostingModel]; export declare function instanceOfCostingModel(value: any): boolean; export declare function CostingModelFromJSON(json: any): CostingModel; export declare function CostingModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CostingModel; export declare function CostingModelToJSON(value?: CostingModel | null): any; export declare function CostingModelToJSONTyped(value: any, ignoreDiscriminator: boolean): CostingModel; //# sourceMappingURL=CostingModel.d.ts.map