Class: MapDragPanController
Controls the pointer of a map.
Hierarchy
MapSystemController
<MapDragPanControllerModules
>↳
MapDragPanController
Constructors
constructor
• new MapDragPanController(context
): MapDragPanController
Constructor.
Parameters
Name | Type | Description |
---|---|---|
context | MapSystemContext <MapDragPanControllerModules , any , any , any > | This controller's map context. |
Returns
Inherited from
MapSystemController<MapDragPanControllerModules>.constructor
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:30
Properties
context
• Protected
Readonly
context: MapSystemContext
<MapDragPanControllerModules
, any
, any
, any
>
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
Destroys this controller.
Returns
void
Inherited from
MapSystemController.destroy
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:106
drag
▸ drag(dx
, dy
): void
Executes a drag action.
Parameters
Name | Type | Description |
---|---|---|
dx | number | The horizontal displacement of the drag motion, in pixels. |
dy | number | The vertical dispacement of the drag motion, in pixels. |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/Map/Controllers/MapDragPanController.ts:53
onAfterMapRender
▸ onAfterMapRender(ref
): void
This method is called after this controller' map is rendered.
Parameters
Name | Type | Description |
---|---|---|
ref | MapSystemComponent <MapSystemComponentProps <any >> | A reference to the rendered map. |
Returns
void
Inherited from
MapSystemController.onAfterMapRender
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:39
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
This method is called when this controller's map is destroyed.
Returns
void
Inherited from
MapSystemController.onMapDestroyed
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:99
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
setDragPanActive
▸ setDragPanActive(isActive
): void
Activates or deactivates the map pointer.
Parameters
Name | Type | Description |
---|---|---|
isActive | boolean | Whether to activate the map pointer. |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/Map/Controllers/MapDragPanController.ts:24
toggleDragPanActive
▸ toggleDragPanActive(): boolean
Toggles activation of the map pointer.
Returns
boolean
Whether the map pointer is active after the toggle operation.
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/Map/Controllers/MapDragPanController.ts:40