@orbat-mapper/control-measures 0.5.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -222,6 +222,7 @@ code.
222
222
  | <img src="media/polygon.svg" width="96" height="48" alt=""> | `polygon` | Polygon | `990102` |
223
223
  | <img src="media/rectangle.svg" width="96" height="48" alt=""> | `rectangle` | Rectangle | `990103` |
224
224
  | <img src="media/circle.svg" width="96" height="48" alt=""> | `circle` | Circle | `990104` |
225
+ | <img src="media/sector.svg" width="96" height="48" alt=""> | `sector` | Sector | `990105` |
225
226
  | <img src="media/text.svg" width="96" height="48" alt=""> | `text` | Text | `990201` |
226
227
 
227
228
  <!-- /AUTO-GENERATED:measures-table -->
@@ -1,3 +1,4 @@
1
+ import { d as ControlMeasureStyle } from "./patterns-CcQmmOuJ.mjs";
1
2
  import { Feature, FeatureCollection, Geometry, LineString, MultiLineString, MultiPolygon, Point, Polygon, Position } from "geojson";
2
3
 
3
4
  //#region src/internal/api-utils.d.ts
@@ -43,6 +44,12 @@ interface ControlMeasureDrawRule {
43
44
  * end when it needs to provide its own closed guide geometry.
44
45
  */
45
46
  guidePoints?(points: readonly Position[]): Position[];
47
+ /**
48
+ * Snap an actively drawn or reshaped point to the rule's angular contract.
49
+ * TacticalDraw invokes this while Shift is held. Implementations must retain
50
+ * any non-angular dimensions they own (for example, a Sector point's range).
51
+ */
52
+ constrainAngles?(points: readonly Position[], activePointIndex: number): Position[];
46
53
  /**
47
54
  * Number of trailing slots in the canonical control-point array that are
48
55
  * NOT user-clicked spine vertices. For Axis1, this is 1 (the width handle
@@ -212,7 +219,7 @@ declare function normalizeTextAmplifiers(input: TextAmplifiers | undefined): Can
212
219
  //#region src/metadata.d.ts
213
220
  type ControlMeasureGeometryType = Geometry["type"];
214
221
  type ControlMeasureGeometry = "point" | "line" | "area";
215
- declare const DRAW_RULE_IDS: readonly ["Area1", "Area7", "Area8", "Area11", "Area12", "Area15", "Area17", "Area21", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line23", "Line24", "Line26", "Line27", "Line29", "Point1", "Point2", "Point12", "Rectangle"];
222
+ declare const DRAW_RULE_IDS: readonly ["Area1", "Area7", "Area8", "Area11", "Area12", "Area15", "Area17", "Area21", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line23", "Line24", "Line26", "Line27", "Line29", "Point1", "Point2", "Point12", "Point18", "Rectangle", "Sector"];
216
223
  type DrawRuleId = (typeof DRAW_RULE_IDS)[number];
217
224
  declare const PARAMETER_PRESENTATION_TIERS: readonly ["primary", "standard", "advanced"];
218
225
  type ParameterPresentationTier = (typeof PARAMETER_PRESENTATION_TIERS)[number];
@@ -346,6 +353,50 @@ interface ControlMeasurePaintCapability {
346
353
  text: boolean;
347
354
  }
348
355
  //#endregion
356
+ //#region src/portrayal.d.ts
357
+ type LogicalTextStyle = "regular" | "italic" | "light" | "caps";
358
+ /** Logical typography request understood by renderer-neutral text measurers. */
359
+ interface MeasureTextRequest {
360
+ text: string;
361
+ style: LogicalTextStyle;
362
+ sizeCssPixels: number;
363
+ }
364
+ /** Logical text extent in CSS reference pixels. */
365
+ interface MeasuredText {
366
+ widthCssPixels: number;
367
+ heightCssPixels: number;
368
+ }
369
+ /** Renderer-owned portrayal state supplied for one pure render operation. */
370
+ interface ControlMeasureRenderContext {
371
+ /** True-ground metres represented by one CSS reference pixel. */
372
+ groundMetersPerCssPixel?: number;
373
+ /** Clamp band applied to ground-anchored labels before logical measurement. */
374
+ labelSizeClampCssPixels?: {
375
+ min: number;
376
+ max: number;
377
+ };
378
+ /** Synchronous, renderer-neutral logical text measurement capability. */
379
+ measureText?: (request: MeasureTextRequest) => MeasuredText;
380
+ }
381
+ declare const DEFAULT_STROKE_WIDTH_CSS_PIXELS = 2;
382
+ declare const DEFAULT_STROKE_DASH_CSS_PIXELS: readonly number[];
383
+ declare const DEFAULT_LINE_CAP = "round";
384
+ declare const DEFAULT_LINE_JOIN = "round";
385
+ declare const DEFAULT_LABEL_HEIGHT_CSS_PIXELS = 14;
386
+ declare const DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS: {
387
+ readonly min: 8;
388
+ readonly max: 24;
389
+ };
390
+ /** Shared absent-value portrayal defaults; render output remains sparse. */
391
+ declare const DEFAULT_PORTRAYAL: Readonly<{
392
+ symbolColor: "#000000";
393
+ strokeWidthCssPixels: 2;
394
+ strokeDashCssPixels: readonly number[];
395
+ lineCap: "round";
396
+ lineJoin: "round";
397
+ labelHeightCssPixels: 14;
398
+ }>;
399
+ //#endregion
349
400
  //#region src/define.d.ts
350
401
  /**
351
402
  * The loosest `FeatureCollection` a control-measure generator may emit: any
@@ -355,6 +406,13 @@ type AnyFeatureCollection = FeatureCollection<Geometry, Record<string, unknown>
355
406
  /** Read-only instance state that can affect generated geometry. */
356
407
  interface ControlMeasureGeneratorContext {
357
408
  amplifierPlacements?: AmplifierPlacements;
409
+ /** Web Mercator construction metres represented by one CSS reference pixel. */
410
+ constructionMetersPerCssPixel?: number;
411
+ labelSizeClampCssPixels?: {
412
+ min: number;
413
+ max: number;
414
+ };
415
+ measureText?: (request: MeasureTextRequest) => MeasuredText;
358
416
  }
359
417
  /**
360
418
  * A generator's call signature, constrained only by its inputs and output. The
@@ -500,6 +558,7 @@ interface BoundaryOptions {
500
558
  * measure is screen-anchored; required to resolve `echelonSizePixels` and to
501
559
  * lock the T/AS text size to the glyph height.
502
560
  */
561
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
503
562
  metersPerPixel?: number;
504
563
  /**
505
564
  * Number of label groups (echelon + designators), spaced evenly by cumulative
@@ -574,7 +633,7 @@ declare const DEFAULT_BOUNDARY_OPTIONS: BoundaryOptions;
574
633
  * @param textAmplifiers - Normalized text amplifiers (ADR-0027): `T`/`AS` label
575
634
  * unit 1 (left-of-travel side), `T1`/`AS1` label unit 2 (right-of-travel side).
576
635
  */
577
- declare function createBoundary(positions: Position[], options?: BoundaryOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | MultiPolygon | Point>;
636
+ declare function createBoundary(positions: Position[], options?: BoundaryOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | MultiPolygon | Point>;
578
637
  //#endregion
579
638
  //#region src/projection.d.ts
580
639
  type Point2D = [number, number];
@@ -596,6 +655,11 @@ declare const unproject: (x: number, y: number) => Position;
596
655
  * so its ring and this readout agree exactly.
597
656
  */
598
657
  declare const haversineDistance: (a: Position, b: Position) => number;
658
+ /**
659
+ * Initial great-circle bearing from `a` to `b`, in radians clockwise from
660
+ * north (0 = north, π/2 = east).
661
+ */
662
+ declare const sphericalBearing: (a: Position, b: Position) => number;
599
663
  //#endregion
600
664
  //#region src/internal/sketch.d.ts
601
665
  /**
@@ -637,6 +701,7 @@ interface LabelSizeOptions {
637
701
  * Meters-per-pixel at the current view. Stamped by the host when the labels
638
702
  * are screen-anchored; resolves `labelSizePixels` to the projected-meter
639
703
  * height that meter-denominated placement (offsets, gaps, row pitch) needs.
704
+ * @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead.
640
705
  */
641
706
  metersPerPixel?: number;
642
707
  }
@@ -678,7 +743,7 @@ declare const DEFAULT_LIGHT_LINE_OPTIONS: LightLineOptions;
678
743
  * Creates a Light line control measure: a polyline through `positions`
679
744
  * labeled "LL" above the line near each end.
680
745
  */
681
- declare function createLightLine(positions: Position[], options?: LightLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
746
+ declare function createLightLine(positions: Position[], options?: LightLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
682
747
  //#endregion
683
748
  //#region src/generators/cm11-command-control-lines/engineer-work-line.d.ts
684
749
  /** Configuration options for the Engineer work line control measure. */
@@ -709,7 +774,7 @@ declare const DEFAULT_ENGINEER_WORK_LINE_OPTIONS: EngineerWorkLineOptions;
709
774
  * above the line, T1/AS1 below). No center group is emitted when all four
710
775
  * amplifiers are empty.
711
776
  */
712
- declare function createEngineerWorkLine(positions: Position[], options?: EngineerWorkLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
777
+ declare function createEngineerWorkLine(positions: Position[], options?: EngineerWorkLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
713
778
  //#endregion
714
779
  //#region src/generators/cm11-command-control-lines/generic-c2-line.d.ts
715
780
  /** Configuration options for the Generic command and control line. */
@@ -740,70 +805,7 @@ declare const DEFAULT_GENERIC_C2_LINE_OPTIONS: GenericC2LineOptions;
740
805
  * (inset from the tip, anchored toward the line's interior), one at
741
806
  * `base + perp·offset` and the other at `base − perp·offset`.
742
807
  */
743
- declare function createGenericC2Line(positions: Position[], options?: GenericC2LineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
744
- //#endregion
745
- //#region src/style.d.ts
746
- /**
747
- * Framework-agnostic style hints attached to a `ControlMeasure`.
748
- *
749
- * Mirrors the per-feature subset of what map adapters render. The renderer
750
- * fans these into each emitted feature's `properties.style` ([[StyleHints]]).
751
- * Adapters merge them over their layer-level style; generator-emitted hints
752
- * on individual features win over both.
753
- */
754
- interface ControlMeasureStyle {
755
- /**
756
- * The single symbol color. Control measures are monocolor: one color paints
757
- * every part, stroked or filled. Input-only — resolved into concrete
758
- * `strokeColor` / `fillColor` per feature by the renderer and never emitted
759
- * on output. `strokeColor` / `fillColor` act as optional per-channel
760
- * overrides. See ADR-0011.
761
- */
762
- color?: string;
763
- strokeColor?: string;
764
- strokeWidth?: number;
765
- strokeDash?: number[];
766
- fillColor?: string;
767
- /**
768
- * How a filled part's interior is painted. `"solid"` is explicit so a
769
- * measure can override a patterned layer default (e.g. a hatch fill set
770
- * at the façade). Pattern lines are drawn in the resolved fill color —
771
- * alpha included, there is no separate opacity field. Renderers that
772
- * cannot draw a pattern degrade to solid.
773
- */
774
- fillPattern?: FillPattern;
775
- /**
776
- * Display-time graphic opacity multiplier in `[0, 1]`; absent = fully
777
- * opaque. Unlike `color`'s alpha, this fades the whole graphic — stroke,
778
- * fill, patterns, and baked labels — as one knob, independent of the
779
- * authored color. The resolver folds it into each resolved part's color
780
- * alpha (`final alpha = opacity × color alpha`) rather than adding a new
781
- * paint channel, so adapters and `toSimpleStyle` need no changes.
782
- * Display-only: hit-testing and selection reason about color alpha, not
783
- * this multiplier, so a graphic at `opacity: 0` stays fully selectable.
784
- * Out-of-range values clamp to `[0, 1]`. See ADR-0040.
785
- */
786
- opacity?: number;
787
- /**
788
- * Render a contrast-aware halo behind label glyphs so text stays legible on
789
- * busy backgrounds. Cascades like any other hint (graphicsStyle → measure →
790
- * generator), letting a host switch halos on for every labeled measure
791
- * rather than only the generic Text graphic.
792
- *
793
- * Text-only: the renderer applies it to features that carry `text` and drops
794
- * it everywhere else, so a layer-level `true` never leaks onto plain stroked
795
- * or filled parts. The halo *color* is not authored here — it is derived per
796
- * feature from the resolved text color, so each label gets a halo that
797
- * actually contrasts with it. Unlike the other hints this one is consumed by
798
- * the renderer and lifted to a top-level `textHalo` feature property; it is
799
- * never emitted on `properties.style`. See ADR-0042.
800
- */
801
- textHalo?: boolean;
802
- }
803
- /**
804
- * How a filled part's interior is painted. See `ControlMeasureStyle.fillPattern`.
805
- */
806
- type FillPattern = "solid" | "hatch" | "reverse-hatch" | "cross-hatch" | "horizontal" | "vertical" | "dots" | "mine-unspecified" | "mine-antipersonnel" | "mine-antipersonnel-directional" | "mine-antitank" | "mine-antitank-antihandling" | "mine-wide-area-antitank" | "mine-cluster";
808
+ declare function createGenericC2Line(positions: Position[], options?: GenericC2LineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
807
809
  //#endregion
808
810
  //#region src/internal/area-labels.d.ts
809
811
  /** Shared placement options for the centered-label area measures. */
@@ -897,6 +899,7 @@ interface BattlePositionOptions extends AreaLabelOptions {
897
899
  * Meters-per-pixel at the current zoom/latitude. Stamped by the host when the
898
900
  * measure is screen-anchored; required to resolve `echelonSizePixels`.
899
901
  */
902
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
900
903
  metersPerPixel?: number;
901
904
  /**
902
905
  * Round the area's corners by curving the boundary through the control points
@@ -1499,6 +1502,7 @@ interface EchelonLabeledAreaOptions extends LabeledAreaOptions {
1499
1502
  * Meters-per-pixel at the current zoom/latitude. Stamped by the host when
1500
1503
  * the measure is screen-anchored; required to resolve `echelonSizePixels`.
1501
1504
  */
1505
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
1502
1506
  metersPerPixel?: number;
1503
1507
  }
1504
1508
  //#endregion
@@ -1724,14 +1728,28 @@ declare function createGenericRectangle(coordinates: Position[], options?: Gener
1724
1728
  fill: boolean;
1725
1729
  }>;
1726
1730
  //#endregion
1731
+ //#region src/generators/arc-params.d.ts
1732
+ interface ArcResolutionOptions {
1733
+ /** Number of segments in a full 360° sweep. */
1734
+ resolution?: number;
1735
+ }
1736
+ //#endregion
1727
1737
  //#region src/generators/cm99-generic-graphics/circle.d.ts
1728
- type GenericCircleOptions = FilledAreaOptions;
1738
+ interface GenericCircleOptions extends FilledAreaOptions, ArcResolutionOptions {}
1729
1739
  declare const DEFAULT_GENERIC_CIRCLE_OPTIONS: Required<GenericCircleOptions>;
1730
1740
  declare function createGenericCircle(coordinates: Position[], options?: GenericCircleOptions): FeatureCollection<Polygon, {
1731
1741
  part: string;
1732
1742
  fill: boolean;
1733
1743
  }>;
1734
1744
  //#endregion
1745
+ //#region src/generators/cm99-generic-graphics/sector.d.ts
1746
+ interface GenericSectorOptions extends FilledAreaOptions, ArcResolutionOptions {}
1747
+ declare const DEFAULT_GENERIC_SECTOR_OPTIONS: Required<GenericSectorOptions>;
1748
+ declare function createGenericSector(coordinates: Position[], options?: GenericSectorOptions): FeatureCollection<Polygon, {
1749
+ part: string;
1750
+ fill: boolean;
1751
+ }>;
1752
+ //#endregion
1735
1753
  //#region src/generators/cm99-generic-graphics/text.d.ts
1736
1754
  /** Configuration options for the generic Text control measure. */
1737
1755
  interface GenericTextOptions {
@@ -1775,6 +1793,16 @@ interface GenericTextOptions {
1775
1793
  declare const DEFAULT_GENERIC_TEXT_OPTIONS: GenericTextOptions;
1776
1794
  declare function createGenericText(coordinates: Position[], options?: GenericTextOptions): FeatureCollection<Point, Record<string, unknown>>;
1777
1795
  //#endregion
1796
+ //#region src/generators/cm20-maritime-control-areas/radar-search-doctrine.d.ts
1797
+ interface RadarSearchDoctrineOptions extends ArcResolutionOptions, LabelSizeOptions {}
1798
+ declare const DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS: {
1799
+ resolution: number;
1800
+ };
1801
+ /** Doctrinal RSD colors from the symbol specification. */
1802
+ declare const RADAR_SEARCH_DOCTRINE_STROKE_COLOR = "rgb(51, 136, 136)";
1803
+ declare const RADAR_SEARCH_DOCTRINE_FILL_COLOR = "rgba(51, 136, 136, 0.25)";
1804
+ declare function createRadarSearchDoctrine(coordinates: Position[], options?: RadarSearchDoctrineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<Polygon | Point>;
1805
+ //#endregion
1778
1806
  //#region src/generators/cm15-maneuver-areas/airborneAttack.d.ts
1779
1807
  type AirborneAttackOptions = AttackOptions;
1780
1808
  declare const DEFAULT_AIRBORNE_ATTACK_OPTIONS: Required<AirborneAttackOptions>;
@@ -1875,6 +1903,7 @@ interface FLOTOptions extends SmoothLineOptions, LineLabelOptions {
1875
1903
  * Required when using radiusPixels for zoom-aware sizing.
1876
1904
  * Can be obtained from the map view's resolution or calculated using getMetersPerPixel().
1877
1905
  */
1906
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
1878
1907
  metersPerPixel?: number;
1879
1908
  /**
1880
1909
  * The number of points used to render each individual semi-circle.
@@ -1906,7 +1935,7 @@ declare const DEFAULT_FLOT_OPTIONS: Required<Omit<FLOTOptions, keyof LineLabelOp
1906
1935
  * );
1907
1936
  * ```
1908
1937
  */
1909
- declare function createFLOT(positions: Position[], options?: FLOTOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
1938
+ declare function createFLOT(positions: Position[], options?: FLOTOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1910
1939
  //#endregion
1911
1940
  //#region src/generators/cm14-maneuver-lines/phase-line.d.ts
1912
1941
  /** Configuration options for the Phase line control measure. */
@@ -1925,7 +1954,7 @@ declare const DEFAULT_PHASE_LINE_OPTIONS: PhaseLineOptions;
1925
1954
  * Creates a Phase line control measure: a polyline through `positions`
1926
1955
  * labeled at each end with `T` (optionally "PL"-prefixed).
1927
1956
  */
1928
- declare function createPhaseLine(positions: Position[], options?: PhaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
1957
+ declare function createPhaseLine(positions: Position[], options?: PhaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1929
1958
  //#endregion
1930
1959
  //#region src/generators/cm14-maneuver-lines/forward-edge-of-battle-area.d.ts
1931
1960
  /** Configuration options for the Forward edge of the battle area control measure. */
@@ -1950,7 +1979,7 @@ declare const DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS: ForwardEdgeOfBattleAr
1950
1979
  * Creates a Forward edge of the battle area control measure: a polyline
1951
1980
  * through `positions` labeled "FEBA" above the line near each end.
1952
1981
  */
1953
- declare function createForwardEdgeOfBattleArea(positions: Position[], options?: ForwardEdgeOfBattleAreaOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
1982
+ declare function createForwardEdgeOfBattleArea(positions: Position[], options?: ForwardEdgeOfBattleAreaOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1954
1983
  //#endregion
1955
1984
  //#region src/generators/cm14-maneuver-lines/bridgehead-line.d.ts
1956
1985
  /** Configuration options for the Bridgehead line control measure. */
@@ -1963,7 +1992,7 @@ interface BridgeheadLineOptions extends LineLabelOptions, SmoothLineOptions {
1963
1992
  /** Default options for the Bridgehead line control measure. */
1964
1993
  declare const DEFAULT_BRIDGEHEAD_LINE_OPTIONS: BridgeheadLineOptions;
1965
1994
  /** Creates a Bridgehead line labeled "BL" above both ends. */
1966
- declare function createBridgeheadLine(positions: Position[], options?: BridgeheadLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
1995
+ declare function createBridgeheadLine(positions: Position[], options?: BridgeheadLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1967
1996
  //#endregion
1968
1997
  //#region src/generators/cm14-maneuver-lines/holding-line.d.ts
1969
1998
  /** Configuration options for the Holding line control measure. */
@@ -1976,7 +2005,7 @@ interface HoldingLineOptions extends LineLabelOptions, SmoothLineOptions {
1976
2005
  /** Default options for the Holding line control measure. */
1977
2006
  declare const DEFAULT_HOLDING_LINE_OPTIONS: HoldingLineOptions;
1978
2007
  /** Creates a Holding line labeled "HL" above both ends. */
1979
- declare function createHoldingLine(positions: Position[], options?: HoldingLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
2008
+ declare function createHoldingLine(positions: Position[], options?: HoldingLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1980
2009
  //#endregion
1981
2010
  //#region src/generators/cm14-maneuver-lines/release-line.d.ts
1982
2011
  /** Configuration options for the Release line control measure. */
@@ -1989,7 +2018,7 @@ interface ReleaseLineOptions extends LineLabelOptions, SmoothLineOptions {
1989
2018
  /** Default options for the Release line control measure. */
1990
2019
  declare const DEFAULT_RELEASE_LINE_OPTIONS: ReleaseLineOptions;
1991
2020
  /** Creates a Release line labeled "RL" above both ends. */
1992
- declare function createReleaseLine(positions: Position[], options?: ReleaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
2021
+ declare function createReleaseLine(positions: Position[], options?: ReleaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
1993
2022
  //#endregion
1994
2023
  //#region src/generators/cm14-maneuver-lines/handover-line.d.ts
1995
2024
  /** Configuration options for the Handover line control measure. */
@@ -2016,7 +2045,7 @@ declare const DEFAULT_HANDOVER_LINE_OPTIONS: HandoverLineOptions;
2016
2045
  * Creates a Handover line control measure: a polyline through `positions`
2017
2046
  * labeled "HOL" above the line near each end.
2018
2047
  */
2019
- declare function createHandoverLine(positions: Position[], options?: HandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
2048
+ declare function createHandoverLine(positions: Position[], options?: HandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
2020
2049
  //#endregion
2021
2050
  //#region src/generators/cm14-maneuver-lines/battle-handover-line.d.ts
2022
2051
  /** Configuration options for the Battle handover line control measure. */
@@ -2043,7 +2072,7 @@ declare const DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS: BattleHandoverLineOptions;
2043
2072
  * Creates a Battle handover line control measure: a polyline through
2044
2073
  * `positions` labeled "BHL" above the line near each end.
2045
2074
  */
2046
- declare function createBattleHandoverLine(positions: Position[], options?: BattleHandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
2075
+ declare function createBattleHandoverLine(positions: Position[], options?: BattleHandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
2047
2076
  //#endregion
2048
2077
  //#region src/generators/cm34-mission-tasks/block.d.ts
2049
2078
  interface BlockMissionTaskOptions {
@@ -2433,11 +2462,12 @@ interface AntitankDitchOptions extends SmoothLineOptions, LineLabelOptions {
2433
2462
  * The meters-per-pixel ratio at the current zoom level and latitude. Required
2434
2463
  * when using toothHeightPixels for zoom-aware sizing.
2435
2464
  */
2465
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
2436
2466
  metersPerPixel?: number;
2437
2467
  }
2438
2468
  declare const DEFAULT_ANTITANK_DITCH_OPTIONS: Required<Omit<AntitankDitchOptions, keyof LineLabelOptions>>;
2439
- declare function createAntitankDitchUnderConstruction(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | Point>;
2440
- declare function createAntitankDitchCompleted(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiPolygon | Point>;
2469
+ declare function createAntitankDitchUnderConstruction(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
2470
+ declare function createAntitankDitchCompleted(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiPolygon | Point>;
2441
2471
  //#endregion
2442
2472
  //#region src/generators/cm29-protection-lines/antitankWall.d.ts
2443
2473
  interface AntitankWallOptions extends AntitankDitchOptions {
@@ -2449,7 +2479,7 @@ interface AntitankWallOptions extends AntitankDitchOptions {
2449
2479
  toothSpacingRatio?: number;
2450
2480
  }
2451
2481
  declare const DEFAULT_ANTITANK_WALL_OPTIONS: Required<Omit<AntitankWallOptions, keyof LineLabelOptions>>;
2452
- declare function createAntitankWall(positions: Position[], options?: AntitankWallOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | Point>;
2482
+ declare function createAntitankWall(positions: Position[], options?: AntitankWallOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
2453
2483
  //#endregion
2454
2484
  //#region src/generators/cm29-protection-lines/fortifiedLine.d.ts
2455
2485
  /**
@@ -2475,6 +2505,7 @@ interface FortifiedLineOptions extends LineLabelOptions {
2475
2505
  * The meters-per-pixel ratio at the current zoom level and latitude.
2476
2506
  * Required when using toothSizePixels for zoom-aware sizing.
2477
2507
  */
2508
+ /** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
2478
2509
  metersPerPixel?: number;
2479
2510
  /**
2480
2511
  * Round the line's corners by curving the base path through the control
@@ -2506,7 +2537,7 @@ declare const DEFAULT_FORTIFIED_LINE_OPTIONS: Required<Omit<FortifiedLineOptions
2506
2537
  * @param options - Configuration options for the graphic
2507
2538
  * @returns A GeoJSON FeatureCollection containing the castellated LineString
2508
2539
  */
2509
- declare function createFortifiedLine(positions: Position[], options?: FortifiedLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
2540
+ declare function createFortifiedLine(positions: Position[], options?: FortifiedLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
2510
2541
  //#endregion
2511
2542
  //#region src/generators/cm15-maneuver-areas/fortifiedArea.d.ts
2512
2543
  /**
@@ -2674,7 +2705,10 @@ interface MinefieldOptions {
2674
2705
  sizeMeters?: number;
2675
2706
  /** Draw-time frame width in screen pixels; baked to `sizeMeters` on commit. @default 32 */
2676
2707
  sizePixels?: number;
2677
- /** Live map resolution used to resolve `sizePixels` into projected meters. */
2708
+ /**
2709
+ * Live map resolution used to resolve `sizePixels` into projected meters.
2710
+ * @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead.
2711
+ */
2678
2712
  metersPerPixel?: number;
2679
2713
  /** Clockwise rotation in degrees. @default 0 */
2680
2714
  rotation?: number;
@@ -2804,7 +2838,9 @@ declare const DEFINITIONS: {
2804
2838
  polygon: ControlMeasureDefinition<"polygon", typeof createGenericPolygon>;
2805
2839
  rectangle: ControlMeasureDefinition<"rectangle", typeof createGenericRectangle>;
2806
2840
  circle: ControlMeasureDefinition<"circle", typeof createGenericCircle>;
2841
+ sector: ControlMeasureDefinition<"sector", typeof createGenericSector>;
2807
2842
  text: ControlMeasureDefinition<"text", typeof createGenericText>;
2843
+ "radar-search-doctrine": ControlMeasureDefinition<"radar-search-doctrine", typeof createRadarSearchDoctrine>;
2808
2844
  "airborne-attack": ControlMeasureDefinition<"airborne-attack", typeof createAirborneAttack>;
2809
2845
  "attack-helicopter": ControlMeasureDefinition<"attack-helicopter", typeof createAttackHelicopter>;
2810
2846
  "support-by-fire": ControlMeasureDefinition<"support-by-fire", typeof createSupportByFire>;
@@ -2917,6 +2953,8 @@ interface RenderOptions {
2917
2953
  * omitted, style resolution matches the prior two-layer behavior.
2918
2954
  */
2919
2955
  graphicsStyle?: ControlMeasureStyle;
2956
+ /** Renderer-owned portrayal inputs that must not become authored Graphic state. */
2957
+ context?: ControlMeasureRenderContext;
2920
2958
  }
2921
2959
  /**
2922
2960
  * Pure render: `ControlMeasure` → `ControlMeasureRender` (a
@@ -3142,6 +3180,15 @@ declare const point12DrawRule: ControlMeasureDrawRule;
3142
3180
  */
3143
3181
  declare const staticPointDrawRule: ControlMeasureDrawRule;
3144
3182
  //#endregion
3183
+ //#region src/draw-rules/point18.d.ts
3184
+ /**
3185
+ * Point18 — doctrinally a numeric, single-anchor symbol. The interactive
3186
+ * authoring model exposes those dimensions as Sector-style radial handles:
3187
+ * P1 is the anchor, P2 fixes the start range/left bearing, and P3 fixes the
3188
+ * stop range/right bearing.
3189
+ */
3190
+ declare const dynamicPointDrawRule: ControlMeasureDrawRule;
3191
+ //#endregion
3145
3192
  //#region src/draw-rules/area7.d.ts
3146
3193
  /**
3147
3194
  * Area7 anchor draw rule for Attack By Fire.
@@ -3228,6 +3275,9 @@ declare const axis1DrawRule: ControlMeasureDrawRule;
3228
3275
  //#region src/draw-rules/rectangle.d.ts
3229
3276
  declare const rectangleDrawRule: ControlMeasureDrawRule;
3230
3277
  //#endregion
3278
+ //#region src/draw-rules/sector.d.ts
3279
+ declare const sectorDrawRule: ControlMeasureDrawRule;
3280
+ //#endregion
3231
3281
  //#region src/generators/cm14-maneuver-lines/ambush.d.ts
3232
3282
  /**
3233
3283
  * Configuration options for the Ambush tactical symbol.
@@ -3248,4 +3298,4 @@ interface AmbushOptions {
3248
3298
  }
3249
3299
  declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
3250
3300
  //#endregion
3251
- export { getDefaultOptions as $, DEFAULT_BLOCK_ARROW_OPTIONS as $n, LabelSizeOptions as $r, CoverOptions as $t, createBaselineFrame as A, normalizeTextAmplifiers as Ai, PhaseLineOptions as An, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as Ar, DEFAULT_ANTITANK_DITCH_OPTIONS as At, freezeOrientationOptions as B, DEFAULT_AIRBORNE_ATTACK_OPTIONS as Bn, DirectionOfAttackAviationOptions as Br, RetireOptions as Bt, getMidpointPerpendicularSignedDistance as C, GeneratedLabelKey as Ci, DEFAULT_HOLDING_LINE_OPTIONS as Cn, EncirclementOptions as Cr, DEFAULT_FORTIFIED_AREA_OPTIONS as Ct, BaselineFrameNormal as D, TextAmplifierKey as Di, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as Dn, FeaturePartProps as Dr, AntitankWallOptions as Dt, BaselineFrame as E, TextAmplifierField as Ei, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as En, ControlMeasureRender as Er, FortifiedLineOptions as Et, SimpleStyleRender as F, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as Fn, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as Fr, DEFAULT_SEIZE_OPTIONS as Ft, isKind as G, DEFAULT_GENERIC_RECTANGLE_OPTIONS as Gn, ControlMeasureStyle as Gr, DEFAULT_GUARD_OPTIONS as Gt, renderControlMeasure as H, GenericTextOptions as Hn, StrongPointOptions as Hr, RearwardPassageOfLinesOptions as Ht, toSimpleStyle as I, SupportByFireOptions as In, DirectionOfSupportingAttackOptions as Ir, SeizeOptions as It, ControlMeasureId as J, GenericPolygonOptions as Jn, GenericC2LineOptions as Jr, DisruptMissionTaskOptions as Jt, CONTROL_MEASURE_IDS as K, GenericRectangleOptions as Kn, FillPattern as Kr, GuardOptions as Kt, resolveStyleHints as L, AttackHelicopterOptions as Ln, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as Lr, DEFAULT_SCREEN_OPTIONS as Lt, getMetersPerPixel as M, AnchorTransformEvent as Mi, FLOTOptions as Mn, SecondaryDirectionOfFireOptions as Mr, WithdrawUnderPressureOptions as Mt, roundToFixed as N, ControlMeasureDrawRule as Ni, AttackByFireOptions as Nn, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as Nr, DEFAULT_WITHDRAW_OPTIONS as Nt, BaselineFrameOptions as O, TextAmplifiers as Oi, ForwardEdgeOfBattleAreaOptions as On, StyleHints as Or, DEFAULT_ANTITANK_WALL_OPTIONS as Ot, SimpleStyleProps as P, DEFAULT_ATTACK_BY_FIRE_OPTIONS as Pn, PrincipalDirectionOfFireOptions as Pr, WithdrawOptions as Pt, getControlMeasureMetadataByValue as Q, BlockArrowOptions as Qn, LightLineOptions as Qr, DelayOptions as Qt, applyBoxTransformOptions as R, DEFAULT_ATTACK_HELICOPTER_OPTIONS as Rn, DirectionOfMainAttackOptions as Rr, ScreenOptions as Rt, createMidpointPerpendicularDrawRule as S, CanonicalTextAmplifiers as Si, ReleaseLineOptions as Sn, DEFAULT_ENCIRCLEMENT_OPTIONS as Sr, FrontalAttackOptions as St, snapToMidpointPerpendicular as T, TEXT_AMPLIFIER_FIELDS as Ti, BridgeheadLineOptions as Tn, FinalProtectiveFireOptions as Tr, DEFAULT_FORTIFIED_LINE_OPTIONS as Tt, ControlMeasure as U, DEFAULT_GENERIC_CIRCLE_OPTIONS as Un, BattlePositionOptions as Ur, DEFAULT_PENETRATE_OPTIONS as Ut, RenderOptions as V, DEFAULT_GENERIC_TEXT_OPTIONS as Vn, DEFAULT_STRONG_POINT_OPTIONS as Vr, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as Vt, cloneControlMeasure as W, GenericCircleOptions as Wn, DEFAULT_BATTLE_POSITION_OPTIONS as Wr, PenetrateOptions as Wt, OptionsByKind as X, GenericLineOptions as Xn, EngineerWorkLineOptions as Xr, DisengageOptions as Xt, ControlMeasureKind as Y, DEFAULT_GENERIC_LINE_OPTIONS as Yn, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as Yr, DEFAULT_DISENGAGE_OPTIONS as Yt, getControlMeasureMetadata as Z, BlockArrowHeadStyle as Zn, DEFAULT_LIGHT_LINE_OPTIONS as Zr, DEFAULT_DELAY_OPTIONS as Zt, centerRadiusDrawRule as _, parameterPresentationTierRank as _i, BattleHandoverLineOptions as _n, JointTacticalActionAreaOptions as _r, BlockOptions as _t, supportByFireDrawRule as a, DEFAULT_BOUNDARY_OPTIONS as ai, CounterattackOptions as an, DEFAULT_MAIN_ATTACK_OPTIONS as ar, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as at, MidpointPerpendicularDrawRuleOptions as b, AmplifierPlacement as bi, HandoverLineOptions as bn, AreaDefenseOptions as br, TurningMovementOptions as bt, line24DrawRule as c, ControlMeasureGeometry as ci, DEFAULT_CLEAR_OPTIONS as cn, computeInitialWidthPoint as cr, MinefieldOptions as ct, line1DrawRule as d, ControlMeasurePaintCapability as di, BypassOptions as dn, DEFAULT_PICKUP_ZONE_OPTIONS as dr, DEFAULT_FIX_MISSION_TASK_OPTIONS as dt, Point2D as ei, DEFAULT_COVER_OPTIONS as en, ClassicArrowHeadStyle as er, listControlMeasureMetadata as et, ambushDrawRule as f, PARAMETER_PRESENTATION_TIERS as fi, DEFAULT_BYPASS_OPTIONS as fn, PickupZoneOptions as fr, FixMissionTaskOptions as ft, penetrateDrawRule as g, TextAmplifierDescriptor as gi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as gn, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as gr, DisruptOptions as gt, point12DrawRule as h, ParameterSemanticRole as hi, BlockMissionTaskOptions as hn, LandingZoneOptions as hr, DEFAULT_DISRUPT_OPTIONS as ht, axis1DrawRule as i, BoundaryOptions as ii, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as in, SupportingAttackOptions as ir, ObstacleBypassDifficultOptions as it, EPSILON as j, resolveAmplifierPlacement as ji, DEFAULT_FLOT_OPTIONS as jn, SECONDARY_DIRECTION_OF_FIRE_DASH as jr, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as jt, BaselineFrameOrigin as k, canonicalTextAmplifierKey as ki, DEFAULT_PHASE_LINE_OPTIONS as kn, controlMeasureIdFromFeature as kr, AntitankDitchOptions as kt, line23DrawRule as l, ControlMeasureGeometryType as li, CanalizeOptions as ln, AreaOfOperationsOptions as lr, DEFAULT_TURN_OPTIONS as lt, staticPointDrawRule as m, ParameterPresentationTier as mi, DEFAULT_BREACH_OPTIONS as mn, DEFAULT_LANDING_ZONE_OPTIONS as mr, FixOptions as mt, DEFAULT_AMBUSH_OPTIONS as n, project as ni, TacticalArrowOptions as nn, DEFAULT_CLASSIC_ARROW_OPTIONS as nr, ObstacleBypassImpossibleOptions as nt, line27DrawRule as o, BoxTransformDelta as oi, DEFAULT_COUNTERATTACK_OPTIONS as on, MainAttackOptions as or, ObstacleBypassEasyOptions as ot, attackByFireDrawRule as p, ParamDescriptor as pi, BreachOptions as pn, MineType as pr, DEFAULT_FIX_OPTIONS as pt, CONTROL_MEASURE_METADATA as q, DEFAULT_GENERIC_POLYGON_OPTIONS as qn, DEFAULT_GENERIC_C2_LINE_OPTIONS as qr, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as qt, rectangleDrawRule as r, unproject as ri, CounterattackByFireOptions as rn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as rr, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as rt, line26DrawRule as s, ControlMeasureFillCapability as si, ClearOptions as sn, calculateMetrics as sr, DEFAULT_MINEFIELD_OPTIONS as st, AmbushOptions as t, haversineDistance as ti, DEFAULT_TACTICAL_ARROW_OPTIONS as tn, ClassicArrowOptions as tr, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as tt, turnDrawRule as u, ControlMeasureMetadata as ui, DEFAULT_CANALIZE_OPTIONS as un, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as ur, TurnOptions as ut, disruptDrawRule as v, resolveParameterPresentationTier as vi, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as vn, AssemblyAreaOptions as vr, DEFAULT_BLOCK_OPTIONS as vt, pointOnMidpointPerpendicularAxis as w, LabelPlacementOverride as wi, HoldingLineOptions as wn, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as wr, FortifiedAreaOptions as wt, computeDefaultMidpointPerpendicularPoint as x, AmplifierPlacements as xi, DEFAULT_RELEASE_LINE_OPTIONS as xn, DEFAULT_AREA_DEFENSE_OPTIONS as xr, DEFAULT_FRONTAL_ATTACK_OPTIONS as xt, blockDrawRule as y, resolveParameterSemanticRole as yi, DEFAULT_HANDOVER_LINE_OPTIONS as yn, DEFAULT_ASSEMBLY_AREA_OPTIONS as yr, DEFAULT_TURNING_MOVEMENT_OPTIONS as yt, foldsBoxTransformOptions as z, AirborneAttackOptions as zn, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as zr, DEFAULT_RETIRE_OPTIONS as zt };
3301
+ export { getControlMeasureMetadata as $, DEFAULT_GENERIC_RECTANGLE_OPTIONS as $n, DEFAULT_GENERIC_C2_LINE_OPTIONS as $r, DEFAULT_DELAY_OPTIONS as $t, BaselineFrameOptions as A, PARAMETER_PRESENTATION_TIERS as Ai, ForwardEdgeOfBattleAreaOptions as An, DEFAULT_ENCIRCLEMENT_OPTIONS as Ar, DEFAULT_ANTITANK_WALL_OPTIONS as At, applyBoxTransformOptions as B, CanonicalTextAmplifiers as Bi, DEFAULT_ATTACK_HELICOPTER_OPTIONS as Bn, SecondaryDirectionOfFireOptions as Br, ScreenOptions as Bt, computeDefaultMidpointPerpendicularPoint as C, MeasureTextRequest as Ci, DEFAULT_RELEASE_LINE_OPTIONS as Cn, LandingZoneOptions as Cr, DEFAULT_FRONTAL_ATTACK_OPTIONS as Ct, snapToMidpointPerpendicular as D, ControlMeasureGeometryType as Di, BridgeheadLineOptions as Dn, DEFAULT_ASSEMBLY_AREA_OPTIONS as Dr, DEFAULT_FORTIFIED_LINE_OPTIONS as Dt, pointOnMidpointPerpendicularAxis as E, ControlMeasureGeometry as Ei, HoldingLineOptions as En, AssemblyAreaOptions as Er, FortifiedAreaOptions as Et, roundToFixed as F, parameterPresentationTierRank as Fi, AttackByFireOptions as Fn, FeaturePartProps as Fr, DEFAULT_WITHDRAW_OPTIONS as Ft, ControlMeasure as G, TextAmplifierKey as Gi, RADAR_SEARCH_DOCTRINE_STROKE_COLOR as Gn, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as Gr, DEFAULT_PENETRATE_OPTIONS as Gt, freezeOrientationOptions as H, LabelPlacementOverride as Hi, DEFAULT_AIRBORNE_ATTACK_OPTIONS as Hn, PrincipalDirectionOfFireOptions as Hr, RetireOptions as Ht, SimpleStyleProps as I, resolveParameterPresentationTier as Ii, DEFAULT_ATTACK_BY_FIRE_OPTIONS as In, StyleHints as Ir, WithdrawOptions as It, CONTROL_MEASURE_IDS as J, normalizeTextAmplifiers as Ji, GenericTextOptions as Jn, DirectionOfAttackAviationOptions as Jr, GuardOptions as Jt, cloneControlMeasure as K, TextAmplifiers as Ki, RadarSearchDoctrineOptions as Kn, DirectionOfMainAttackOptions as Kr, PenetrateOptions as Kt, SimpleStyleRender as L, resolveParameterSemanticRole as Li, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as Ln, controlMeasureIdFromFeature as Lr, DEFAULT_SEIZE_OPTIONS as Lt, createBaselineFrame as M, ParameterPresentationTier as Mi, PhaseLineOptions as Mn, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as Mr, DEFAULT_ANTITANK_DITCH_OPTIONS as Mt, EPSILON as N, ParameterSemanticRole as Ni, DEFAULT_FLOT_OPTIONS as Nn, FinalProtectiveFireOptions as Nr, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as Nt, BaselineFrame as O, ControlMeasureMetadata as Oi, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as On, AreaDefenseOptions as Or, FortifiedLineOptions as Ot, getMetersPerPixel as P, TextAmplifierDescriptor as Pi, FLOTOptions as Pn, ControlMeasureRender as Pr, WithdrawUnderPressureOptions as Pt, OptionsByKind as Q, GenericCircleOptions as Qn, DEFAULT_BATTLE_POSITION_OPTIONS as Qr, DisengageOptions as Qt, toSimpleStyle as R, AmplifierPlacement as Ri, SupportByFireOptions as Rn, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as Rr, SeizeOptions as Rt, MidpointPerpendicularDrawRuleOptions as S, LogicalTextStyle as Si, HandoverLineOptions as Sn, DEFAULT_LANDING_ZONE_OPTIONS as Sr, TurningMovementOptions as St, getMidpointPerpendicularSignedDistance as T, ControlMeasureFillCapability as Ti, DEFAULT_HOLDING_LINE_OPTIONS as Tn, JointTacticalActionAreaOptions as Tr, DEFAULT_FORTIFIED_AREA_OPTIONS as Tt, RenderOptions as U, TEXT_AMPLIFIER_FIELDS as Ui, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS as Un, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as Ur, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as Ut, foldsBoxTransformOptions as V, GeneratedLabelKey as Vi, AirborneAttackOptions as Vn, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as Vr, DEFAULT_RETIRE_OPTIONS as Vt, renderControlMeasure as W, TextAmplifierField as Wi, RADAR_SEARCH_DOCTRINE_FILL_COLOR as Wn, DirectionOfSupportingAttackOptions as Wr, RearwardPassageOfLinesOptions as Wt, ControlMeasureId as X, AnchorTransformEvent as Xi, GenericSectorOptions as Xn, StrongPointOptions as Xr, DisruptMissionTaskOptions as Xt, CONTROL_MEASURE_METADATA as Y, resolveAmplifierPlacement as Yi, DEFAULT_GENERIC_SECTOR_OPTIONS as Yn, DEFAULT_STRONG_POINT_OPTIONS as Yr, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as Yt, ControlMeasureKind as Z, ControlMeasureDrawRule as Zi, DEFAULT_GENERIC_CIRCLE_OPTIONS as Zn, BattlePositionOptions as Zr, DEFAULT_DISENGAGE_OPTIONS as Zt, point12DrawRule as _, DEFAULT_LINE_CAP as _i, BlockMissionTaskOptions as _n, AreaOfOperationsOptions as _r, DEFAULT_DISRUPT_OPTIONS as _t, axis1DrawRule as a, LabelSizeOptions as ai, CounterattackByFireOptions as an, BlockArrowHeadStyle as ar, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as at, disruptDrawRule as b, DEFAULT_STROKE_DASH_CSS_PIXELS as bi, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as bn, PickupZoneOptions as br, DEFAULT_BLOCK_OPTIONS as bt, line26DrawRule as c, project as ci, DEFAULT_COUNTERATTACK_OPTIONS as cn, ClassicArrowHeadStyle as cr, ObstacleBypassEasyOptions as ct, turnDrawRule as d, BoundaryOptions as di, CanalizeOptions as dn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as dr, DEFAULT_TURN_OPTIONS as dt, GenericC2LineOptions as ei, DelayOptions as en, GenericRectangleOptions as er, getControlMeasureMetadataByValue as et, line1DrawRule as f, DEFAULT_BOUNDARY_OPTIONS as fi, DEFAULT_CANALIZE_OPTIONS as fn, SupportingAttackOptions as fr, TurnOptions as ft, staticPointDrawRule as g, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS as gi, DEFAULT_BREACH_OPTIONS as gn, computeInitialWidthPoint as gr, FixOptions as gt, dynamicPointDrawRule as h, DEFAULT_LABEL_HEIGHT_CSS_PIXELS as hi, BreachOptions as hn, calculateMetrics as hr, DEFAULT_FIX_OPTIONS as ht, rectangleDrawRule as i, LightLineOptions as ii, TacticalArrowOptions as in, GenericLineOptions as ir, ObstacleBypassImpossibleOptions as it, BaselineFrameOrigin as j, ParamDescriptor as ji, DEFAULT_PHASE_LINE_OPTIONS as jn, EncirclementOptions as jr, AntitankDitchOptions as jt, BaselineFrameNormal as k, ControlMeasurePaintCapability as ki, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as kn, DEFAULT_AREA_DEFENSE_OPTIONS as kr, AntitankWallOptions as kt, line24DrawRule as l, sphericalBearing as li, ClearOptions as ln, ClassicArrowOptions as lr, DEFAULT_MINEFIELD_OPTIONS as lt, attackByFireDrawRule as m, ControlMeasureRenderContext as mi, DEFAULT_BYPASS_OPTIONS as mn, MainAttackOptions as mr, FixMissionTaskOptions as mt, DEFAULT_AMBUSH_OPTIONS as n, EngineerWorkLineOptions as ni, DEFAULT_COVER_OPTIONS as nn, GenericPolygonOptions as nr, listControlMeasureMetadata as nt, supportByFireDrawRule as o, Point2D as oi, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as on, BlockArrowOptions as or, ObstacleBypassDifficultOptions as ot, ambushDrawRule as p, BoxTransformDelta as pi, BypassOptions as pn, DEFAULT_MAIN_ATTACK_OPTIONS as pr, DEFAULT_FIX_MISSION_TASK_OPTIONS as pt, isKind as q, canonicalTextAmplifierKey as qi, DEFAULT_GENERIC_TEXT_OPTIONS as qn, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as qr, DEFAULT_GUARD_OPTIONS as qt, sectorDrawRule as r, DEFAULT_LIGHT_LINE_OPTIONS as ri, DEFAULT_TACTICAL_ARROW_OPTIONS as rn, DEFAULT_GENERIC_LINE_OPTIONS as rr, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as rt, line27DrawRule as s, haversineDistance as si, CounterattackOptions as sn, DEFAULT_BLOCK_ARROW_OPTIONS as sr, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as st, AmbushOptions as t, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as ti, CoverOptions as tn, DEFAULT_GENERIC_POLYGON_OPTIONS as tr, getDefaultOptions as tt, line23DrawRule as u, unproject as ui, DEFAULT_CLEAR_OPTIONS as un, DEFAULT_CLASSIC_ARROW_OPTIONS as ur, MinefieldOptions as ut, penetrateDrawRule as v, DEFAULT_LINE_JOIN as vi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as vn, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as vr, DisruptOptions as vt, createMidpointPerpendicularDrawRule as w, MeasuredText as wi, ReleaseLineOptions as wn, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as wr, FrontalAttackOptions as wt, blockDrawRule as x, DEFAULT_STROKE_WIDTH_CSS_PIXELS as xi, DEFAULT_HANDOVER_LINE_OPTIONS as xn, MineType as xr, DEFAULT_TURNING_MOVEMENT_OPTIONS as xt, centerRadiusDrawRule as y, DEFAULT_PORTRAYAL as yi, BattleHandoverLineOptions as yn, DEFAULT_PICKUP_ZONE_OPTIONS as yr, BlockOptions as yt, resolveStyleHints as z, AmplifierPlacements as zi, AttackHelicopterOptions as zn, SECONDARY_DIRECTION_OF_FIRE_DASH as zr, DEFAULT_SCREEN_OPTIONS as zt };
package/dist/index.d.mts CHANGED
@@ -1,2 +1,3 @@
1
- import { $ as getDefaultOptions, $n as DEFAULT_BLOCK_ARROW_OPTIONS, $r as LabelSizeOptions, $t as CoverOptions, A as createBaselineFrame, Ai as normalizeTextAmplifiers, An as PhaseLineOptions, Ar as DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, At as DEFAULT_ANTITANK_DITCH_OPTIONS, B as freezeOrientationOptions, Bn as DEFAULT_AIRBORNE_ATTACK_OPTIONS, Br as DirectionOfAttackAviationOptions, Bt as RetireOptions, C as getMidpointPerpendicularSignedDistance, Ci as GeneratedLabelKey, Cn as DEFAULT_HOLDING_LINE_OPTIONS, Cr as EncirclementOptions, Ct as DEFAULT_FORTIFIED_AREA_OPTIONS, D as BaselineFrameNormal, Di as TextAmplifierKey, Dn as DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, Dr as FeaturePartProps, Dt as AntitankWallOptions, E as BaselineFrame, Ei as TextAmplifierField, En as DEFAULT_BRIDGEHEAD_LINE_OPTIONS, Er as ControlMeasureRender, Et as FortifiedLineOptions, F as SimpleStyleRender, Fn as DEFAULT_SUPPORT_BY_FIRE_OPTIONS, Fr as DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, Ft as DEFAULT_SEIZE_OPTIONS, G as isKind, Gn as DEFAULT_GENERIC_RECTANGLE_OPTIONS, Gr as ControlMeasureStyle, Gt as DEFAULT_GUARD_OPTIONS, H as renderControlMeasure, Hn as GenericTextOptions, Hr as StrongPointOptions, Ht as RearwardPassageOfLinesOptions, I as toSimpleStyle, In as SupportByFireOptions, Ir as DirectionOfSupportingAttackOptions, It as SeizeOptions, J as ControlMeasureId, Jn as GenericPolygonOptions, Jr as GenericC2LineOptions, Jt as DisruptMissionTaskOptions, K as CONTROL_MEASURE_IDS, Kn as GenericRectangleOptions, Kr as FillPattern, Kt as GuardOptions, L as resolveStyleHints, Ln as AttackHelicopterOptions, Lr as DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, Lt as DEFAULT_SCREEN_OPTIONS, M as getMetersPerPixel, Mi as AnchorTransformEvent, Mn as FLOTOptions, Mr as SecondaryDirectionOfFireOptions, Mt as WithdrawUnderPressureOptions, N as roundToFixed, Ni as ControlMeasureDrawRule, Nn as AttackByFireOptions, Nr as DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, Nt as DEFAULT_WITHDRAW_OPTIONS, O as BaselineFrameOptions, Oi as TextAmplifiers, On as ForwardEdgeOfBattleAreaOptions, Or as StyleHints, Ot as DEFAULT_ANTITANK_WALL_OPTIONS, P as SimpleStyleProps, Pn as DEFAULT_ATTACK_BY_FIRE_OPTIONS, Pr as PrincipalDirectionOfFireOptions, Pt as WithdrawOptions, Q as getControlMeasureMetadataByValue, Qn as BlockArrowOptions, Qr as LightLineOptions, Qt as DelayOptions, R as applyBoxTransformOptions, Rn as DEFAULT_ATTACK_HELICOPTER_OPTIONS, Rr as DirectionOfMainAttackOptions, Rt as ScreenOptions, S as createMidpointPerpendicularDrawRule, Si as CanonicalTextAmplifiers, Sn as ReleaseLineOptions, Sr as DEFAULT_ENCIRCLEMENT_OPTIONS, St as FrontalAttackOptions, T as snapToMidpointPerpendicular, Ti as TEXT_AMPLIFIER_FIELDS, Tn as BridgeheadLineOptions, Tr as FinalProtectiveFireOptions, Tt as DEFAULT_FORTIFIED_LINE_OPTIONS, U as ControlMeasure, Un as DEFAULT_GENERIC_CIRCLE_OPTIONS, Ur as BattlePositionOptions, Ut as DEFAULT_PENETRATE_OPTIONS, V as RenderOptions, Vn as DEFAULT_GENERIC_TEXT_OPTIONS, Vr as DEFAULT_STRONG_POINT_OPTIONS, Vt as DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, W as cloneControlMeasure, Wn as GenericCircleOptions, Wr as DEFAULT_BATTLE_POSITION_OPTIONS, Wt as PenetrateOptions, X as OptionsByKind, Xn as GenericLineOptions, Xr as EngineerWorkLineOptions, Xt as DisengageOptions, Y as ControlMeasureKind, Yn as DEFAULT_GENERIC_LINE_OPTIONS, Yr as DEFAULT_ENGINEER_WORK_LINE_OPTIONS, Yt as DEFAULT_DISENGAGE_OPTIONS, Z as getControlMeasureMetadata, Zn as BlockArrowHeadStyle, Zr as DEFAULT_LIGHT_LINE_OPTIONS, Zt as DEFAULT_DELAY_OPTIONS, _ as centerRadiusDrawRule, _i as parameterPresentationTierRank, _n as BattleHandoverLineOptions, _r as JointTacticalActionAreaOptions, _t as BlockOptions, a as supportByFireDrawRule, ai as DEFAULT_BOUNDARY_OPTIONS, an as CounterattackOptions, ar as DEFAULT_MAIN_ATTACK_OPTIONS, at as DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, b as MidpointPerpendicularDrawRuleOptions, bi as AmplifierPlacement, bn as HandoverLineOptions, br as AreaDefenseOptions, bt as TurningMovementOptions, c as line24DrawRule, ci as ControlMeasureGeometry, cn as DEFAULT_CLEAR_OPTIONS, cr as computeInitialWidthPoint, ct as MinefieldOptions, d as line1DrawRule, di as ControlMeasurePaintCapability, dn as BypassOptions, dr as DEFAULT_PICKUP_ZONE_OPTIONS, dt as DEFAULT_FIX_MISSION_TASK_OPTIONS, ei as Point2D, en as DEFAULT_COVER_OPTIONS, er as ClassicArrowHeadStyle, et as listControlMeasureMetadata, f as ambushDrawRule, fi as PARAMETER_PRESENTATION_TIERS, fn as DEFAULT_BYPASS_OPTIONS, fr as PickupZoneOptions, ft as FixMissionTaskOptions, g as penetrateDrawRule, gi as TextAmplifierDescriptor, gn as DEFAULT_BLOCK_MISSION_TASK_OPTIONS, gr as DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, gt as DisruptOptions, h as point12DrawRule, hi as ParameterSemanticRole, hn as BlockMissionTaskOptions, hr as LandingZoneOptions, ht as DEFAULT_DISRUPT_OPTIONS, i as axis1DrawRule, ii as BoundaryOptions, in as DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, ir as SupportingAttackOptions, it as ObstacleBypassDifficultOptions, j as EPSILON, ji as resolveAmplifierPlacement, jn as DEFAULT_FLOT_OPTIONS, jr as SECONDARY_DIRECTION_OF_FIRE_DASH, jt as DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, k as BaselineFrameOrigin, ki as canonicalTextAmplifierKey, kn as DEFAULT_PHASE_LINE_OPTIONS, kr as controlMeasureIdFromFeature, kt as AntitankDitchOptions, l as line23DrawRule, li as ControlMeasureGeometryType, ln as CanalizeOptions, lr as AreaOfOperationsOptions, lt as DEFAULT_TURN_OPTIONS, m as staticPointDrawRule, mi as ParameterPresentationTier, mn as DEFAULT_BREACH_OPTIONS, mr as DEFAULT_LANDING_ZONE_OPTIONS, mt as FixOptions, n as DEFAULT_AMBUSH_OPTIONS, ni as project, nn as TacticalArrowOptions, nr as DEFAULT_CLASSIC_ARROW_OPTIONS, nt as ObstacleBypassImpossibleOptions, o as line27DrawRule, oi as BoxTransformDelta, on as DEFAULT_COUNTERATTACK_OPTIONS, or as MainAttackOptions, ot as ObstacleBypassEasyOptions, p as attackByFireDrawRule, pi as ParamDescriptor, pn as BreachOptions, pr as MineType, pt as DEFAULT_FIX_OPTIONS, q as CONTROL_MEASURE_METADATA, qn as DEFAULT_GENERIC_POLYGON_OPTIONS, qr as DEFAULT_GENERIC_C2_LINE_OPTIONS, qt as DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, r as rectangleDrawRule, ri as unproject, rn as CounterattackByFireOptions, rr as DEFAULT_SUPPORTING_ATTACK_OPTIONS, rt as DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, s as line26DrawRule, si as ControlMeasureFillCapability, sn as ClearOptions, sr as calculateMetrics, st as DEFAULT_MINEFIELD_OPTIONS, t as AmbushOptions, ti as haversineDistance, tn as DEFAULT_TACTICAL_ARROW_OPTIONS, tr as ClassicArrowOptions, tt as DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, u as turnDrawRule, ui as ControlMeasureMetadata, un as DEFAULT_CANALIZE_OPTIONS, ur as DEFAULT_AREA_OF_OPERATIONS_OPTIONS, ut as TurnOptions, v as disruptDrawRule, vi as resolveParameterPresentationTier, vn as DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, vr as AssemblyAreaOptions, vt as DEFAULT_BLOCK_OPTIONS, w as pointOnMidpointPerpendicularAxis, wi as LabelPlacementOverride, wn as HoldingLineOptions, wr as DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, wt as FortifiedAreaOptions, x as computeDefaultMidpointPerpendicularPoint, xi as AmplifierPlacements, xn as DEFAULT_RELEASE_LINE_OPTIONS, xr as DEFAULT_AREA_DEFENSE_OPTIONS, xt as DEFAULT_FRONTAL_ATTACK_OPTIONS, y as blockDrawRule, yi as resolveParameterSemanticRole, yn as DEFAULT_HANDOVER_LINE_OPTIONS, yr as DEFAULT_ASSEMBLY_AREA_OPTIONS, yt as DEFAULT_TURNING_MOVEMENT_OPTIONS, z as foldsBoxTransformOptions, zn as AirborneAttackOptions, zr as DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, zt as DEFAULT_RETIRE_OPTIONS } from "./index-B9foUCfy.mjs";
2
- export { type AirborneAttackOptions, type AmbushOptions, type AmplifierPlacement, type AmplifierPlacements, type AnchorTransformEvent, type AntitankDitchOptions, type AntitankWallOptions, type AreaDefenseOptions, type AreaOfOperationsOptions, type AssemblyAreaOptions, type AttackByFireOptions, type AttackHelicopterOptions, type BaselineFrame, type BaselineFrameNormal, type BaselineFrameOptions, type BaselineFrameOrigin, type BattleHandoverLineOptions, type BattlePositionOptions, type BlockArrowHeadStyle, type BlockArrowOptions, type BlockMissionTaskOptions, type BlockOptions, type BoundaryOptions, type BoxTransformDelta, type BreachOptions, type BridgeheadLineOptions, type BypassOptions, CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, type CanalizeOptions, type CanonicalTextAmplifiers, type ClassicArrowHeadStyle, type ClassicArrowOptions, type ClearOptions, type ControlMeasure, type ControlMeasureDrawRule, type ControlMeasureFillCapability, type ControlMeasureGeometry, type ControlMeasureGeometryType, type ControlMeasureId, type ControlMeasureKind, type ControlMeasureMetadata, type ControlMeasurePaintCapability, type ControlMeasureRender, type ControlMeasureStyle, type CounterattackByFireOptions, type CounterattackOptions, type CoverOptions, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, type DelayOptions, type DirectionOfAttackAviationOptions, type DirectionOfMainAttackOptions, type DirectionOfSupportingAttackOptions, type DisengageOptions, type DisruptMissionTaskOptions, type DisruptOptions, EPSILON, type EncirclementOptions, type EngineerWorkLineOptions, type FLOTOptions, type FeaturePartProps, type FillPattern, type FinalProtectiveFireOptions, type FixMissionTaskOptions, type FixOptions, type FortifiedAreaOptions, type FortifiedLineOptions, type ForwardEdgeOfBattleAreaOptions, type FrontalAttackOptions, type GeneratedLabelKey, type GenericC2LineOptions, type GenericCircleOptions, type GenericLineOptions, type GenericPolygonOptions, type GenericRectangleOptions, type GenericTextOptions, type GuardOptions, type HandoverLineOptions, type HoldingLineOptions, type JointTacticalActionAreaOptions, type LabelPlacementOverride, type LabelSizeOptions, type LandingZoneOptions, type LightLineOptions, type MainAttackOptions, type MidpointPerpendicularDrawRuleOptions, type MineType, type MinefieldOptions, type ObstacleBypassDifficultOptions, type ObstacleBypassEasyOptions, type ObstacleBypassImpossibleOptions, type OptionsByKind, PARAMETER_PRESENTATION_TIERS, type ParamDescriptor, type ParameterPresentationTier, type ParameterSemanticRole, type PenetrateOptions, type PhaseLineOptions, type PickupZoneOptions, type Point2D, type PrincipalDirectionOfFireOptions, type RearwardPassageOfLinesOptions, type ReleaseLineOptions, type RenderOptions, type RetireOptions, SECONDARY_DIRECTION_OF_FIRE_DASH, type ScreenOptions, type SecondaryDirectionOfFireOptions, type SeizeOptions, type SimpleStyleProps, type SimpleStyleRender, type StrongPointOptions, type StyleHints, type SupportByFireOptions, type SupportingAttackOptions, TEXT_AMPLIFIER_FIELDS, type TacticalArrowOptions, type TextAmplifierDescriptor, type TextAmplifierField, type TextAmplifierKey, type TextAmplifiers, type TurnOptions, type TurningMovementOptions, type WithdrawOptions, type WithdrawUnderPressureOptions, ambushDrawRule, applyBoxTransformOptions, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getDefaultOptions, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, snapToMidpointPerpendicular, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };
1
+ import { $ as getControlMeasureMetadata, $n as DEFAULT_GENERIC_RECTANGLE_OPTIONS, $r as DEFAULT_GENERIC_C2_LINE_OPTIONS, $t as DEFAULT_DELAY_OPTIONS, A as BaselineFrameOptions, Ai as PARAMETER_PRESENTATION_TIERS, An as ForwardEdgeOfBattleAreaOptions, Ar as DEFAULT_ENCIRCLEMENT_OPTIONS, At as DEFAULT_ANTITANK_WALL_OPTIONS, B as applyBoxTransformOptions, Bi as CanonicalTextAmplifiers, Bn as DEFAULT_ATTACK_HELICOPTER_OPTIONS, Br as SecondaryDirectionOfFireOptions, Bt as ScreenOptions, C as computeDefaultMidpointPerpendicularPoint, Ci as MeasureTextRequest, Cn as DEFAULT_RELEASE_LINE_OPTIONS, Cr as LandingZoneOptions, Ct as DEFAULT_FRONTAL_ATTACK_OPTIONS, D as snapToMidpointPerpendicular, Di as ControlMeasureGeometryType, Dn as BridgeheadLineOptions, Dr as DEFAULT_ASSEMBLY_AREA_OPTIONS, Dt as DEFAULT_FORTIFIED_LINE_OPTIONS, E as pointOnMidpointPerpendicularAxis, Ei as ControlMeasureGeometry, En as HoldingLineOptions, Er as AssemblyAreaOptions, Et as FortifiedAreaOptions, F as roundToFixed, Fi as parameterPresentationTierRank, Fn as AttackByFireOptions, Fr as FeaturePartProps, Ft as DEFAULT_WITHDRAW_OPTIONS, G as ControlMeasure, Gi as TextAmplifierKey, Gn as RADAR_SEARCH_DOCTRINE_STROKE_COLOR, Gr as DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, Gt as DEFAULT_PENETRATE_OPTIONS, H as freezeOrientationOptions, Hi as LabelPlacementOverride, Hn as DEFAULT_AIRBORNE_ATTACK_OPTIONS, Hr as PrincipalDirectionOfFireOptions, Ht as RetireOptions, I as SimpleStyleProps, Ii as resolveParameterPresentationTier, In as DEFAULT_ATTACK_BY_FIRE_OPTIONS, Ir as StyleHints, It as WithdrawOptions, J as CONTROL_MEASURE_IDS, Ji as normalizeTextAmplifiers, Jn as GenericTextOptions, Jr as DirectionOfAttackAviationOptions, Jt as GuardOptions, K as cloneControlMeasure, Ki as TextAmplifiers, Kn as RadarSearchDoctrineOptions, Kr as DirectionOfMainAttackOptions, Kt as PenetrateOptions, L as SimpleStyleRender, Li as resolveParameterSemanticRole, Ln as DEFAULT_SUPPORT_BY_FIRE_OPTIONS, Lr as controlMeasureIdFromFeature, Lt as DEFAULT_SEIZE_OPTIONS, M as createBaselineFrame, Mi as ParameterPresentationTier, Mn as PhaseLineOptions, Mr as DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, Mt as DEFAULT_ANTITANK_DITCH_OPTIONS, N as EPSILON, Ni as ParameterSemanticRole, Nn as DEFAULT_FLOT_OPTIONS, Nr as FinalProtectiveFireOptions, Nt as DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, O as BaselineFrame, Oi as ControlMeasureMetadata, On as DEFAULT_BRIDGEHEAD_LINE_OPTIONS, Or as AreaDefenseOptions, Ot as FortifiedLineOptions, P as getMetersPerPixel, Pi as TextAmplifierDescriptor, Pn as FLOTOptions, Pr as ControlMeasureRender, Pt as WithdrawUnderPressureOptions, Q as OptionsByKind, Qn as GenericCircleOptions, Qr as DEFAULT_BATTLE_POSITION_OPTIONS, Qt as DisengageOptions, R as toSimpleStyle, Ri as AmplifierPlacement, Rn as SupportByFireOptions, Rr as DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, Rt as SeizeOptions, S as MidpointPerpendicularDrawRuleOptions, Si as LogicalTextStyle, Sn as HandoverLineOptions, Sr as DEFAULT_LANDING_ZONE_OPTIONS, St as TurningMovementOptions, T as getMidpointPerpendicularSignedDistance, Ti as ControlMeasureFillCapability, Tn as DEFAULT_HOLDING_LINE_OPTIONS, Tr as JointTacticalActionAreaOptions, Tt as DEFAULT_FORTIFIED_AREA_OPTIONS, U as RenderOptions, Ui as TEXT_AMPLIFIER_FIELDS, Un as DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, Ur as DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, Ut as DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, V as foldsBoxTransformOptions, Vi as GeneratedLabelKey, Vn as AirborneAttackOptions, Vr as DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, Vt as DEFAULT_RETIRE_OPTIONS, W as renderControlMeasure, Wi as TextAmplifierField, Wn as RADAR_SEARCH_DOCTRINE_FILL_COLOR, Wr as DirectionOfSupportingAttackOptions, Wt as RearwardPassageOfLinesOptions, X as ControlMeasureId, Xi as AnchorTransformEvent, Xn as GenericSectorOptions, Xr as StrongPointOptions, Xt as DisruptMissionTaskOptions, Y as CONTROL_MEASURE_METADATA, Yi as resolveAmplifierPlacement, Yn as DEFAULT_GENERIC_SECTOR_OPTIONS, Yr as DEFAULT_STRONG_POINT_OPTIONS, Yt as DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, Z as ControlMeasureKind, Zi as ControlMeasureDrawRule, Zn as DEFAULT_GENERIC_CIRCLE_OPTIONS, Zr as BattlePositionOptions, Zt as DEFAULT_DISENGAGE_OPTIONS, _ as point12DrawRule, _i as DEFAULT_LINE_CAP, _n as BlockMissionTaskOptions, _r as AreaOfOperationsOptions, _t as DEFAULT_DISRUPT_OPTIONS, a as axis1DrawRule, ai as LabelSizeOptions, an as CounterattackByFireOptions, ar as BlockArrowHeadStyle, at as DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, b as disruptDrawRule, bi as DEFAULT_STROKE_DASH_CSS_PIXELS, bn as DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, br as PickupZoneOptions, bt as DEFAULT_BLOCK_OPTIONS, c as line26DrawRule, ci as project, cn as DEFAULT_COUNTERATTACK_OPTIONS, cr as ClassicArrowHeadStyle, ct as ObstacleBypassEasyOptions, d as turnDrawRule, di as BoundaryOptions, dn as CanalizeOptions, dr as DEFAULT_SUPPORTING_ATTACK_OPTIONS, dt as DEFAULT_TURN_OPTIONS, ei as GenericC2LineOptions, en as DelayOptions, er as GenericRectangleOptions, et as getControlMeasureMetadataByValue, f as line1DrawRule, fi as DEFAULT_BOUNDARY_OPTIONS, fn as DEFAULT_CANALIZE_OPTIONS, fr as SupportingAttackOptions, ft as TurnOptions, g as staticPointDrawRule, gi as DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, gn as DEFAULT_BREACH_OPTIONS, gr as computeInitialWidthPoint, gt as FixOptions, h as dynamicPointDrawRule, hi as DEFAULT_LABEL_HEIGHT_CSS_PIXELS, hn as BreachOptions, hr as calculateMetrics, ht as DEFAULT_FIX_OPTIONS, i as rectangleDrawRule, ii as LightLineOptions, in as TacticalArrowOptions, ir as GenericLineOptions, it as ObstacleBypassImpossibleOptions, j as BaselineFrameOrigin, ji as ParamDescriptor, jn as DEFAULT_PHASE_LINE_OPTIONS, jr as EncirclementOptions, jt as AntitankDitchOptions, k as BaselineFrameNormal, ki as ControlMeasurePaintCapability, kn as DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, kr as DEFAULT_AREA_DEFENSE_OPTIONS, kt as AntitankWallOptions, l as line24DrawRule, li as sphericalBearing, ln as ClearOptions, lr as ClassicArrowOptions, lt as DEFAULT_MINEFIELD_OPTIONS, m as attackByFireDrawRule, mi as ControlMeasureRenderContext, mn as DEFAULT_BYPASS_OPTIONS, mr as MainAttackOptions, mt as FixMissionTaskOptions, n as DEFAULT_AMBUSH_OPTIONS, ni as EngineerWorkLineOptions, nn as DEFAULT_COVER_OPTIONS, nr as GenericPolygonOptions, nt as listControlMeasureMetadata, o as supportByFireDrawRule, oi as Point2D, on as DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, or as BlockArrowOptions, ot as ObstacleBypassDifficultOptions, p as ambushDrawRule, pi as BoxTransformDelta, pn as BypassOptions, pr as DEFAULT_MAIN_ATTACK_OPTIONS, pt as DEFAULT_FIX_MISSION_TASK_OPTIONS, q as isKind, qi as canonicalTextAmplifierKey, qn as DEFAULT_GENERIC_TEXT_OPTIONS, qr as DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, qt as DEFAULT_GUARD_OPTIONS, r as sectorDrawRule, ri as DEFAULT_LIGHT_LINE_OPTIONS, rn as DEFAULT_TACTICAL_ARROW_OPTIONS, rr as DEFAULT_GENERIC_LINE_OPTIONS, rt as DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, s as line27DrawRule, si as haversineDistance, sn as CounterattackOptions, sr as DEFAULT_BLOCK_ARROW_OPTIONS, st as DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, t as AmbushOptions, ti as DEFAULT_ENGINEER_WORK_LINE_OPTIONS, tn as CoverOptions, tr as DEFAULT_GENERIC_POLYGON_OPTIONS, tt as getDefaultOptions, u as line23DrawRule, ui as unproject, un as DEFAULT_CLEAR_OPTIONS, ur as DEFAULT_CLASSIC_ARROW_OPTIONS, ut as MinefieldOptions, v as penetrateDrawRule, vi as DEFAULT_LINE_JOIN, vn as DEFAULT_BLOCK_MISSION_TASK_OPTIONS, vr as DEFAULT_AREA_OF_OPERATIONS_OPTIONS, vt as DisruptOptions, w as createMidpointPerpendicularDrawRule, wi as MeasuredText, wn as ReleaseLineOptions, wr as DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, wt as FrontalAttackOptions, x as blockDrawRule, xi as DEFAULT_STROKE_WIDTH_CSS_PIXELS, xn as DEFAULT_HANDOVER_LINE_OPTIONS, xr as MineType, xt as DEFAULT_TURNING_MOVEMENT_OPTIONS, y as centerRadiusDrawRule, yi as DEFAULT_PORTRAYAL, yn as BattleHandoverLineOptions, yr as DEFAULT_PICKUP_ZONE_OPTIONS, yt as BlockOptions, z as resolveStyleHints, zi as AmplifierPlacements, zn as AttackHelicopterOptions, zr as SECONDARY_DIRECTION_OF_FIRE_DASH, zt as DEFAULT_SCREEN_OPTIONS } from "./index-B3LgMKpn.mjs";
2
+ import { a as PatternId, c as PatternPoint, d as ControlMeasureStyle, f as FillPattern, i as NON_SOLID_FILL_PATTERNS, l as PatternStroke, n as FillPatternCommand, o as PatternPaint, r as FillPatternDefinition, s as PatternPathOperation, t as FILL_PATTERN_DEFINITIONS, u as getFillPatternDefinition } from "./patterns-CcQmmOuJ.mjs";
3
+ export { type AirborneAttackOptions, type AmbushOptions, type AmplifierPlacement, type AmplifierPlacements, type AnchorTransformEvent, type AntitankDitchOptions, type AntitankWallOptions, type AreaDefenseOptions, type AreaOfOperationsOptions, type AssemblyAreaOptions, type AttackByFireOptions, type AttackHelicopterOptions, type BaselineFrame, type BaselineFrameNormal, type BaselineFrameOptions, type BaselineFrameOrigin, type BattleHandoverLineOptions, type BattlePositionOptions, type BlockArrowHeadStyle, type BlockArrowOptions, type BlockMissionTaskOptions, type BlockOptions, type BoundaryOptions, type BoxTransformDelta, type BreachOptions, type BridgeheadLineOptions, type BypassOptions, CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, type CanalizeOptions, type CanonicalTextAmplifiers, type ClassicArrowHeadStyle, type ClassicArrowOptions, type ClearOptions, type ControlMeasure, type ControlMeasureDrawRule, type ControlMeasureFillCapability, type ControlMeasureGeometry, type ControlMeasureGeometryType, type ControlMeasureId, type ControlMeasureKind, type ControlMeasureMetadata, type ControlMeasurePaintCapability, type ControlMeasureRender, type ControlMeasureRenderContext, type ControlMeasureStyle, type CounterattackByFireOptions, type CounterattackOptions, type CoverOptions, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_SECTOR_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LABEL_HEIGHT_CSS_PIXELS, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PORTRAYAL, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STROKE_DASH_CSS_PIXELS, DEFAULT_STROKE_WIDTH_CSS_PIXELS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, type DelayOptions, type DirectionOfAttackAviationOptions, type DirectionOfMainAttackOptions, type DirectionOfSupportingAttackOptions, type DisengageOptions, type DisruptMissionTaskOptions, type DisruptOptions, EPSILON, type EncirclementOptions, type EngineerWorkLineOptions, FILL_PATTERN_DEFINITIONS, type FLOTOptions, type FeaturePartProps, type FillPattern, type FillPatternCommand, type FillPatternDefinition, type FinalProtectiveFireOptions, type FixMissionTaskOptions, type FixOptions, type FortifiedAreaOptions, type FortifiedLineOptions, type ForwardEdgeOfBattleAreaOptions, type FrontalAttackOptions, type GeneratedLabelKey, type GenericC2LineOptions, type GenericCircleOptions, type GenericLineOptions, type GenericPolygonOptions, type GenericRectangleOptions, type GenericSectorOptions, type GenericTextOptions, type GuardOptions, type HandoverLineOptions, type HoldingLineOptions, type JointTacticalActionAreaOptions, type LabelPlacementOverride, type LabelSizeOptions, type LandingZoneOptions, type LightLineOptions, type LogicalTextStyle, type MainAttackOptions, type MeasureTextRequest, type MeasuredText, type MidpointPerpendicularDrawRuleOptions, type MineType, type MinefieldOptions, NON_SOLID_FILL_PATTERNS, type ObstacleBypassDifficultOptions, type ObstacleBypassEasyOptions, type ObstacleBypassImpossibleOptions, type OptionsByKind, PARAMETER_PRESENTATION_TIERS, type ParamDescriptor, type ParameterPresentationTier, type ParameterSemanticRole, type PatternId, type PatternPaint, type PatternPathOperation, type PatternPoint, type PatternStroke, type PenetrateOptions, type PhaseLineOptions, type PickupZoneOptions, type Point2D, type PrincipalDirectionOfFireOptions, RADAR_SEARCH_DOCTRINE_FILL_COLOR, RADAR_SEARCH_DOCTRINE_STROKE_COLOR, type RadarSearchDoctrineOptions, type RearwardPassageOfLinesOptions, type ReleaseLineOptions, type RenderOptions, type RetireOptions, SECONDARY_DIRECTION_OF_FIRE_DASH, type ScreenOptions, type SecondaryDirectionOfFireOptions, type SeizeOptions, type SimpleStyleProps, type SimpleStyleRender, type StrongPointOptions, type StyleHints, type SupportByFireOptions, type SupportingAttackOptions, TEXT_AMPLIFIER_FIELDS, type TacticalArrowOptions, type TextAmplifierDescriptor, type TextAmplifierField, type TextAmplifierKey, type TextAmplifiers, type TurnOptions, type TurningMovementOptions, type WithdrawOptions, type WithdrawUnderPressureOptions, ambushDrawRule, applyBoxTransformOptions, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, dynamicPointDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getDefaultOptions, getFillPatternDefinition, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, sectorDrawRule, snapToMidpointPerpendicular, sphericalBearing, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };