Type Alias: FlightPathLegPatternStyleSelector()<Args>
FlightPathLegPatternStyleSelector<
Args> = (vector,isIngress,isEgress,leg,projection,out, ...args) =>FlightPathLegPatternStyle
Defined in: src/sdk/components/map/FlightPathLegPatternRenderer.ts:30
A function which selects a pattern style for a rendered vector.
Type Parameters
| Type Parameter |
|---|
Args extends any[] |
Parameters
| Parameter | Type | Description |
|---|---|---|
vector | Readonly<FlightPathVector> | The vector for which to select a style. |
isIngress | boolean | Whether the vector is part of the ingress transition. |
isEgress | boolean | Whether the vector is part of the egress transition. |
leg | LegDefinition | The flight plan leg containing the vector to render. |
projection | GeoProjection | The map projection to use when rendering. |
out | FlightPathLegPatternStyle | The pattern style object to which to write the selected style. |
...args | Args | Additional arguments. |
Returns
The selected pattern style for the vector.