Class: BearingDisplay
Defined in: src/garminsdk/components/common/BearingDisplay.tsx:44
Displays a bearing value.
Extends
AbstractNumberUnitDisplay
<NavAngleUnitFamily
,BearingDisplayProps
>
Constructors
Constructor
new BearingDisplay(
props
):BearingDisplay
Defined in: src/sdk/components/FSComponent.ts:73
Creates an instance of a DisplayComponent.
Parameters
Parameter | Type | Description |
---|---|---|
props | BearingDisplayProps | The propertis of the component. |
Returns
BearingDisplay
Inherited from
AbstractNumberUnitDisplay<NavAngleUnitFamily, BearingDisplayProps>.constructor
Properties
context?
optional
context: [] =undefined
Defined in: src/sdk/components/FSComponent.ts:64
The context on this component, if any.
Inherited from
AbstractNumberUnitDisplay.context
contextType?
readonly
optional
contextType: readonly [] =undefined
Defined in: src/sdk/components/FSComponent.ts:67
The type of context for this component, if any.
Inherited from
AbstractNumberUnitDisplay.contextType
displayUnit
protected
readonly
displayUnit:Subscribable
<null
|Unit
<"navangle"
>>
Defined in: src/sdk/components/common/AbstractNumberUnitDisplay.tsx:31
A subscribable which provides the unit type in which to display the value.
Inherited from
AbstractNumberUnitDisplay.displayUnit
props
props:
BearingDisplayProps
&ComponentProps
Defined in: src/sdk/components/FSComponent.ts:61
The properties of the component.
Inherited from
AbstractNumberUnitDisplay.props
value
protected
readonly
value:Subscribable
<NumberUnitInterface
<"navangle"
,Unit
<"navangle"
>>>
Defined in: src/sdk/components/common/AbstractNumberUnitDisplay.tsx:26
A subscribable which provides the value to display.
Inherited from
AbstractNumberUnitDisplay.value
Methods
destroy()
destroy():
void
Defined in: src/sdk/components/common/AbstractNumberUnitDisplay.tsx:57
Returns
void
Inherit Doc
Inherited from
AbstractNumberUnitDisplay.destroy
getContext()
protected
getContext(context
):never
Defined in: src/sdk/components/FSComponent.ts:106
Gets a context data subscription from the context collection.
Parameters
Parameter | Type | Description |
---|---|---|
context | never | The context to get the subscription for. |
Returns
never
The requested context.
Throws
An error if no data for the specified context type could be found.
Inherited from
AbstractNumberUnitDisplay.getContext
onAfterRender()
onAfterRender():
void
Defined in: src/sdk/components/common/AbstractNumberUnitDisplay.tsx:39
Returns
void
Inherit Doc
Inherited from
AbstractNumberUnitDisplay.onAfterRender
onBeforeRender()
onBeforeRender():
void
Defined in: src/sdk/components/FSComponent.ts:80
A callback that is called before the component is rendered.
Returns
void
Inherited from
AbstractNumberUnitDisplay.onBeforeRender
onDisplayUnitChanged()
protected
onDisplayUnitChanged(displayUnit
):void
Defined in: src/garminsdk/components/common/BearingDisplay.tsx:85
Parameters
Parameter | Type |
---|---|
displayUnit | null | Unit <"navangle" > |
Returns
void
Inherit Doc
Overrides
AbstractNumberUnitDisplay.onDisplayUnitChanged
onValueChanged()
protected
onValueChanged(value
):void
Defined in: src/garminsdk/components/common/BearingDisplay.tsx:68
Parameters
Parameter | Type |
---|---|
value | NumberUnitInterface <"navangle" > |
Returns
void
Inherit Doc
Overrides
AbstractNumberUnitDisplay.onValueChanged
render()
render():
VNode
Defined in: src/garminsdk/components/common/BearingDisplay.tsx:144
Returns
VNode
Inherit Doc
Overrides
AbstractNumberUnitDisplay.render
DEFAULT_UNIT_FORMATTER()
readonly
static
DEFAULT_UNIT_FORMATTER(out
,unit
):void
Defined in: src/garminsdk/components/common/BearingDisplay.tsx:51
A function which formats units to default text for BearingDisplay.
Parameters
Parameter | Type | Description |
---|---|---|
out | [string , string ] | The 2-tuple to which to write the formatted text, as [bigText, smallText] . |
unit | NavAngleUnit | The unit to format. |
Returns
void