Abstract Class: AbstractMapWaypointIcon<T>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:73
An abstract implementation of MapWaypointIcon which supports an arbitrary anchor point and offset.
Extended by
MapWaypointImageIconMapWaypointSpriteIconMapWaypointHighlightIconMapFixInfoWaypointIconMapAirportIconMapDynamicWaypointImageIcon
Type Parameters
| Type Parameter |
|---|
T extends MapWaypoint |
Implements
Constructors
Constructor
new AbstractMapWaypointIcon<
T>(waypoint,priority,size,options?):AbstractMapWaypointIcon<T>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:99
Constructor.
Parameters
| Parameter | Type | Description |
|---|---|---|
waypoint | T | The waypoint associated with this icon. |
priority | number | Subscribable<number> | The render priority of this icon, or a subscribable which provides it. Icons with higher priorities should be rendered above those with lower priorities. |
size | Readonly<Omit<Float64Array<ArrayBufferLike>, "set" | "sort" | "copyWithin">> | Subscribable<Readonly<Omit<Float64Array<ArrayBufferLike>, "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
AbstractMapWaypointIcon<T>
Properties
anchor
readonlyanchor:Subscribable<Readonly<Omit<Float64Array<ArrayBufferLike>,"set"|"sort"|"copyWithin">>>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:86
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.
offset
readonlyoffset:Subscribable<Readonly<Omit<Float64Array<ArrayBufferLike>,"set"|"sort"|"copyWithin">>>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:89
The offset of this icon from the projected position of its associated waypoint, as [x, y] in pixels.
priority
readonlypriority:Subscribable<number>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:77
The render priority of this icon. Icons with higher priorities will be rendered on top of icons with lower priorities.
Implementation of
size
readonlysize:Subscribable<Readonly<Omit<Float64Array<ArrayBufferLike>,"set"|"sort"|"copyWithin">>>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:80
The size of this icon, as [width, height] in pixels.
waypoint
readonlywaypoint:T
Defined in: src/sdk/components/map/MapWaypointIcon.ts:100
The waypoint associated with this icon.
Implementation of
tempVec2
protectedreadonlystatictempVec2:Float64Array<ArrayBuffer>
Defined in: src/sdk/components/map/MapWaypointIcon.ts:74
Methods
draw()
draw(
context,mapProjection):void
Defined in: src/sdk/components/map/MapWaypointIcon.ts:113
Renders this icon to a canvas.
Parameters
| Parameter | Type | Description |
|---|---|---|
context | CanvasRenderingContext2D | The canvas 2D rendering context to which to render. |
mapProjection | MapProjection | The projection to use for rendering. |
Returns
void
Implementation of
drawIconAt()
abstractprotecteddrawIconAt(context,mapProjection,left,top):void
Defined in: src/sdk/components/map/MapWaypointIcon.ts:131
Draws the icon at the specified position.
Parameters
| Parameter | Type | Description |
|---|---|---|
context | CanvasRenderingContext2D | The canvas rendering context to use. |
mapProjection | MapProjection | The map projection to use. |
left | number | The x-coordinate of the left edge of the icon. |
top | number | The y-coordinate of the top edge of the icon. |
Returns
void