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.
lnavIndex?
optionallnavIndex: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
| Parameter | Type | Description |
|---|---|---|
context | MapSystemContext<any, any, any, any> | The map system context. |
Returns
A flight path renderer to use to draw the flight plan.
supportFocus?
optionalsupportFocus: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?
optionalvnavIndex: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
| Parameter | Type | Description |
|---|---|---|
context | MapSystemContext<any, any, any, any> | The map system context. |
waypointRenderer | MapWaypointRenderer | The 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.