Class: ActiveWaypointIcon
An active map flightplan waypoint icon that can be set to flash for the WT21.
Hierarchy
MapWaypointImageIcon
<Waypoint
>↳
ActiveWaypointIcon
Constructors
constructor
• new ActiveWaypointIcon(waypoint
, priority
, img
, size
, options?
): ActiveWaypointIcon
Constructor.
Parameters
Name | Type | Description |
---|---|---|
waypoint | Waypoint | The waypoint associated with this icon. |
priority | number | Subscribable <number > | The render priority of this icon. Icons with higher priorities should be rendered above those with lower priorities. |
img | HTMLImageElement | This icon's image. |
size | Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >> | Subscribable <Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >>> | The size of this icon, as [width, height] in pixels, or a subscribable which provides it. |
options? | AbstractMapWaypointIconOptions | Options with which to initialize this icon. |
Returns
Inherited from
MapWaypointImageIcon<Waypoint>.constructor
Defined in
sdk/components/map/MapWaypointIcon.ts:147
Properties
anchor
• Readonly
anchor: Subscribable
<Readonly
<Omit
<Float64Array
, "set"
| "sort"
| "copyWithin"
>>>
The anchor point of this icon, expressed relative to its width and height. [0, 0] is the top-left corner, and [1, 1] is the bottom-right corner.
Inherited from
MapWaypointImageIcon.anchor
Defined in
sdk/components/map/MapWaypointIcon.ts:86
img
• Protected
Readonly
img: HTMLImageElement
This icon's image.
Inherited from
MapWaypointImageIcon.img
Defined in
sdk/components/map/MapWaypointIcon.ts:150
offset
• Readonly
offset: Subscribable
<Readonly
<Omit
<Float64Array
, "set"
| "sort"
| "copyWithin"
>>>
The offset of this icon from the projected position of its associated waypoint, as [x, y]
in pixels.
Inherited from
MapWaypointImageIcon.offset
Defined in
sdk/components/map/MapWaypointIcon.ts:89
priority
• Readonly
priority: Subscribable
<number
>
Inherit Doc
Inherited from
MapWaypointImageIcon.priority
Defined in
sdk/components/map/MapWaypointIcon.ts:77
size
• Readonly
size: Subscribable
<Readonly
<Omit
<Float64Array
, "set"
| "sort"
| "copyWithin"
>>>
The size of this icon, as [width, height]
in pixels.
Inherited from
MapWaypointImageIcon.size
Defined in
sdk/components/map/MapWaypointIcon.ts:80
waypoint
• Readonly
waypoint: Waypoint
The waypoint associated with this icon.
Inherited from
MapWaypointImageIcon.waypoint
Defined in
sdk/components/map/MapWaypointIcon.ts:100
tempVec2
▪ Static
Protected
Readonly
tempVec2: Float64Array
Inherited from
MapWaypointImageIcon.tempVec2
Defined in
sdk/components/map/MapWaypointIcon.ts:74
Methods
draw
▸ draw(context
, mapProjection
): void
Parameters
Name | Type |
---|---|
context | CanvasRenderingContext2D |
mapProjection | MapProjection |
Returns
void
Inherit Doc
Inherited from
MapWaypointImageIcon.draw
Defined in
sdk/components/map/MapWaypointIcon.ts:113
drawIconAt
▸ drawIconAt(context
, mapProjection
, left
, top
): void
Parameters
Name | Type |
---|---|
context | CanvasRenderingContext2D |
mapProjection | MapProjection |
left | number |
top | number |
Returns
void
Inherit Doc
Overrides
MapWaypointImageIcon.drawIconAt
Defined in
workingtitle-instruments-wt21/shared/Map/ActiveWaypoint.ts:18
setDisplayed
▸ setDisplayed(isDisplayed
): void
Sets whether or not the icon is displayed.
Parameters
Name | Type | Description |
---|---|---|
isDisplayed | boolean | Whether or not the icon is displayed. |
Returns
void
Defined in
workingtitle-instruments-wt21/shared/Map/ActiveWaypoint.ts:13