This commit is contained in:
40
node_modules/ol/format/IGC.d.ts
generated
vendored
Normal file
40
node_modules/ol/format/IGC.d.ts
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
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
|
||||
Reference in New Issue
Block a user