All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
40 lines
1020 B
TypeScript
40 lines
1020 B
TypeScript
export default IGC;
|
|
export type Options = {
|
|
/**
|
|
* Altitude mode. Possible
|
|
* values are `'barometric'`, `'gps'`, and `'none'`.
|
|
*/
|
|
altitudeMode?: string | undefined;
|
|
};
|
|
/**
|
|
* @typedef {Object} Options
|
|
* @property {IGCZ|string} [altitudeMode='none'] Altitude mode. Possible
|
|
* values are `'barometric'`, `'gps'`, and `'none'`.
|
|
*/
|
|
/**
|
|
* @classdesc
|
|
* Feature format for `*.igc` flight recording files.
|
|
*
|
|
* As IGC sources contain a single feature,
|
|
* {@link module:ol/format/IGC~IGC#readFeatures} will return the feature in an
|
|
* array
|
|
*
|
|
* @api
|
|
*/
|
|
declare class IGC extends TextFeature {
|
|
/**
|
|
* @param {Options} [opt_options] Options.
|
|
*/
|
|
constructor(opt_options?: Options | undefined);
|
|
/**
|
|
* @type {import("../proj/Projection.js").default}
|
|
*/
|
|
dataProjection: import("../proj/Projection.js").default;
|
|
/**
|
|
* @private
|
|
* @type {IGCZ}
|
|
*/
|
|
private altitudeMode_;
|
|
}
|
|
import TextFeature from "./TextFeature.js";
|
|
//# sourceMappingURL=IGC.d.ts.map
|