@fboes/aerofly-custom-missions
Version:
Builder for Aerofly FS4 Custom Missions Files
46 lines (45 loc) • 1.58 kB
TypeScript
import { AeroflyConfigurationNode } from "../node/AeroflyConfigurationNode.js";
/**
* @class
* A target plane which the aircraft needs to cross.
*/
export declare class AeroflyMissionTargetPlane {
/**
* @property {number} longitude easting, using the World Geodetic
* System 1984 (WGS 84) [WGS84] datum, with longitude and latitude units
* of decimal degrees; [-180,180]
*/
longitude: number;
/**
* @property {number} latitude northing, using the World Geodetic
* System 1984 (WGS 84) [WGS84] datum, with longitude and latitude units
* of decimal degrees; -90..90
*/
latitude: number;
/**
* @property {number} dir in degree
*/
dir: number;
/**
* @property {string} name of property
*/
name: string;
/**
*
* @param {number} longitude easting, using the World Geodetic
* System 1984 (WGS 84) [WGS84] datum, with longitude and latitude units
* of decimal degrees; [-180,180]
* @param {number}latitude northing, using the World Geodetic
* System 1984 (WGS 84) [WGS84] datum, with longitude and latitude units
* of decimal degrees; -90..90
* @param {number} dir in degree
* @param {string} name of property
*/
constructor(longitude: number, latitude: number, dir: number, name?: string);
getElement(): AeroflyConfigurationNode;
/**
* @returns {string} to use in Aerofly FS4's `custom_missions_user.tmc`
*/
toString(): string;
}
//# sourceMappingURL=AeroflyMissionTargetPlane.d.ts.map