Skip to main content

Interface: MapAltitudeArcLayerProps

Component props for MapAltitudeArcLayer.

Hierarchy

Properties

altitudeDeviationThreshold

altitudeDeviationThreshold: NumberUnitInterface<Distance, Unit<Distance>> | Subscribable<NumberUnitInterface<Distance, Unit<Distance>>>

The minimum magnitude of the airplane's vertical deviation from the selected altitude required to display the arc.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:58


arcAngularWidth

Optional arcAngularWidth: number

The angular width of the arc, in degrees. Defaults to 60 degrees.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:61


arcRadius

Optional arcRadius: number

The radius of the arc, in pixels. Defaults to 64 pixels.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:64


children

Optional children: DisplayChildren[]

The children of the display component.

Inherited from

MapLayerProps.children

Defined in

src/sdk/components/FSComponent.ts:122


class

Optional class: string | SubscribableSet<string>

The CSS class(es) to apply to the root of this layer.

Inherited from

MapLayerProps.class

Defined in

src/sdk/components/map/MapLayer.ts:25


mapProjection

mapProjection: MapProjection

A map projection model.

Inherited from

MapLayerProps.mapProjection

Defined in

src/sdk/components/map/MapLayer.ts:15


model

model: MapModel<MapAltitudeArcLayerModules>

A map model.

Inherited from

MapLayerProps.model

Defined in

src/sdk/components/map/MapLayer.ts:12


outlineLineCap

Optional outlineLineCap: "round" | "butt" | "square"

The line cap of the arc outline. Defaults to 'butt'.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:82


outlineStyle

Optional outlineStyle: string

The style of the arc outline. Defaults to '#505050'.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:79


outlineWidth

Optional outlineWidth: number

The width of the arc outline, in pixels. Defaults to 1 pixel.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:76


ref

Optional ref: NodeReference<any>

A reference to the display component.

Inherited from

MapLayerProps.ref

Defined in

src/sdk/components/FSComponent.ts:125


renderMethod

renderMethod: "canvas" | "svg"

The method with which to render the arc: canvas or SVG. The SVG rendering method can use significantly less texture memory than canvas depending on the size of the arc relative to the parent map. However, arcs rendered using SVG may not be properly occluded by clip-path or border-radius styles set on the parent map.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:49


strokeLineCap

Optional strokeLineCap: "round" | "butt" | "square"

The line cap of the arc stroke. Defaults to 'butt'.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:73


strokeStyle

Optional strokeStyle: string

The style of the arc stroke. Defaults to 'cyan'.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:70


strokeWidth

Optional strokeWidth: number

The width of the arc stroke, in pixels. Defaults to 2 pixels.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:67


updateFreq

Optional updateFreq: Subscribable<number>

A subscribable which provides the maximum update frequency of the layer, in hertz. Note that the actual update frequency will not exceed the update frequency of the layer's parent map. If not defined, the frequency will default to that of the layer's parent map.

Inherited from

MapLayerProps.updateFreq

Defined in

src/sdk/components/map/MapLayer.ts:22


verticalSpeedPrecision

verticalSpeedPrecision: NumberUnitInterface<Speed, Unit<Speed>> | Subscribable<NumberUnitInterface<Speed, Unit<Speed>>>

The precision to apply to the airplane's vertical speed when calculating the position of the arc.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:52


verticalSpeedThreshold

verticalSpeedThreshold: NumberUnitInterface<Speed, Unit<Speed>> | Subscribable<NumberUnitInterface<Speed, Unit<Speed>>>

The minimum magnitude of the airplane's vertical speed required to display the arc.

Defined in

src/sdk/components/map/layers/MapAltitudeArcLayer.tsx:55