Class: MapRunwayOutlineWaypoint
A waypoint for a map runway outline.
Hierarchy
AbstractWaypoint
↳
MapRunwayOutlineWaypoint
Constructors
constructor
• new MapRunwayOutlineWaypoint(airport
, runway
): MapRunwayOutlineWaypoint
Constructor.
Parameters
Name | Type | Description |
---|---|---|
airport | AirportFacility | The parent airport of the runway associated with this waypoint. |
runway | AirportRunway | The runway associated with this waypoint. |
Returns
Overrides
AbstractWaypoint.constructor
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:28
Properties
primaryNumber
• Readonly
primaryNumber: number
The primary runway number of this waypoint's associated runway.
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:18
runway
• Readonly
runway: AirportRunway
The runway associated with this waypoint.
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:28
secondaryNumber
• Readonly
secondaryNumber: undefined
| number
The secondary runway number of this waypoint's associated runway, or undefined
if there is no secondary runway.
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:21
surfaceCategory
• Readonly
surfaceCategory: RunwaySurfaceCategory
The surface category of this waypoint's associated runway.
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:15
Accessors
location
• get
location(): Subscribable
<GeoPointInterface
>
Returns
Subscribable
<GeoPointInterface
>
Inherit Doc
Overrides
AbstractWaypoint.location
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:45
type
• get
type(): string
Returns
string
Inherit Doc
Overrides
AbstractWaypoint.type
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:35
uid
• get
uid(): string
Returns
string
Inherit Doc
Overrides
AbstractWaypoint.uid
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:40
Methods
equals
▸ equals(other
): boolean
Parameters
Name | Type |
---|---|
other | Waypoint |
Returns
boolean
Inherited from
AbstractWaypoint.equals
Defined in
src/sdk/navigation/Waypoint.ts:57
getUid
▸ getUid(airport
, runway
): string
Gets the unique ID for a MapRunwayLabelWaypoint associated with a given airport and runway.
Parameters
Name | Type | Description |
---|---|---|
airport | AirportFacility | The parent airport of the runway associated with the waypoint. |
runway | AirportRunway | The runway associated with the waypoint. |
Returns
string
The unique ID for the waypoint associated with the specified airport and runway.
Defined in
src/garminsdk/components/map/MapRunwayOutlineWaypoint.ts:55