Class: MapRotationController
Controls the rotation of a map based on the behavior defined in MapRotationModule.
Hierarchy
MapSystemController
<MapRotationControllerModules
,any
,any
,MapRotationControllerContext
>↳
MapRotationController
Constructors
constructor
• new MapRotationController(context
): MapRotationController
Constructor.
Parameters
Name | Type | Description |
---|---|---|
context | MapSystemContext <MapRotationControllerModules , any , any , MapRotationControllerContext > | This controller's map context. |
Returns
Inherited from
MapSystemController.constructor
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:30
Properties
context
• Protected
Readonly
context: MapSystemContext
<MapRotationControllerModules
, any
, any
, MapRotationControllerContext
>
Inherited from
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
Overrides
Defined in
src/sdk/components/mapsystem/controllers/MapRotationController.ts:107
onAfterMapRender
▸ onAfterMapRender(): void
This method is called after this controller' map is rendered.
Returns
void
Overrides
MapSystemController.onAfterMapRender
Defined in
src/sdk/components/mapsystem/controllers/MapRotationController.ts:82
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(): void
This method is called immediately before this controller's map updates its layers.
Returns
void
Overrides
MapSystemController.onBeforeUpdated
Defined in
src/sdk/components/mapsystem/controllers/MapRotationController.ts:91
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
Overrides
MapSystemController.onMapDestroyed
Defined in
src/sdk/components/mapsystem/controllers/MapRotationController.ts:100
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
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
Defined in
src/sdk/components/mapsystem/MapSystemController.ts:85