UNPKG

@stadiamaps/api

Version:
57 lines 2.34 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 MapMatchTraceOptions */ export interface MapMatchTraceOptions { /** * The search radius, in meters, when trying to match each trace point. * @type {number} * @memberof MapMatchTraceOptions */ searchRadius?: number; /** * The accuracy of the GPS, in meters. * @type {number} * @memberof MapMatchTraceOptions */ gpsAccuracy?: number; /** * The breaking distance, in meters, between trace points. * @type {number} * @memberof MapMatchTraceOptions */ breakageDistance?: number; /** * The interpolation distance, in meters, beyond which trace points are merged together. * @type {number} * @memberof MapMatchTraceOptions */ interpolationDistance?: number; /** * Penalizes turns from one road segment to next. For a pedestrian trace, you may see a back-and-forth motion along the streets of your path with the default settings. Try increasing the turn penalty factor to 500 to reduce jitter in the output. Note that if GPS accuracy is already good, increasing this above the default will usually negatively affect the quality of map matching. * @type {number} * @memberof MapMatchTraceOptions */ turnPenaltyFactor?: number; } /** * Check if a given object implements the MapMatchTraceOptions interface. */ export declare function instanceOfMapMatchTraceOptions(value: object): value is MapMatchTraceOptions; export declare function MapMatchTraceOptionsFromJSON(json: any): MapMatchTraceOptions; export declare function MapMatchTraceOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapMatchTraceOptions; export declare function MapMatchTraceOptionsToJSON(json: any): MapMatchTraceOptions; export declare function MapMatchTraceOptionsToJSONTyped(value?: MapMatchTraceOptions | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MapMatchTraceOptions.d.ts.map