@fboes/aerofly-custom-missions
Version:
Builder for Aerofly FS4 Custom Missions Files
41 lines (40 loc) • 1.36 kB
TypeScript
/**
* @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);
toString(): string;
}
//# sourceMappingURL=AeroflyMissionTargetPlane.d.ts.map