@orbat-mapper/control-measures 0.6.0 → 0.8.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/dist/{index-DCgWC2Q8.d.mts → index-QyKWkgNo.d.mts} +144 -86
- package/dist/index.d.mts +3 -2
- package/dist/index.mjs +3 -2
- package/dist/patterns-CcQmmOuJ.d.mts +116 -0
- package/dist/patterns.d.mts +2 -0
- package/dist/patterns.mjs +205 -0
- package/dist/preview/index.d.mts +15 -11
- package/dist/preview/index.mjs +67 -84
- package/dist/{renderControlMeasure-D6VScGE0.mjs → renderControlMeasure-BHIGHuop.mjs} +909 -273
- package/media/limited-access-area.svg +1 -1
- package/media/mined-area.svg +1 -0
- package/media/minefield-dynamic.svg +1 -0
- package/media/minefield.svg +1 -0
- package/media/no-fire-area-irregular.svg +1 -1
- package/package.json +2 -1
|
@@ -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
|
|
@@ -218,7 +219,7 @@ declare function normalizeTextAmplifiers(input: TextAmplifiers | undefined): Can
|
|
|
218
219
|
//#region src/metadata.d.ts
|
|
219
220
|
type ControlMeasureGeometryType = Geometry["type"];
|
|
220
221
|
type ControlMeasureGeometry = "point" | "line" | "area";
|
|
221
|
-
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", "Sector"];
|
|
222
|
+
declare const DRAW_RULE_IDS: readonly ["Area1", "Area5", "Area6", "Area7", "Area8", "Area11", "Area12", "Area15", "Area17", "Area21", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line23", "Line24", "Line26", "Line27", "Line29", "Point1", "Point2", "Point12", "Point18", "Rectangle", "Sector"];
|
|
222
223
|
type DrawRuleId = (typeof DRAW_RULE_IDS)[number];
|
|
223
224
|
declare const PARAMETER_PRESENTATION_TIERS: readonly ["primary", "standard", "advanced"];
|
|
224
225
|
type ParameterPresentationTier = (typeof PARAMETER_PRESENTATION_TIERS)[number];
|
|
@@ -352,6 +353,50 @@ interface ControlMeasurePaintCapability {
|
|
|
352
353
|
text: boolean;
|
|
353
354
|
}
|
|
354
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
|
|
355
400
|
//#region src/define.d.ts
|
|
356
401
|
/**
|
|
357
402
|
* The loosest `FeatureCollection` a control-measure generator may emit: any
|
|
@@ -361,6 +406,13 @@ type AnyFeatureCollection = FeatureCollection<Geometry, Record<string, unknown>
|
|
|
361
406
|
/** Read-only instance state that can affect generated geometry. */
|
|
362
407
|
interface ControlMeasureGeneratorContext {
|
|
363
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;
|
|
364
416
|
}
|
|
365
417
|
/**
|
|
366
418
|
* A generator's call signature, constrained only by its inputs and output. The
|
|
@@ -506,6 +558,7 @@ interface BoundaryOptions {
|
|
|
506
558
|
* measure is screen-anchored; required to resolve `echelonSizePixels` and to
|
|
507
559
|
* lock the T/AS text size to the glyph height.
|
|
508
560
|
*/
|
|
561
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
509
562
|
metersPerPixel?: number;
|
|
510
563
|
/**
|
|
511
564
|
* Number of label groups (echelon + designators), spaced evenly by cumulative
|
|
@@ -580,7 +633,7 @@ declare const DEFAULT_BOUNDARY_OPTIONS: BoundaryOptions;
|
|
|
580
633
|
* @param textAmplifiers - Normalized text amplifiers (ADR-0027): `T`/`AS` label
|
|
581
634
|
* unit 1 (left-of-travel side), `T1`/`AS1` label unit 2 (right-of-travel side).
|
|
582
635
|
*/
|
|
583
|
-
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>;
|
|
584
637
|
//#endregion
|
|
585
638
|
//#region src/projection.d.ts
|
|
586
639
|
type Point2D = [number, number];
|
|
@@ -648,6 +701,7 @@ interface LabelSizeOptions {
|
|
|
648
701
|
* Meters-per-pixel at the current view. Stamped by the host when the labels
|
|
649
702
|
* are screen-anchored; resolves `labelSizePixels` to the projected-meter
|
|
650
703
|
* height that meter-denominated placement (offsets, gaps, row pitch) needs.
|
|
704
|
+
* @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead.
|
|
651
705
|
*/
|
|
652
706
|
metersPerPixel?: number;
|
|
653
707
|
}
|
|
@@ -689,7 +743,7 @@ declare const DEFAULT_LIGHT_LINE_OPTIONS: LightLineOptions;
|
|
|
689
743
|
* Creates a Light line control measure: a polyline through `positions`
|
|
690
744
|
* labeled "LL" above the line near each end.
|
|
691
745
|
*/
|
|
692
|
-
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>;
|
|
693
747
|
//#endregion
|
|
694
748
|
//#region src/generators/cm11-command-control-lines/engineer-work-line.d.ts
|
|
695
749
|
/** Configuration options for the Engineer work line control measure. */
|
|
@@ -720,7 +774,7 @@ declare const DEFAULT_ENGINEER_WORK_LINE_OPTIONS: EngineerWorkLineOptions;
|
|
|
720
774
|
* above the line, T1/AS1 below). No center group is emitted when all four
|
|
721
775
|
* amplifiers are empty.
|
|
722
776
|
*/
|
|
723
|
-
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>;
|
|
724
778
|
//#endregion
|
|
725
779
|
//#region src/generators/cm11-command-control-lines/generic-c2-line.d.ts
|
|
726
780
|
/** Configuration options for the Generic command and control line. */
|
|
@@ -751,70 +805,7 @@ declare const DEFAULT_GENERIC_C2_LINE_OPTIONS: GenericC2LineOptions;
|
|
|
751
805
|
* (inset from the tip, anchored toward the line's interior), one at
|
|
752
806
|
* `base + perp·offset` and the other at `base − perp·offset`.
|
|
753
807
|
*/
|
|
754
|
-
declare function createGenericC2Line(positions: Position[], options?: GenericC2LineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
755
|
-
//#endregion
|
|
756
|
-
//#region src/style.d.ts
|
|
757
|
-
/**
|
|
758
|
-
* Framework-agnostic style hints attached to a `ControlMeasure`.
|
|
759
|
-
*
|
|
760
|
-
* Mirrors the per-feature subset of what map adapters render. The renderer
|
|
761
|
-
* fans these into each emitted feature's `properties.style` ([[StyleHints]]).
|
|
762
|
-
* Adapters merge them over their layer-level style; generator-emitted hints
|
|
763
|
-
* on individual features win over both.
|
|
764
|
-
*/
|
|
765
|
-
interface ControlMeasureStyle {
|
|
766
|
-
/**
|
|
767
|
-
* The single symbol color. Control measures are monocolor: one color paints
|
|
768
|
-
* every part, stroked or filled. Input-only — resolved into concrete
|
|
769
|
-
* `strokeColor` / `fillColor` per feature by the renderer and never emitted
|
|
770
|
-
* on output. `strokeColor` / `fillColor` act as optional per-channel
|
|
771
|
-
* overrides. See ADR-0011.
|
|
772
|
-
*/
|
|
773
|
-
color?: string;
|
|
774
|
-
strokeColor?: string;
|
|
775
|
-
strokeWidth?: number;
|
|
776
|
-
strokeDash?: number[];
|
|
777
|
-
fillColor?: string;
|
|
778
|
-
/**
|
|
779
|
-
* How a filled part's interior is painted. `"solid"` is explicit so a
|
|
780
|
-
* measure can override a patterned layer default (e.g. a hatch fill set
|
|
781
|
-
* at the façade). Pattern lines are drawn in the resolved fill color —
|
|
782
|
-
* alpha included, there is no separate opacity field. Renderers that
|
|
783
|
-
* cannot draw a pattern degrade to solid.
|
|
784
|
-
*/
|
|
785
|
-
fillPattern?: FillPattern;
|
|
786
|
-
/**
|
|
787
|
-
* Display-time graphic opacity multiplier in `[0, 1]`; absent = fully
|
|
788
|
-
* opaque. Unlike `color`'s alpha, this fades the whole graphic — stroke,
|
|
789
|
-
* fill, patterns, and baked labels — as one knob, independent of the
|
|
790
|
-
* authored color. The resolver folds it into each resolved part's color
|
|
791
|
-
* alpha (`final alpha = opacity × color alpha`) rather than adding a new
|
|
792
|
-
* paint channel, so adapters and `toSimpleStyle` need no changes.
|
|
793
|
-
* Display-only: hit-testing and selection reason about color alpha, not
|
|
794
|
-
* this multiplier, so a graphic at `opacity: 0` stays fully selectable.
|
|
795
|
-
* Out-of-range values clamp to `[0, 1]`. See ADR-0040.
|
|
796
|
-
*/
|
|
797
|
-
opacity?: number;
|
|
798
|
-
/**
|
|
799
|
-
* Render a contrast-aware halo behind label glyphs so text stays legible on
|
|
800
|
-
* busy backgrounds. Cascades like any other hint (graphicsStyle → measure →
|
|
801
|
-
* generator), letting a host switch halos on for every labeled measure
|
|
802
|
-
* rather than only the generic Text graphic.
|
|
803
|
-
*
|
|
804
|
-
* Text-only: the renderer applies it to features that carry `text` and drops
|
|
805
|
-
* it everywhere else, so a layer-level `true` never leaks onto plain stroked
|
|
806
|
-
* or filled parts. The halo *color* is not authored here — it is derived per
|
|
807
|
-
* feature from the resolved text color, so each label gets a halo that
|
|
808
|
-
* actually contrasts with it. Unlike the other hints this one is consumed by
|
|
809
|
-
* the renderer and lifted to a top-level `textHalo` feature property; it is
|
|
810
|
-
* never emitted on `properties.style`. See ADR-0042.
|
|
811
|
-
*/
|
|
812
|
-
textHalo?: boolean;
|
|
813
|
-
}
|
|
814
|
-
/**
|
|
815
|
-
* How a filled part's interior is painted. See `ControlMeasureStyle.fillPattern`.
|
|
816
|
-
*/
|
|
817
|
-
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>;
|
|
818
809
|
//#endregion
|
|
819
810
|
//#region src/internal/area-labels.d.ts
|
|
820
811
|
/** Shared placement options for the centered-label area measures. */
|
|
@@ -908,6 +899,7 @@ interface BattlePositionOptions extends AreaLabelOptions {
|
|
|
908
899
|
* Meters-per-pixel at the current zoom/latitude. Stamped by the host when the
|
|
909
900
|
* measure is screen-anchored; required to resolve `echelonSizePixels`.
|
|
910
901
|
*/
|
|
902
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
911
903
|
metersPerPixel?: number;
|
|
912
904
|
/**
|
|
913
905
|
* Round the area's corners by curving the boundary through the control points
|
|
@@ -940,6 +932,17 @@ declare const DEFAULT_BATTLE_POSITION_OPTIONS: BattlePositionOptions;
|
|
|
940
932
|
*/
|
|
941
933
|
declare function createBattlePosition(positions: Position[], options?: BattlePositionOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
942
934
|
//#endregion
|
|
935
|
+
//#region src/generators/cm15-maneuver-areas/contain.d.ts
|
|
936
|
+
interface ContainOptions extends LabelSizeOptions {
|
|
937
|
+
/** Extra clearance around the C and ENY labels, as a ratio of text height. */
|
|
938
|
+
labelPadding?: number;
|
|
939
|
+
/** Number of line segments used to approximate the complete semicircle. */
|
|
940
|
+
resolution?: number;
|
|
941
|
+
}
|
|
942
|
+
declare const DEFAULT_CONTAIN_OPTIONS: Required<Pick<ContainOptions, "labelPadding" | "resolution">>;
|
|
943
|
+
/** Creates the Contain semicircle, inward tics, center-pointing arrow, and C label. */
|
|
944
|
+
declare function createContain(coordinates: Position[], options?: ContainOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
945
|
+
//#endregion
|
|
943
946
|
//#region src/generators/cm15-maneuver-areas/strongPoint.d.ts
|
|
944
947
|
/** Configuration options for the Strong Point control measure. */
|
|
945
948
|
type StrongPointOptions = BattlePositionOptions;
|
|
@@ -960,6 +963,21 @@ declare const DEFAULT_STRONG_POINT_OPTIONS: StrongPointOptions;
|
|
|
960
963
|
*/
|
|
961
964
|
declare function createStrongPoint(positions: Position[], options?: StrongPointOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
962
965
|
//#endregion
|
|
966
|
+
//#region src/generators/cm15-maneuver-areas/retain.d.ts
|
|
967
|
+
interface RetainOptions extends LabelSizeOptions {
|
|
968
|
+
/** Angular opening on the friendly side, in degrees. */
|
|
969
|
+
openingAngle?: number;
|
|
970
|
+
/** Open-arrowhead length as a ratio of the radius. */
|
|
971
|
+
arrowheadLengthRatio?: number;
|
|
972
|
+
/** Open-arrowhead base width as a ratio of the radius. */
|
|
973
|
+
arrowheadWidthRatio?: number;
|
|
974
|
+
/** Extra clearance around R, on each side, as a ratio of its height. */
|
|
975
|
+
labelPadding?: number;
|
|
976
|
+
}
|
|
977
|
+
declare const DEFAULT_RETAIN_OPTIONS: Required<Pick<RetainOptions, "openingAngle" | "arrowheadLengthRatio" | "arrowheadWidthRatio" | "labelPadding">>;
|
|
978
|
+
/** Creates the Retain boundary, outward tics, and intrinsic R label. */
|
|
979
|
+
declare function createRetain(coordinates: Position[], options?: RetainOptions): FeatureCollection<MultiLineString | Point>;
|
|
980
|
+
//#endregion
|
|
963
981
|
//#region src/generators/cm14-maneuver-lines/direction-of-attack-aviation.d.ts
|
|
964
982
|
interface DirectionOfAttackAviationOptions extends LabelSizeOptions, SmoothLineOptions {
|
|
965
983
|
/** Arrowhead length as a ratio of the route's total length. @default 0.12 */
|
|
@@ -1510,6 +1528,7 @@ interface EchelonLabeledAreaOptions extends LabeledAreaOptions {
|
|
|
1510
1528
|
* Meters-per-pixel at the current zoom/latitude. Stamped by the host when
|
|
1511
1529
|
* the measure is screen-anchored; required to resolve `echelonSizePixels`.
|
|
1512
1530
|
*/
|
|
1531
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
1513
1532
|
metersPerPixel?: number;
|
|
1514
1533
|
}
|
|
1515
1534
|
//#endregion
|
|
@@ -1713,10 +1732,6 @@ interface FilledAreaOptions {
|
|
|
1713
1732
|
/** Fill the polygon interior; false renders only its outline. */
|
|
1714
1733
|
filled?: boolean;
|
|
1715
1734
|
}
|
|
1716
|
-
interface ArcResolutionOptions {
|
|
1717
|
-
/** Number of segments in a full 360° sweep. */
|
|
1718
|
-
resolution?: number;
|
|
1719
|
-
}
|
|
1720
1735
|
//#endregion
|
|
1721
1736
|
//#region src/generators/cm99-generic-graphics/line.d.ts
|
|
1722
1737
|
type GenericLineOptions = SmoothPathOptions;
|
|
@@ -1739,6 +1754,12 @@ declare function createGenericRectangle(coordinates: Position[], options?: Gener
|
|
|
1739
1754
|
fill: boolean;
|
|
1740
1755
|
}>;
|
|
1741
1756
|
//#endregion
|
|
1757
|
+
//#region src/generators/arc-params.d.ts
|
|
1758
|
+
interface ArcResolutionOptions {
|
|
1759
|
+
/** Number of segments in a full 360° sweep. */
|
|
1760
|
+
resolution?: number;
|
|
1761
|
+
}
|
|
1762
|
+
//#endregion
|
|
1742
1763
|
//#region src/generators/cm99-generic-graphics/circle.d.ts
|
|
1743
1764
|
interface GenericCircleOptions extends FilledAreaOptions, ArcResolutionOptions {}
|
|
1744
1765
|
declare const DEFAULT_GENERIC_CIRCLE_OPTIONS: Required<GenericCircleOptions>;
|
|
@@ -1798,6 +1819,16 @@ interface GenericTextOptions {
|
|
|
1798
1819
|
declare const DEFAULT_GENERIC_TEXT_OPTIONS: GenericTextOptions;
|
|
1799
1820
|
declare function createGenericText(coordinates: Position[], options?: GenericTextOptions): FeatureCollection<Point, Record<string, unknown>>;
|
|
1800
1821
|
//#endregion
|
|
1822
|
+
//#region src/generators/cm20-maritime-control-areas/radar-search-doctrine.d.ts
|
|
1823
|
+
interface RadarSearchDoctrineOptions extends ArcResolutionOptions, LabelSizeOptions {}
|
|
1824
|
+
declare const DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS: {
|
|
1825
|
+
resolution: number;
|
|
1826
|
+
};
|
|
1827
|
+
/** Doctrinal RSD colors from the symbol specification. */
|
|
1828
|
+
declare const RADAR_SEARCH_DOCTRINE_STROKE_COLOR = "rgb(51, 136, 136)";
|
|
1829
|
+
declare const RADAR_SEARCH_DOCTRINE_FILL_COLOR = "rgba(51, 136, 136, 0.25)";
|
|
1830
|
+
declare function createRadarSearchDoctrine(coordinates: Position[], options?: RadarSearchDoctrineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<Polygon | Point>;
|
|
1831
|
+
//#endregion
|
|
1801
1832
|
//#region src/generators/cm15-maneuver-areas/airborneAttack.d.ts
|
|
1802
1833
|
type AirborneAttackOptions = AttackOptions;
|
|
1803
1834
|
declare const DEFAULT_AIRBORNE_ATTACK_OPTIONS: Required<AirborneAttackOptions>;
|
|
@@ -1898,6 +1929,7 @@ interface FLOTOptions extends SmoothLineOptions, LineLabelOptions {
|
|
|
1898
1929
|
* Required when using radiusPixels for zoom-aware sizing.
|
|
1899
1930
|
* Can be obtained from the map view's resolution or calculated using getMetersPerPixel().
|
|
1900
1931
|
*/
|
|
1932
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
1901
1933
|
metersPerPixel?: number;
|
|
1902
1934
|
/**
|
|
1903
1935
|
* The number of points used to render each individual semi-circle.
|
|
@@ -1929,7 +1961,7 @@ declare const DEFAULT_FLOT_OPTIONS: Required<Omit<FLOTOptions, keyof LineLabelOp
|
|
|
1929
1961
|
* );
|
|
1930
1962
|
* ```
|
|
1931
1963
|
*/
|
|
1932
|
-
declare function createFLOT(positions: Position[], options?: FLOTOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
1964
|
+
declare function createFLOT(positions: Position[], options?: FLOTOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
1933
1965
|
//#endregion
|
|
1934
1966
|
//#region src/generators/cm14-maneuver-lines/phase-line.d.ts
|
|
1935
1967
|
/** Configuration options for the Phase line control measure. */
|
|
@@ -1948,7 +1980,7 @@ declare const DEFAULT_PHASE_LINE_OPTIONS: PhaseLineOptions;
|
|
|
1948
1980
|
* Creates a Phase line control measure: a polyline through `positions`
|
|
1949
1981
|
* labeled at each end with `T` (optionally "PL"-prefixed).
|
|
1950
1982
|
*/
|
|
1951
|
-
declare function createPhaseLine(positions: Position[], options?: PhaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
1983
|
+
declare function createPhaseLine(positions: Position[], options?: PhaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
1952
1984
|
//#endregion
|
|
1953
1985
|
//#region src/generators/cm14-maneuver-lines/forward-edge-of-battle-area.d.ts
|
|
1954
1986
|
/** Configuration options for the Forward edge of the battle area control measure. */
|
|
@@ -1973,7 +2005,7 @@ declare const DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS: ForwardEdgeOfBattleAr
|
|
|
1973
2005
|
* Creates a Forward edge of the battle area control measure: a polyline
|
|
1974
2006
|
* through `positions` labeled "FEBA" above the line near each end.
|
|
1975
2007
|
*/
|
|
1976
|
-
declare function createForwardEdgeOfBattleArea(positions: Position[], options?: ForwardEdgeOfBattleAreaOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2008
|
+
declare function createForwardEdgeOfBattleArea(positions: Position[], options?: ForwardEdgeOfBattleAreaOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
1977
2009
|
//#endregion
|
|
1978
2010
|
//#region src/generators/cm14-maneuver-lines/bridgehead-line.d.ts
|
|
1979
2011
|
/** Configuration options for the Bridgehead line control measure. */
|
|
@@ -1986,7 +2018,7 @@ interface BridgeheadLineOptions extends LineLabelOptions, SmoothLineOptions {
|
|
|
1986
2018
|
/** Default options for the Bridgehead line control measure. */
|
|
1987
2019
|
declare const DEFAULT_BRIDGEHEAD_LINE_OPTIONS: BridgeheadLineOptions;
|
|
1988
2020
|
/** Creates a Bridgehead line labeled "BL" above both ends. */
|
|
1989
|
-
declare function createBridgeheadLine(positions: Position[], options?: BridgeheadLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2021
|
+
declare function createBridgeheadLine(positions: Position[], options?: BridgeheadLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
1990
2022
|
//#endregion
|
|
1991
2023
|
//#region src/generators/cm14-maneuver-lines/holding-line.d.ts
|
|
1992
2024
|
/** Configuration options for the Holding line control measure. */
|
|
@@ -1999,7 +2031,7 @@ interface HoldingLineOptions extends LineLabelOptions, SmoothLineOptions {
|
|
|
1999
2031
|
/** Default options for the Holding line control measure. */
|
|
2000
2032
|
declare const DEFAULT_HOLDING_LINE_OPTIONS: HoldingLineOptions;
|
|
2001
2033
|
/** Creates a Holding line labeled "HL" above both ends. */
|
|
2002
|
-
declare function createHoldingLine(positions: Position[], options?: HoldingLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2034
|
+
declare function createHoldingLine(positions: Position[], options?: HoldingLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2003
2035
|
//#endregion
|
|
2004
2036
|
//#region src/generators/cm14-maneuver-lines/release-line.d.ts
|
|
2005
2037
|
/** Configuration options for the Release line control measure. */
|
|
@@ -2012,7 +2044,7 @@ interface ReleaseLineOptions extends LineLabelOptions, SmoothLineOptions {
|
|
|
2012
2044
|
/** Default options for the Release line control measure. */
|
|
2013
2045
|
declare const DEFAULT_RELEASE_LINE_OPTIONS: ReleaseLineOptions;
|
|
2014
2046
|
/** Creates a Release line labeled "RL" above both ends. */
|
|
2015
|
-
declare function createReleaseLine(positions: Position[], options?: ReleaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2047
|
+
declare function createReleaseLine(positions: Position[], options?: ReleaseLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2016
2048
|
//#endregion
|
|
2017
2049
|
//#region src/generators/cm14-maneuver-lines/handover-line.d.ts
|
|
2018
2050
|
/** Configuration options for the Handover line control measure. */
|
|
@@ -2039,7 +2071,7 @@ declare const DEFAULT_HANDOVER_LINE_OPTIONS: HandoverLineOptions;
|
|
|
2039
2071
|
* Creates a Handover line control measure: a polyline through `positions`
|
|
2040
2072
|
* labeled "HOL" above the line near each end.
|
|
2041
2073
|
*/
|
|
2042
|
-
declare function createHandoverLine(positions: Position[], options?: HandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2074
|
+
declare function createHandoverLine(positions: Position[], options?: HandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2043
2075
|
//#endregion
|
|
2044
2076
|
//#region src/generators/cm14-maneuver-lines/battle-handover-line.d.ts
|
|
2045
2077
|
/** Configuration options for the Battle handover line control measure. */
|
|
@@ -2066,7 +2098,7 @@ declare const DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS: BattleHandoverLineOptions;
|
|
|
2066
2098
|
* Creates a Battle handover line control measure: a polyline through
|
|
2067
2099
|
* `positions` labeled "BHL" above the line near each end.
|
|
2068
2100
|
*/
|
|
2069
|
-
declare function createBattleHandoverLine(positions: Position[], options?: BattleHandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2101
|
+
declare function createBattleHandoverLine(positions: Position[], options?: BattleHandoverLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2070
2102
|
//#endregion
|
|
2071
2103
|
//#region src/generators/cm34-mission-tasks/block.d.ts
|
|
2072
2104
|
interface BlockMissionTaskOptions {
|
|
@@ -2456,11 +2488,12 @@ interface AntitankDitchOptions extends SmoothLineOptions, LineLabelOptions {
|
|
|
2456
2488
|
* The meters-per-pixel ratio at the current zoom level and latitude. Required
|
|
2457
2489
|
* when using toothHeightPixels for zoom-aware sizing.
|
|
2458
2490
|
*/
|
|
2491
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
2459
2492
|
metersPerPixel?: number;
|
|
2460
2493
|
}
|
|
2461
2494
|
declare const DEFAULT_ANTITANK_DITCH_OPTIONS: Required<Omit<AntitankDitchOptions, keyof LineLabelOptions>>;
|
|
2462
|
-
declare function createAntitankDitchUnderConstruction(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | Point>;
|
|
2463
|
-
declare function createAntitankDitchCompleted(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiPolygon | Point>;
|
|
2495
|
+
declare function createAntitankDitchUnderConstruction(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2496
|
+
declare function createAntitankDitchCompleted(positions: Position[], options?: AntitankDitchOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiPolygon | Point>;
|
|
2464
2497
|
//#endregion
|
|
2465
2498
|
//#region src/generators/cm29-protection-lines/antitankWall.d.ts
|
|
2466
2499
|
interface AntitankWallOptions extends AntitankDitchOptions {
|
|
@@ -2472,7 +2505,7 @@ interface AntitankWallOptions extends AntitankDitchOptions {
|
|
|
2472
2505
|
toothSpacingRatio?: number;
|
|
2473
2506
|
}
|
|
2474
2507
|
declare const DEFAULT_ANTITANK_WALL_OPTIONS: Required<Omit<AntitankWallOptions, keyof LineLabelOptions>>;
|
|
2475
|
-
declare function createAntitankWall(positions: Position[], options?: AntitankWallOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | Point>;
|
|
2508
|
+
declare function createAntitankWall(positions: Position[], options?: AntitankWallOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2476
2509
|
//#endregion
|
|
2477
2510
|
//#region src/generators/cm29-protection-lines/fortifiedLine.d.ts
|
|
2478
2511
|
/**
|
|
@@ -2498,6 +2531,7 @@ interface FortifiedLineOptions extends LineLabelOptions {
|
|
|
2498
2531
|
* The meters-per-pixel ratio at the current zoom level and latitude.
|
|
2499
2532
|
* Required when using toothSizePixels for zoom-aware sizing.
|
|
2500
2533
|
*/
|
|
2534
|
+
/** @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead. */
|
|
2501
2535
|
metersPerPixel?: number;
|
|
2502
2536
|
/**
|
|
2503
2537
|
* Round the line's corners by curving the base path through the control
|
|
@@ -2529,7 +2563,7 @@ declare const DEFAULT_FORTIFIED_LINE_OPTIONS: Required<Omit<FortifiedLineOptions
|
|
|
2529
2563
|
* @param options - Configuration options for the graphic
|
|
2530
2564
|
* @returns A GeoJSON FeatureCollection containing the castellated LineString
|
|
2531
2565
|
*/
|
|
2532
|
-
declare function createFortifiedLine(positions: Position[], options?: FortifiedLineOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<LineString | Point>;
|
|
2566
|
+
declare function createFortifiedLine(positions: Position[], options?: FortifiedLineOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2533
2567
|
//#endregion
|
|
2534
2568
|
//#region src/generators/cm15-maneuver-areas/fortifiedArea.d.ts
|
|
2535
2569
|
/**
|
|
@@ -2697,7 +2731,10 @@ interface MinefieldOptions {
|
|
|
2697
2731
|
sizeMeters?: number;
|
|
2698
2732
|
/** Draw-time frame width in screen pixels; baked to `sizeMeters` on commit. @default 32 */
|
|
2699
2733
|
sizePixels?: number;
|
|
2700
|
-
/**
|
|
2734
|
+
/**
|
|
2735
|
+
* Live map resolution used to resolve `sizePixels` into projected meters.
|
|
2736
|
+
* @deprecated Supply `RenderOptions.context.groundMetersPerCssPixel` instead.
|
|
2737
|
+
*/
|
|
2701
2738
|
metersPerPixel?: number;
|
|
2702
2739
|
/** Clockwise rotation in degrees. @default 0 */
|
|
2703
2740
|
rotation?: number;
|
|
@@ -2780,7 +2817,9 @@ declare const DEFINITIONS: {
|
|
|
2780
2817
|
"engineer-work-line": ControlMeasureDefinition<"engineer-work-line", typeof createEngineerWorkLine>;
|
|
2781
2818
|
"generic-c2-line": ControlMeasureDefinition<"generic-c2-line", typeof createGenericC2Line>;
|
|
2782
2819
|
"battle-position": ControlMeasureDefinition<"battle-position", typeof createBattlePosition>;
|
|
2820
|
+
contain: ControlMeasureDefinition<"contain", typeof createContain>;
|
|
2783
2821
|
"strong-point": ControlMeasureDefinition<"strong-point", typeof createStrongPoint>;
|
|
2822
|
+
retain: ControlMeasureDefinition<"retain", typeof createRetain>;
|
|
2784
2823
|
ambush: ControlMeasureDefinition<"ambush", (controlPoints: import("geojson").Position[], options?: AmbushOptions) => import("geojson").FeatureCollection<import("geojson").MultiLineString, Record<string, never>>>;
|
|
2785
2824
|
"direction-of-attack-aviation": ControlMeasureDefinition<"direction-of-attack-aviation", typeof createDirectionOfAttackAviation>;
|
|
2786
2825
|
"direction-of-main-attack": ControlMeasureDefinition<"direction-of-main-attack", typeof createDirectionOfMainAttack>;
|
|
@@ -2829,6 +2868,7 @@ declare const DEFINITIONS: {
|
|
|
2829
2868
|
circle: ControlMeasureDefinition<"circle", typeof createGenericCircle>;
|
|
2830
2869
|
sector: ControlMeasureDefinition<"sector", typeof createGenericSector>;
|
|
2831
2870
|
text: ControlMeasureDefinition<"text", typeof createGenericText>;
|
|
2871
|
+
"radar-search-doctrine": ControlMeasureDefinition<"radar-search-doctrine", typeof createRadarSearchDoctrine>;
|
|
2832
2872
|
"airborne-attack": ControlMeasureDefinition<"airborne-attack", typeof createAirborneAttack>;
|
|
2833
2873
|
"attack-helicopter": ControlMeasureDefinition<"attack-helicopter", typeof createAttackHelicopter>;
|
|
2834
2874
|
"support-by-fire": ControlMeasureDefinition<"support-by-fire", typeof createSupportByFire>;
|
|
@@ -2941,6 +2981,8 @@ interface RenderOptions {
|
|
|
2941
2981
|
* omitted, style resolution matches the prior two-layer behavior.
|
|
2942
2982
|
*/
|
|
2943
2983
|
graphicsStyle?: ControlMeasureStyle;
|
|
2984
|
+
/** Renderer-owned portrayal inputs that must not become authored Graphic state. */
|
|
2985
|
+
context?: ControlMeasureRenderContext;
|
|
2944
2986
|
}
|
|
2945
2987
|
/**
|
|
2946
2988
|
* Pure render: `ControlMeasure` → `ControlMeasureRender` (a
|
|
@@ -3117,6 +3159,13 @@ declare function getMidpointPerpendicularSignedDistance(p1: Position, p2: Positi
|
|
|
3117
3159
|
declare function pointOnMidpointPerpendicularAxis(p1: Position, p2: Position, distance: number | null): Position | null;
|
|
3118
3160
|
declare function snapToMidpointPerpendicular(p1: Position, p2: Position, controlPoint: Position): Position | null;
|
|
3119
3161
|
//#endregion
|
|
3162
|
+
//#region src/draw-rules/area5.d.ts
|
|
3163
|
+
/**
|
|
3164
|
+
* Area5 — PT. 1/PT. 2 define the open diameter and PT. 3 defines the arrow end.
|
|
3165
|
+
* The arrow stays on the perpendicular bisector of the diameter.
|
|
3166
|
+
*/
|
|
3167
|
+
declare const containDrawRule: ControlMeasureDrawRule;
|
|
3168
|
+
//#endregion
|
|
3120
3169
|
//#region src/draw-rules/area11.d.ts
|
|
3121
3170
|
declare const blockDrawRule: ControlMeasureDrawRule;
|
|
3122
3171
|
//#endregion
|
|
@@ -3166,6 +3215,15 @@ declare const point12DrawRule: ControlMeasureDrawRule;
|
|
|
3166
3215
|
*/
|
|
3167
3216
|
declare const staticPointDrawRule: ControlMeasureDrawRule;
|
|
3168
3217
|
//#endregion
|
|
3218
|
+
//#region src/draw-rules/point18.d.ts
|
|
3219
|
+
/**
|
|
3220
|
+
* Point18 — doctrinally a numeric, single-anchor symbol. The interactive
|
|
3221
|
+
* authoring model exposes those dimensions as Sector-style radial handles:
|
|
3222
|
+
* P1 is the anchor, P2 fixes the start range/left bearing, and P3 fixes the
|
|
3223
|
+
* stop range/right bearing.
|
|
3224
|
+
*/
|
|
3225
|
+
declare const dynamicPointDrawRule: ControlMeasureDrawRule;
|
|
3226
|
+
//#endregion
|
|
3169
3227
|
//#region src/draw-rules/area7.d.ts
|
|
3170
3228
|
/**
|
|
3171
3229
|
* Area7 anchor draw rule for Attack By Fire.
|
|
@@ -3275,4 +3333,4 @@ interface AmbushOptions {
|
|
|
3275
3333
|
}
|
|
3276
3334
|
declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
|
|
3277
3335
|
//#endregion
|
|
3278
|
-
export {
|
|
3336
|
+
export { OptionsByKind as $, normalizeTextAmplifiers as $i, GenericCircleOptions as $n, StrongPointOptions as $r, DisengageOptions as $t, BaselineFrameNormal as A, ControlMeasureFillCapability as Ai, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as An, DEFAULT_AREA_DEFENSE_OPTIONS as Ar, AntitankWallOptions as At, resolveStyleHints as B, parameterPresentationTierRank as Bi, AttackHelicopterOptions as Bn, SECONDARY_DIRECTION_OF_FIRE_DASH as Br, DEFAULT_SCREEN_OPTIONS as Bt, MidpointPerpendicularDrawRuleOptions as C, DEFAULT_LINE_JOIN as Ci, HandoverLineOptions as Cn, DEFAULT_LANDING_ZONE_OPTIONS as Cr, TurningMovementOptions as Ct, pointOnMidpointPerpendicularAxis as D, LogicalTextStyle as Di, HoldingLineOptions as Dn, AssemblyAreaOptions as Dr, FortifiedAreaOptions as Dt, getMidpointPerpendicularSignedDistance as E, DEFAULT_STROKE_WIDTH_CSS_PIXELS as Ei, DEFAULT_HOLDING_LINE_OPTIONS as En, JointTacticalActionAreaOptions as Er, DEFAULT_FORTIFIED_AREA_OPTIONS as Et, getMetersPerPixel as F, PARAMETER_PRESENTATION_TIERS as Fi, FLOTOptions as Fn, ControlMeasureRender as Fr, WithdrawUnderPressureOptions as Ft, renderControlMeasure as G, CanonicalTextAmplifiers as Gi, RADAR_SEARCH_DOCTRINE_FILL_COLOR as Gn, DirectionOfSupportingAttackOptions as Gr, RearwardPassageOfLinesOptions as Gt, foldsBoxTransformOptions as H, resolveParameterSemanticRole as Hi, AirborneAttackOptions as Hn, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as Hr, DEFAULT_RETIRE_OPTIONS as Ht, roundToFixed as I, ParamDescriptor as Ii, AttackByFireOptions as In, FeaturePartProps as Ir, DEFAULT_WITHDRAW_OPTIONS as It, isKind as J, TEXT_AMPLIFIER_FIELDS as Ji, DEFAULT_GENERIC_TEXT_OPTIONS as Jn, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as Jr, DEFAULT_GUARD_OPTIONS as Jt, ControlMeasure as K, GeneratedLabelKey as Ki, RADAR_SEARCH_DOCTRINE_STROKE_COLOR as Kn, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as Kr, DEFAULT_PENETRATE_OPTIONS as Kt, SimpleStyleProps as L, ParameterPresentationTier as Li, DEFAULT_ATTACK_BY_FIRE_OPTIONS as Ln, StyleHints as Lr, WithdrawOptions as Lt, BaselineFrameOrigin as M, ControlMeasureGeometryType as Mi, DEFAULT_PHASE_LINE_OPTIONS as Mn, EncirclementOptions as Mr, AntitankDitchOptions as Mt, createBaselineFrame as N, ControlMeasureMetadata as Ni, PhaseLineOptions as Nn, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as Nr, DEFAULT_ANTITANK_DITCH_OPTIONS as Nt, snapToMidpointPerpendicular as O, MeasureTextRequest as Oi, BridgeheadLineOptions as On, DEFAULT_ASSEMBLY_AREA_OPTIONS as Or, DEFAULT_FORTIFIED_LINE_OPTIONS as Ot, EPSILON as P, ControlMeasurePaintCapability as Pi, DEFAULT_FLOT_OPTIONS as Pn, FinalProtectiveFireOptions as Pr, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as Pt, ControlMeasureKind as Q, canonicalTextAmplifierKey as Qi, DEFAULT_GENERIC_CIRCLE_OPTIONS as Qn, DEFAULT_STRONG_POINT_OPTIONS as Qr, DEFAULT_DISENGAGE_OPTIONS as Qt, SimpleStyleRender as R, ParameterSemanticRole as Ri, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as Rn, controlMeasureIdFromFeature as Rr, DEFAULT_SEIZE_OPTIONS as Rt, containDrawRule as S, DEFAULT_LINE_CAP as Si, DEFAULT_HANDOVER_LINE_OPTIONS as Sn, MineType as Sr, DEFAULT_TURNING_MOVEMENT_OPTIONS as St, createMidpointPerpendicularDrawRule as T, DEFAULT_STROKE_DASH_CSS_PIXELS as Ti, ReleaseLineOptions as Tn, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as Tr, FrontalAttackOptions as Tt, freezeOrientationOptions as U, AmplifierPlacement as Ui, DEFAULT_AIRBORNE_ATTACK_OPTIONS as Un, PrincipalDirectionOfFireOptions as Ur, RetireOptions as Ut, applyBoxTransformOptions as V, resolveParameterPresentationTier as Vi, DEFAULT_ATTACK_HELICOPTER_OPTIONS as Vn, SecondaryDirectionOfFireOptions as Vr, ScreenOptions as Vt, RenderOptions as W, AmplifierPlacements as Wi, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS as Wn, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as Wr, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as Wt, CONTROL_MEASURE_METADATA as X, TextAmplifierKey as Xi, DEFAULT_GENERIC_SECTOR_OPTIONS as Xn, DEFAULT_RETAIN_OPTIONS as Xr, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as Xt, CONTROL_MEASURE_IDS as Y, TextAmplifierField as Yi, GenericTextOptions as Yn, DirectionOfAttackAviationOptions as Yr, GuardOptions as Yt, ControlMeasureId as Z, TextAmplifiers as Zi, GenericSectorOptions as Zn, RetainOptions as Zr, DisruptMissionTaskOptions as Zt, point12DrawRule as _, DEFAULT_BOUNDARY_OPTIONS as _i, DEFAULT_BREACH_OPTIONS as _n, computeInitialWidthPoint as _r, FixOptions as _t, axis1DrawRule as a, GenericC2LineOptions as ai, TacticalArrowOptions as an, GenericLineOptions as ar, ObstacleBypassImpossibleOptions as at, disruptDrawRule as b, DEFAULT_LABEL_HEIGHT_CSS_PIXELS as bi, BattleHandoverLineOptions as bn, DEFAULT_PICKUP_ZONE_OPTIONS as br, BlockOptions as bt, line26DrawRule as c, DEFAULT_LIGHT_LINE_OPTIONS as ci, CounterattackOptions as cn, DEFAULT_BLOCK_ARROW_OPTIONS as cr, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as ct, turnDrawRule as d, Point2D as di, DEFAULT_CLEAR_OPTIONS as dn, DEFAULT_CLASSIC_ARROW_OPTIONS as dr, MinefieldOptions as dt, resolveAmplifierPlacement as ea, ContainOptions as ei, DEFAULT_DELAY_OPTIONS as en, DEFAULT_GENERIC_RECTANGLE_OPTIONS as er, getControlMeasureMetadata as et, line1DrawRule as f, haversineDistance as fi, CanalizeOptions as fn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as fr, DEFAULT_TURN_OPTIONS as ft, staticPointDrawRule as g, BoundaryOptions as gi, BreachOptions as gn, calculateMetrics as gr, DEFAULT_FIX_OPTIONS as gt, dynamicPointDrawRule as h, unproject as hi, DEFAULT_BYPASS_OPTIONS as hn, MainAttackOptions as hr, FixMissionTaskOptions as ht, rectangleDrawRule as i, DEFAULT_GENERIC_C2_LINE_OPTIONS as ii, DEFAULT_TACTICAL_ARROW_OPTIONS as in, DEFAULT_GENERIC_LINE_OPTIONS as ir, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as it, BaselineFrameOptions as j, ControlMeasureGeometry as ji, ForwardEdgeOfBattleAreaOptions as jn, DEFAULT_ENCIRCLEMENT_OPTIONS as jr, DEFAULT_ANTITANK_WALL_OPTIONS as jt, BaselineFrame as k, MeasuredText as ki, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as kn, AreaDefenseOptions as kr, FortifiedLineOptions as kt, line24DrawRule as l, LightLineOptions as li, DEFAULT_COUNTERATTACK_OPTIONS as ln, ClassicArrowHeadStyle as lr, ObstacleBypassEasyOptions as lt, attackByFireDrawRule as m, sphericalBearing as mi, BypassOptions as mn, DEFAULT_MAIN_ATTACK_OPTIONS as mr, DEFAULT_FIX_MISSION_TASK_OPTIONS as mt, DEFAULT_AMBUSH_OPTIONS as n, ControlMeasureDrawRule as na, BattlePositionOptions as ni, CoverOptions as nn, DEFAULT_GENERIC_POLYGON_OPTIONS as nr, getDefaultOptions as nt, supportByFireDrawRule as o, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as oi, CounterattackByFireOptions as on, BlockArrowHeadStyle as or, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as ot, ambushDrawRule as p, project as pi, DEFAULT_CANALIZE_OPTIONS as pn, SupportingAttackOptions as pr, TurnOptions as pt, cloneControlMeasure as q, LabelPlacementOverride as qi, RadarSearchDoctrineOptions as qn, DirectionOfMainAttackOptions as qr, PenetrateOptions as qt, sectorDrawRule as r, DEFAULT_BATTLE_POSITION_OPTIONS as ri, DEFAULT_COVER_OPTIONS as rn, GenericPolygonOptions as rr, listControlMeasureMetadata as rt, line27DrawRule as s, EngineerWorkLineOptions as si, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as sn, BlockArrowOptions as sr, ObstacleBypassDifficultOptions as st, AmbushOptions as t, AnchorTransformEvent as ta, DEFAULT_CONTAIN_OPTIONS as ti, DelayOptions as tn, GenericRectangleOptions as tr, getControlMeasureMetadataByValue as tt, line23DrawRule as u, LabelSizeOptions as ui, ClearOptions as un, ClassicArrowOptions as ur, DEFAULT_MINEFIELD_OPTIONS as ut, penetrateDrawRule as v, BoxTransformDelta as vi, BlockMissionTaskOptions as vn, AreaOfOperationsOptions as vr, DEFAULT_DISRUPT_OPTIONS as vt, computeDefaultMidpointPerpendicularPoint as w, DEFAULT_PORTRAYAL as wi, DEFAULT_RELEASE_LINE_OPTIONS as wn, LandingZoneOptions as wr, DEFAULT_FRONTAL_ATTACK_OPTIONS as wt, blockDrawRule as x, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS as xi, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as xn, PickupZoneOptions as xr, DEFAULT_BLOCK_OPTIONS as xt, centerRadiusDrawRule as y, ControlMeasureRenderContext as yi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as yn, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as yr, DisruptOptions as yt, toSimpleStyle as z, TextAmplifierDescriptor as zi, SupportByFireOptions as zn, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as zr, SeizeOptions as zt };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
|
|
1
|
+
import { $ as OptionsByKind, $i as normalizeTextAmplifiers, $n as GenericCircleOptions, $r as StrongPointOptions, $t as DisengageOptions, A as BaselineFrameNormal, Ai as ControlMeasureFillCapability, An as DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, Ar as DEFAULT_AREA_DEFENSE_OPTIONS, At as AntitankWallOptions, B as resolveStyleHints, Bi as parameterPresentationTierRank, Bn as AttackHelicopterOptions, Br as SECONDARY_DIRECTION_OF_FIRE_DASH, Bt as DEFAULT_SCREEN_OPTIONS, C as MidpointPerpendicularDrawRuleOptions, Ci as DEFAULT_LINE_JOIN, Cn as HandoverLineOptions, Cr as DEFAULT_LANDING_ZONE_OPTIONS, Ct as TurningMovementOptions, D as pointOnMidpointPerpendicularAxis, Di as LogicalTextStyle, Dn as HoldingLineOptions, Dr as AssemblyAreaOptions, Dt as FortifiedAreaOptions, E as getMidpointPerpendicularSignedDistance, Ei as DEFAULT_STROKE_WIDTH_CSS_PIXELS, En as DEFAULT_HOLDING_LINE_OPTIONS, Er as JointTacticalActionAreaOptions, Et as DEFAULT_FORTIFIED_AREA_OPTIONS, F as getMetersPerPixel, Fi as PARAMETER_PRESENTATION_TIERS, Fn as FLOTOptions, Fr as ControlMeasureRender, Ft as WithdrawUnderPressureOptions, G as renderControlMeasure, Gi as CanonicalTextAmplifiers, Gn as RADAR_SEARCH_DOCTRINE_FILL_COLOR, Gr as DirectionOfSupportingAttackOptions, Gt as RearwardPassageOfLinesOptions, H as foldsBoxTransformOptions, Hi as resolveParameterSemanticRole, Hn as AirborneAttackOptions, Hr as DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, Ht as DEFAULT_RETIRE_OPTIONS, I as roundToFixed, Ii as ParamDescriptor, In as AttackByFireOptions, Ir as FeaturePartProps, It as DEFAULT_WITHDRAW_OPTIONS, J as isKind, Ji as TEXT_AMPLIFIER_FIELDS, Jn as DEFAULT_GENERIC_TEXT_OPTIONS, Jr as DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, Jt as DEFAULT_GUARD_OPTIONS, K as ControlMeasure, Ki as GeneratedLabelKey, Kn as RADAR_SEARCH_DOCTRINE_STROKE_COLOR, Kr as DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, Kt as DEFAULT_PENETRATE_OPTIONS, L as SimpleStyleProps, Li as ParameterPresentationTier, Ln as DEFAULT_ATTACK_BY_FIRE_OPTIONS, Lr as StyleHints, Lt as WithdrawOptions, M as BaselineFrameOrigin, Mi as ControlMeasureGeometryType, Mn as DEFAULT_PHASE_LINE_OPTIONS, Mr as EncirclementOptions, Mt as AntitankDitchOptions, N as createBaselineFrame, Ni as ControlMeasureMetadata, Nn as PhaseLineOptions, Nr as DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, Nt as DEFAULT_ANTITANK_DITCH_OPTIONS, O as snapToMidpointPerpendicular, Oi as MeasureTextRequest, On as BridgeheadLineOptions, Or as DEFAULT_ASSEMBLY_AREA_OPTIONS, Ot as DEFAULT_FORTIFIED_LINE_OPTIONS, P as EPSILON, Pi as ControlMeasurePaintCapability, Pn as DEFAULT_FLOT_OPTIONS, Pr as FinalProtectiveFireOptions, Pt as DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, Q as ControlMeasureKind, Qi as canonicalTextAmplifierKey, Qn as DEFAULT_GENERIC_CIRCLE_OPTIONS, Qr as DEFAULT_STRONG_POINT_OPTIONS, Qt as DEFAULT_DISENGAGE_OPTIONS, R as SimpleStyleRender, Ri as ParameterSemanticRole, Rn as DEFAULT_SUPPORT_BY_FIRE_OPTIONS, Rr as controlMeasureIdFromFeature, Rt as DEFAULT_SEIZE_OPTIONS, S as containDrawRule, Si as DEFAULT_LINE_CAP, Sn as DEFAULT_HANDOVER_LINE_OPTIONS, Sr as MineType, St as DEFAULT_TURNING_MOVEMENT_OPTIONS, T as createMidpointPerpendicularDrawRule, Ti as DEFAULT_STROKE_DASH_CSS_PIXELS, Tn as ReleaseLineOptions, Tr as DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, Tt as FrontalAttackOptions, U as freezeOrientationOptions, Ui as AmplifierPlacement, Un as DEFAULT_AIRBORNE_ATTACK_OPTIONS, Ur as PrincipalDirectionOfFireOptions, Ut as RetireOptions, V as applyBoxTransformOptions, Vi as resolveParameterPresentationTier, Vn as DEFAULT_ATTACK_HELICOPTER_OPTIONS, Vr as SecondaryDirectionOfFireOptions, Vt as ScreenOptions, W as RenderOptions, Wi as AmplifierPlacements, Wn as DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, Wr as DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, Wt as DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, X as CONTROL_MEASURE_METADATA, Xi as TextAmplifierKey, Xn as DEFAULT_GENERIC_SECTOR_OPTIONS, Xr as DEFAULT_RETAIN_OPTIONS, Xt as DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, Y as CONTROL_MEASURE_IDS, Yi as TextAmplifierField, Yn as GenericTextOptions, Yr as DirectionOfAttackAviationOptions, Yt as GuardOptions, Z as ControlMeasureId, Zi as TextAmplifiers, Zn as GenericSectorOptions, Zr as RetainOptions, Zt as DisruptMissionTaskOptions, _ as point12DrawRule, _i as DEFAULT_BOUNDARY_OPTIONS, _n as DEFAULT_BREACH_OPTIONS, _r as computeInitialWidthPoint, _t as FixOptions, a as axis1DrawRule, ai as GenericC2LineOptions, an as TacticalArrowOptions, ar as GenericLineOptions, at as ObstacleBypassImpossibleOptions, b as disruptDrawRule, bi as DEFAULT_LABEL_HEIGHT_CSS_PIXELS, bn as BattleHandoverLineOptions, br as DEFAULT_PICKUP_ZONE_OPTIONS, bt as BlockOptions, c as line26DrawRule, ci as DEFAULT_LIGHT_LINE_OPTIONS, cn as CounterattackOptions, cr as DEFAULT_BLOCK_ARROW_OPTIONS, ct as DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, d as turnDrawRule, di as Point2D, dn as DEFAULT_CLEAR_OPTIONS, dr as DEFAULT_CLASSIC_ARROW_OPTIONS, dt as MinefieldOptions, ea as resolveAmplifierPlacement, ei as ContainOptions, en as DEFAULT_DELAY_OPTIONS, er as DEFAULT_GENERIC_RECTANGLE_OPTIONS, et as getControlMeasureMetadata, f as line1DrawRule, fi as haversineDistance, fn as CanalizeOptions, fr as DEFAULT_SUPPORTING_ATTACK_OPTIONS, ft as DEFAULT_TURN_OPTIONS, g as staticPointDrawRule, gi as BoundaryOptions, gn as BreachOptions, gr as calculateMetrics, gt as DEFAULT_FIX_OPTIONS, h as dynamicPointDrawRule, hi as unproject, hn as DEFAULT_BYPASS_OPTIONS, hr as MainAttackOptions, ht as FixMissionTaskOptions, i as rectangleDrawRule, ii as DEFAULT_GENERIC_C2_LINE_OPTIONS, in as DEFAULT_TACTICAL_ARROW_OPTIONS, ir as DEFAULT_GENERIC_LINE_OPTIONS, it as DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, j as BaselineFrameOptions, ji as ControlMeasureGeometry, jn as ForwardEdgeOfBattleAreaOptions, jr as DEFAULT_ENCIRCLEMENT_OPTIONS, jt as DEFAULT_ANTITANK_WALL_OPTIONS, k as BaselineFrame, ki as MeasuredText, kn as DEFAULT_BRIDGEHEAD_LINE_OPTIONS, kr as AreaDefenseOptions, kt as FortifiedLineOptions, l as line24DrawRule, li as LightLineOptions, ln as DEFAULT_COUNTERATTACK_OPTIONS, lr as ClassicArrowHeadStyle, lt as ObstacleBypassEasyOptions, m as attackByFireDrawRule, mi as sphericalBearing, mn as BypassOptions, mr as DEFAULT_MAIN_ATTACK_OPTIONS, mt as DEFAULT_FIX_MISSION_TASK_OPTIONS, n as DEFAULT_AMBUSH_OPTIONS, na as ControlMeasureDrawRule, ni as BattlePositionOptions, nn as CoverOptions, nr as DEFAULT_GENERIC_POLYGON_OPTIONS, nt as getDefaultOptions, o as supportByFireDrawRule, oi as DEFAULT_ENGINEER_WORK_LINE_OPTIONS, on as CounterattackByFireOptions, or as BlockArrowHeadStyle, ot as DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, p as ambushDrawRule, pi as project, pn as DEFAULT_CANALIZE_OPTIONS, pr as SupportingAttackOptions, pt as TurnOptions, q as cloneControlMeasure, qi as LabelPlacementOverride, qn as RadarSearchDoctrineOptions, qr as DirectionOfMainAttackOptions, qt as PenetrateOptions, r as sectorDrawRule, ri as DEFAULT_BATTLE_POSITION_OPTIONS, rn as DEFAULT_COVER_OPTIONS, rr as GenericPolygonOptions, rt as listControlMeasureMetadata, s as line27DrawRule, si as EngineerWorkLineOptions, sn as DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, sr as BlockArrowOptions, st as ObstacleBypassDifficultOptions, t as AmbushOptions, ta as AnchorTransformEvent, ti as DEFAULT_CONTAIN_OPTIONS, tn as DelayOptions, tr as GenericRectangleOptions, tt as getControlMeasureMetadataByValue, u as line23DrawRule, ui as LabelSizeOptions, un as ClearOptions, ur as ClassicArrowOptions, ut as DEFAULT_MINEFIELD_OPTIONS, v as penetrateDrawRule, vi as BoxTransformDelta, vn as BlockMissionTaskOptions, vr as AreaOfOperationsOptions, vt as DEFAULT_DISRUPT_OPTIONS, w as computeDefaultMidpointPerpendicularPoint, wi as DEFAULT_PORTRAYAL, wn as DEFAULT_RELEASE_LINE_OPTIONS, wr as LandingZoneOptions, wt as DEFAULT_FRONTAL_ATTACK_OPTIONS, x as blockDrawRule, xi as DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, xn as DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, xr as PickupZoneOptions, xt as DEFAULT_BLOCK_OPTIONS, y as centerRadiusDrawRule, yi as ControlMeasureRenderContext, yn as DEFAULT_BLOCK_MISSION_TASK_OPTIONS, yr as DEFAULT_AREA_OF_OPERATIONS_OPTIONS, yt as DisruptOptions, z as toSimpleStyle, zi as TextAmplifierDescriptor, zn as SupportByFireOptions, zr as DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, zt as SeizeOptions } from "./index-QyKWkgNo.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 ContainOptions, 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_CONTAIN_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_RETAIN_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 RetainOptions, 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, containDrawRule, 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 };
|