Class: AirwayObject
Defined in: src/sdk/navigation/FacilityLoader.ts:932
An airway.
Constructors
Constructor
new AirwayObject(
name
,type
):AirwayObject
Defined in: src/sdk/navigation/FacilityLoader.ts:941
Builds a Airway
Parameters
Parameter | Type | Description |
---|---|---|
name | string | the name of the new airway. |
type | number | the type of the new airway. |
Returns
AirwayObject
Accessors
name
Get Signature
get name():
string
Defined in: src/sdk/navigation/FacilityLoader.ts:950
Gets the name of the airway
Returns
string
the airway name
type
Get Signature
get type():
number
Defined in: src/sdk/navigation/FacilityLoader.ts:958
Gets the type of the airway
Returns
number
the airway type
waypoints
Get Signature
get waypoints():
IntersectionFacility
[]
Defined in: src/sdk/navigation/FacilityLoader.ts:966
Gets the waypoints of this airway.
Returns
the waypoints of this airway.
Set Signature
set waypoints(
waypoints
):void
Defined in: src/sdk/navigation/FacilityLoader.ts:974
Sets the waypoints of this airway.
Parameters
Parameter | Type | Description |
---|---|---|
waypoints | IntersectionFacility [] | is the array of waypoints. |
Returns
void