Class: MapDataIntegrityRTRController
Controls the map's projected target, orientation mode, and player airplane icon based on heading and GPS signal validity.
Hierarchy
MapSystemController
<MapDataIntegrityRTRControllerModules
,any
,any
,MapDataIntegrityRTRControllerContext
>↳
MapDataIntegrityRTRController
Constructors
constructor
• new MapDataIntegrityRTRController(context
, airplaneIconSrc?
, airplaneIconAnchor?
, normalIconSrc?
, normalIconAnchor?
, noHeadingIconSrc?
, noHeadingIconAnchor?
): MapDataIntegrityRTRController
Constructor.
Parameters
Name | Type | Description |
---|---|---|
context | MapSystemContext <MapDataIntegrityRTRControllerModules , any , any , MapDataIntegrityRTRControllerContext > | This controller's map context. |
airplaneIconSrc? | MutableSubscribable <string , string > | A mutable subscribable which controls the player airplane icon's image source URI. Required for this controller to change the player airplane icon. |
airplaneIconAnchor? | MutableSubscribable <Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >>, Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >>> | A mutable subscribable which controls the anchor point of the player airplane icon. Required for this controller to change the player airplane icon. |
normalIconSrc? | Subscribable <string > | A subscribable which provides the URI of the normal player airplane icon's image source. Required for this controller to change the player airplane icon. |
normalIconAnchor? | Subscribable <Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >>> | A subscribable which provides the anchor point of the normal player airplane icon, as [x, y] , where each component is relative to the width or height of the icon. Required for this controller to change the player airplane icon. |
noHeadingIconSrc? | Subscribable <string > | A subscribable which provides the URI of the no-heading player airplane icon's image source. Required for this controller to change the player airplane icon. |
noHeadingIconAnchor? | Subscribable <Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >>> | A subscribable which provides the anchor point of the no-heading player airplane icon, as [x, y] , where each component is relative to the width or height of the icon. Required for this controller to change the player airplane icon. |
Returns
Overrides
MapSystemController\<MapDataIntegrityRTRControllerModules, any, any, MapDataIntegrityRTRControllerContext\>.constructor
Defined in
src/garminsdk/components/map/controllers/MapDataIntegrityRTRController.ts:106
Properties
context
• Protected
Readonly
context: MapSystemContext
<MapDataIntegrityRTRControllerModules
, any
, any
, MapDataIntegrityRTRControllerContext
>
Inherited from
MapSystemController.context
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:24
Accessors
isAlive
• get
isAlive(): boolean
Whether this controller is alive.
Returns
boolean
Inherited from
MapSystemController.isAlive
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:20
Methods
destroy
▸ destroy(): void
Returns
void
Inherit Doc
Overrides
MapSystemController.destroy
Defined in
src/garminsdk/components/map/controllers/MapDataIntegrityRTRController.ts:223
onAfterMapRender
▸ onAfterMapRender(): void
Returns
void
Inherit Doc
Overrides
MapSystemController.onAfterMapRender
Defined in
src/garminsdk/components/map/controllers/MapDataIntegrityRTRController.ts:119
onAfterUpdated
▸ onAfterUpdated(time
, elapsed
): void
This method is called immediately after this controller's map updates its layers.
Parameters
Name | Type | Description |
---|---|---|
time | number | The current time, as a Javascript timestamp. |
elapsed | number | The elapsed time, in milliseconds, since the last update. |
Returns
void
Inherited from
MapSystemController.onAfterUpdated
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:78
onBeforeUpdated
▸ onBeforeUpdated(time
, elapsed
): void
This method is called immediately before this controller's map updates its layers.
Parameters
Name | Type | Description |
---|---|---|
time | number | The current time, as a Javascript timestamp. |
elapsed | number | The elapsed time, in milliseconds, since the last update. |
Returns
void
Inherited from
MapSystemController.onBeforeUpdated
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:68
onDeadZoneChanged
▸ onDeadZoneChanged(deadZone
): void
This method is called when the dead zone of this controller's map changes.
Parameters
Name | Type | Description |
---|---|---|
deadZone | Readonly <Omit <Float64Array , "set" | "sort" | "copyWithin" >> | The map's new dead zone. |
Returns
void
Inherited from
MapSystemController.onDeadZoneChanged
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:48
onMapDestroyed
▸ onMapDestroyed(): void
Returns
void
Inherit Doc
Overrides
MapSystemController.onMapDestroyed
Defined in
src/garminsdk/components/map/controllers/MapDataIntegrityRTRController.ts:218
onMapProjectionChanged
▸ onMapProjectionChanged(mapProjection
, changeFlags
): void
This method is called when the projection of this controller's map changes.
Parameters
Name | Type | Description |
---|---|---|
mapProjection | MapProjection | The map projection. |
changeFlags | number | Bit flags describing the type of change. |
Returns
void
Inherited from
MapSystemController.onMapProjectionChanged
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:58
onSleep
▸ onSleep(): void
This method is called when this controller's map is put to sleep.
Returns
void
Inherited from
MapSystemController.onSleep
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:92
onWake
▸ onWake(): void
This method is called when this controller's map is awakened.
Returns
void
Inherited from
MapSystemController.onWake
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:85