Skip to main content

Type Alias: GarminMapBuilderActiveFlightPlanOptions

GarminMapBuilderActiveFlightPlanOptions = object

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:118

Options for the display of the active flight plan.

Properties

drawEntirePlan

drawEntirePlan: boolean | Subscribable<boolean>

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:126

Whether the entire primary flight plan should always be drawn.


optional lnavIndex: number | Subscribable<number>

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:120

The index of the LNAV from which to source data. Defaults to 0.


pathRendererFactory()

pathRendererFactory: (context) => MapFlightPathPlanRenderer

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:142

A function that creates a flight path renderer to use to draw the flight plan.

Parameters

ParameterTypeDescription
contextMapSystemContext<any, any, any, any>The map system context.

Returns

MapFlightPathPlanRenderer

A flight path renderer to use to draw the flight plan.


supportFocus?

optional supportFocus: boolean

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:148

Whether to support flight plan focus on the primary flight plan. If focus is supported, the primary flight plan will be drawn when it is focused, regardless of whether it is active. Defaults to false.


vnavIndex?

optional vnavIndex: number | Subscribable<number>

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:123

The index of the VNAV from which to source data. Defaults to 0.


waypointRecordManagerFactory()

waypointRecordManagerFactory: (context, waypointRenderer) => MapFlightPlanWaypointRecordManager

Defined in: src/garminsdk/components/map/GarminMapBuilder.tsx:135

A function that creates a flight plan waypoint record manager to use to manage the waypoints to draw for the flight plan.

Parameters

ParameterTypeDescription
contextMapSystemContext<any, any, any, any>The map system context.
waypointRendererMapWaypointRendererThe waypoint renderer used to draw the flight plan waypoints.

Returns

MapFlightPlanWaypointRecordManager

A flight plan waypoint record manager to use to manage the waypoints to draw for the flight plan.