@orbat-mapper/control-measures 0.16.0 → 0.18.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 +3 -0
- package/dist/{index-1i5OZMcS.d.mts → index-ARQKlooW.d.mts} +228 -157
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/preview/index.d.mts +1 -1
- package/dist/preview/index.mjs +1 -1
- package/dist/{renderControlMeasure-B61Tgq3f.mjs → renderControlMeasure-DGnX8ELk.mjs} +1883 -779
- package/media/cordon-and-knock.svg +1 -0
- package/media/cordon-and-search.svg +1 -0
- package/media/isolate.svg +1 -1
- package/media/secure.svg +1 -0
- package/package.json +1 -1
|
@@ -225,7 +225,7 @@ declare function normalizeTextAmplifiers(input: TextAmplifiers | undefined): Can
|
|
|
225
225
|
//#region src/metadata.d.ts
|
|
226
226
|
type ControlMeasureGeometryType = Geometry["type"];
|
|
227
227
|
type ControlMeasureGeometry = "point" | "line" | "area";
|
|
228
|
-
declare const DRAW_RULE_IDS: readonly ["Area1", "Area5", "Area6", "Area7", "Area8", "Area11", "Area12", "Area15", "Area17", "Area21", "Area27", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line11", "Line23", "Line24", "Line26", "Line27", "Line29", "Line31", "Line32", "Point1", "Point2", "Point12", "Point18", "Polyline1", "Rectangle", "Sector"];
|
|
228
|
+
declare const DRAW_RULE_IDS: readonly ["Area1", "Area5", "Area6", "Area7", "Area8", "Area11", "Area12", "Area15", "Area16", "Area17", "Area18", "Area19", "Area21", "Area27", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line11", "Line23", "Line24", "Line26", "Line27", "Line29", "Line30", "Line31", "Line32", "Line33", "Point1", "Point2", "Point12", "Point18", "Polyline1", "Rectangle", "Sector"];
|
|
229
229
|
type DrawRuleId = (typeof DRAW_RULE_IDS)[number];
|
|
230
230
|
declare const PARAMETER_PRESENTATION_TIERS: readonly ["primary", "standard", "advanced"];
|
|
231
231
|
type ParameterPresentationTier = (typeof PARAMETER_PRESENTATION_TIERS)[number];
|
|
@@ -323,6 +323,18 @@ interface ControlMeasureMetadata<Options = Record<string, unknown>> {
|
|
|
323
323
|
* definition means adding such a measure stays a one-file change (ADR-0013).
|
|
324
324
|
*/
|
|
325
325
|
capturesLabelSize?: boolean;
|
|
326
|
+
/**
|
|
327
|
+
* The generator derives stroke or placement geometry from the label's
|
|
328
|
+
* post-clamp rendered metrics. Such geometry depends on map resolution even
|
|
329
|
+
* when the authored label size is ground-anchored, because the adapter's
|
|
330
|
+
* minimum/maximum pixel-size clamp can engage as the view zooms.
|
|
331
|
+
*
|
|
332
|
+
* Hosts use this capability to invalidate only the affected rendered
|
|
333
|
+
* graphics instead of rebuilding the complete graphics stack. `true` means
|
|
334
|
+
* every instance depends on resolved metrics; a list of amplifier fields
|
|
335
|
+
* means only instances carrying non-empty text in one of those fields do.
|
|
336
|
+
*/
|
|
337
|
+
labelGeometryUsesResolvedMetrics?: boolean | readonly TextAmplifierKey[];
|
|
326
338
|
/**
|
|
327
339
|
* Static, per-kind declaration of what a rendered instance can paint — used
|
|
328
340
|
* by a host editor to decide which style controls (stroke color/width,
|
|
@@ -731,18 +743,18 @@ interface LabelSizeOptions {
|
|
|
731
743
|
*/
|
|
732
744
|
metersPerPixel?: number;
|
|
733
745
|
}
|
|
734
|
-
/** Shared
|
|
735
|
-
interface
|
|
746
|
+
/** Shared clearance options for labels whose placement affects generated geometry. */
|
|
747
|
+
interface LabelPaddingOptions extends LabelSizeOptions {
|
|
736
748
|
/**
|
|
737
|
-
* Extra clearance between
|
|
749
|
+
* Extra clearance between a label's measured bounds and surrounding geometry, as a ratio of the
|
|
738
750
|
* label's resolved text height (`labelSize`, or `labelSizePixels ×
|
|
739
|
-
* metersPerPixel`)
|
|
740
|
-
* to 0. Only effective when a label size resolves — the no-size fallback
|
|
741
|
-
* offset is a fixed meter value, unaffected by this ratio.
|
|
751
|
+
* metersPerPixel`). Negative values clamp to 0.
|
|
742
752
|
* @default 0
|
|
743
753
|
*/
|
|
744
754
|
labelPadding?: number;
|
|
745
755
|
}
|
|
756
|
+
/** Shared placement options for the fixed-end-label line measures. */
|
|
757
|
+
type LineLabelOptions = LabelPaddingOptions;
|
|
746
758
|
//#endregion
|
|
747
759
|
//#region src/generators/cm11-command-control-lines/light-line.d.ts
|
|
748
760
|
/** Configuration options for the Light line control measure. */
|
|
@@ -1342,7 +1354,7 @@ declare function createArea(positions: Position[], options?: AreaOptions, textAm
|
|
|
1342
1354
|
//#region src/generators/cm15-maneuver-areas/area-defense.d.ts
|
|
1343
1355
|
interface AreaDefenseOptions extends LabelSizeOptions {
|
|
1344
1356
|
/** Angular opening between the two arrow tips, in degrees. */
|
|
1345
|
-
|
|
1357
|
+
openingAngle?: number;
|
|
1346
1358
|
/** Angular opening occupied by the AD label, in degrees. */
|
|
1347
1359
|
labelOpeningAngle?: number;
|
|
1348
1360
|
/** Number of filled outward barbs distributed over both arcs. */
|
|
@@ -1982,7 +1994,7 @@ interface AttackHelicopterOptions extends VariableWidthAttackOptions {
|
|
|
1982
1994
|
symbolHeightRatio?: number;
|
|
1983
1995
|
triangleSizeRatio?: number;
|
|
1984
1996
|
bottomBarWidthRatio?: number;
|
|
1985
|
-
|
|
1997
|
+
bowTieWidthRatio?: number;
|
|
1986
1998
|
}
|
|
1987
1999
|
declare const DEFAULT_ATTACK_HELICOPTER_OPTIONS: Required<AttackHelicopterOptions>;
|
|
1988
2000
|
/**
|
|
@@ -2311,15 +2323,8 @@ declare const PROBABLE_LINE_OF_DEPLOYMENT_DASH: readonly [6, 4];
|
|
|
2311
2323
|
declare function createProbableLineOfDeployment(positions: Position[], options?: ProbableLineOfDeploymentOptions, textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<LineString | Point>;
|
|
2312
2324
|
//#endregion
|
|
2313
2325
|
//#region src/generators/cm34-mission-tasks/block.d.ts
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
labelGapRatio?: number;
|
|
2317
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2318
|
-
labelSize?: number;
|
|
2319
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2320
|
-
labelSizePixels?: number;
|
|
2321
|
-
}
|
|
2322
|
-
declare const DEFAULT_BLOCK_MISSION_TASK_OPTIONS: Required<Omit<BlockMissionTaskOptions, "labelSize" | "labelSizePixels">>;
|
|
2326
|
+
type BlockMissionTaskOptions = LabelPaddingOptions;
|
|
2327
|
+
declare const DEFAULT_BLOCK_MISSION_TASK_OPTIONS: Required<Omit<BlockMissionTaskOptions, keyof LabelSizeOptions>>;
|
|
2323
2328
|
/**
|
|
2324
2329
|
* Generates a GeoJSON FeatureCollection for a BLOCK mission task symbol (340100).
|
|
2325
2330
|
*
|
|
@@ -2330,28 +2335,22 @@ declare const DEFAULT_BLOCK_MISSION_TASK_OPTIONS: Required<Omit<BlockMissionTask
|
|
|
2330
2335
|
* @param options - Configuration options
|
|
2331
2336
|
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2332
2337
|
*/
|
|
2333
|
-
declare function createBlockMissionTaskSymbol(coordinates: Position[], options?: BlockMissionTaskOptions): FeatureCollection<MultiLineString | Point>;
|
|
2338
|
+
declare function createBlockMissionTaskSymbol(coordinates: Position[], options?: BlockMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2334
2339
|
//#endregion
|
|
2335
2340
|
//#region src/generators/cm34-mission-tasks/breach.d.ts
|
|
2336
2341
|
/**
|
|
2337
2342
|
* Configuration options for the BREACH tactical symbol.
|
|
2338
2343
|
*/
|
|
2339
|
-
interface BreachOptions {
|
|
2344
|
+
interface BreachOptions extends LabelPaddingOptions {
|
|
2340
2345
|
/** Tick mark length ratio relative to front opening (default: 0.15) */
|
|
2341
2346
|
tickLengthRatio?: number;
|
|
2342
2347
|
/** Tick mark angle in degrees from perpendicular (default: 45) */
|
|
2343
2348
|
tickAngle?: number;
|
|
2344
|
-
/** Gap for the 'B' label as a ratio of the front length (default: 0.2) */
|
|
2345
|
-
labelGapRatio?: number;
|
|
2346
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2347
|
-
labelSize?: number;
|
|
2348
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2349
|
-
labelSizePixels?: number;
|
|
2350
2349
|
}
|
|
2351
2350
|
/**
|
|
2352
2351
|
* Default options for the BREACH symbol.
|
|
2353
2352
|
*/
|
|
2354
|
-
declare const DEFAULT_BREACH_OPTIONS: Required<Omit<BreachOptions,
|
|
2353
|
+
declare const DEFAULT_BREACH_OPTIONS: Required<Omit<BreachOptions, keyof LabelSizeOptions>>;
|
|
2355
2354
|
/**
|
|
2356
2355
|
* Generates a GeoJSON FeatureCollection for a BREACH mission task symbol (340200).
|
|
2357
2356
|
*
|
|
@@ -2363,26 +2362,20 @@ declare const DEFAULT_BREACH_OPTIONS: Required<Omit<BreachOptions, "labelSize" |
|
|
|
2363
2362
|
* @param options - Configuration options
|
|
2364
2363
|
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2365
2364
|
*/
|
|
2366
|
-
declare function createBreachSymbol(coordinates: Position[], options?: BreachOptions): FeatureCollection<MultiLineString | Point>;
|
|
2365
|
+
declare function createBreachSymbol(coordinates: Position[], options?: BreachOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2367
2366
|
//#endregion
|
|
2368
2367
|
//#region src/generators/cm34-mission-tasks/bypass.d.ts
|
|
2369
2368
|
/**
|
|
2370
2369
|
* Configuration options for the BYPASS tactical symbol.
|
|
2371
2370
|
*/
|
|
2372
|
-
interface BypassOptions {
|
|
2371
|
+
interface BypassOptions extends LabelPaddingOptions {
|
|
2373
2372
|
/** Arrowhead length ratio relative to front opening (default: 0.2) */
|
|
2374
2373
|
arrowheadLengthRatio?: number;
|
|
2375
|
-
/** Gap for the 'B' label as a ratio of the front length (default: 0.2) */
|
|
2376
|
-
labelGapRatio?: number;
|
|
2377
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2378
|
-
labelSize?: number;
|
|
2379
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2380
|
-
labelSizePixels?: number;
|
|
2381
2374
|
}
|
|
2382
2375
|
/**
|
|
2383
2376
|
* Default options for the BYPASS symbol.
|
|
2384
2377
|
*/
|
|
2385
|
-
declare const DEFAULT_BYPASS_OPTIONS: Required<Omit<BypassOptions,
|
|
2378
|
+
declare const DEFAULT_BYPASS_OPTIONS: Required<Omit<BypassOptions, keyof LabelSizeOptions>>;
|
|
2386
2379
|
/**
|
|
2387
2380
|
* Generates a GeoJSON FeatureCollection for a BYPASS mission task symbol (340300).
|
|
2388
2381
|
*
|
|
@@ -2394,28 +2387,22 @@ declare const DEFAULT_BYPASS_OPTIONS: Required<Omit<BypassOptions, "labelSize" |
|
|
|
2394
2387
|
* @param options - Configuration options
|
|
2395
2388
|
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2396
2389
|
*/
|
|
2397
|
-
declare function createBypassSymbol(coordinates: Position[], options?: BypassOptions): FeatureCollection<MultiLineString | Point>;
|
|
2390
|
+
declare function createBypassSymbol(coordinates: Position[], options?: BypassOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2398
2391
|
//#endregion
|
|
2399
2392
|
//#region src/generators/cm34-mission-tasks/canalize.d.ts
|
|
2400
2393
|
/**
|
|
2401
2394
|
* Configuration options for the CANALIZE tactical symbol.
|
|
2402
2395
|
*/
|
|
2403
|
-
interface CanalizeOptions {
|
|
2396
|
+
interface CanalizeOptions extends LabelPaddingOptions {
|
|
2404
2397
|
/** Tick mark length ratio relative to front opening (default: 0.15) */
|
|
2405
2398
|
tickLengthRatio?: number;
|
|
2406
2399
|
/** Tick mark angle in degrees from perpendicular (default: 45) */
|
|
2407
2400
|
tickAngle?: number;
|
|
2408
|
-
/** Gap for the 'C' label as a ratio of the front length (default: 0.2) */
|
|
2409
|
-
labelGapRatio?: number;
|
|
2410
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2411
|
-
labelSize?: number;
|
|
2412
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2413
|
-
labelSizePixels?: number;
|
|
2414
2401
|
}
|
|
2415
2402
|
/**
|
|
2416
2403
|
* Default options for the CANALIZE symbol.
|
|
2417
2404
|
*/
|
|
2418
|
-
declare const DEFAULT_CANALIZE_OPTIONS: Required<Omit<CanalizeOptions,
|
|
2405
|
+
declare const DEFAULT_CANALIZE_OPTIONS: Required<Omit<CanalizeOptions, keyof LabelSizeOptions>>;
|
|
2419
2406
|
/**
|
|
2420
2407
|
* Generates a GeoJSON FeatureCollection for a CANALIZE mission task symbol (340400).
|
|
2421
2408
|
*
|
|
@@ -2427,13 +2414,13 @@ declare const DEFAULT_CANALIZE_OPTIONS: Required<Omit<CanalizeOptions, "labelSiz
|
|
|
2427
2414
|
* @param options - Configuration options
|
|
2428
2415
|
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2429
2416
|
*/
|
|
2430
|
-
declare function createCanalizeSymbol(coordinates: Position[], options?: CanalizeOptions): FeatureCollection<MultiLineString | Point>;
|
|
2417
|
+
declare function createCanalizeSymbol(coordinates: Position[], options?: CanalizeOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2431
2418
|
//#endregion
|
|
2432
2419
|
//#region src/generators/cm34-mission-tasks/clear.d.ts
|
|
2433
2420
|
/**
|
|
2434
2421
|
* Configuration options for the CLEAR tactical mission task symbol.
|
|
2435
2422
|
*/
|
|
2436
|
-
interface ClearOptions {
|
|
2423
|
+
interface ClearOptions extends LabelPaddingOptions {
|
|
2437
2424
|
/**
|
|
2438
2425
|
* Padding between the vertical line's endpoints and the outer arrows, as a
|
|
2439
2426
|
* ratio of the symbol height. Insets the top and bottom arrows so they sit
|
|
@@ -2444,17 +2431,11 @@ interface ClearOptions {
|
|
|
2444
2431
|
arrowheadLengthRatio?: number;
|
|
2445
2432
|
/** Arrowhead width (along the vertical line) as a ratio of the symbol height (default: 0.2). */
|
|
2446
2433
|
arrowheadWidthRatio?: number;
|
|
2447
|
-
/** Gap for the 'C' label as a ratio of the shaft length (default: 0.2). */
|
|
2448
|
-
labelGapRatio?: number;
|
|
2449
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2450
|
-
labelSize?: number;
|
|
2451
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2452
|
-
labelSizePixels?: number;
|
|
2453
2434
|
}
|
|
2454
2435
|
/**
|
|
2455
2436
|
* Default options for the CLEAR symbol.
|
|
2456
2437
|
*/
|
|
2457
|
-
declare const DEFAULT_CLEAR_OPTIONS: Required<Omit<ClearOptions,
|
|
2438
|
+
declare const DEFAULT_CLEAR_OPTIONS: Required<Omit<ClearOptions, keyof LabelSizeOptions>>;
|
|
2458
2439
|
/**
|
|
2459
2440
|
* Generates a GeoJSON FeatureCollection for a CLEAR mission task symbol (340500).
|
|
2460
2441
|
*
|
|
@@ -2476,7 +2457,57 @@ declare const DEFAULT_CLEAR_OPTIONS: Required<Omit<ClearOptions, "labelSize" | "
|
|
|
2476
2457
|
* @param options - Configuration options
|
|
2477
2458
|
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2478
2459
|
*/
|
|
2479
|
-
declare function createClearSymbol(coordinates: Position[], options?: ClearOptions): FeatureCollection<MultiLineString | Point>;
|
|
2460
|
+
declare function createClearSymbol(coordinates: Position[], options?: ClearOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2461
|
+
//#endregion
|
|
2462
|
+
//#region src/generators/cm34-mission-tasks/isolate.d.ts
|
|
2463
|
+
/**
|
|
2464
|
+
* Configuration options for the ISOLATE tactical mission task symbol.
|
|
2465
|
+
*/
|
|
2466
|
+
interface IsolateOptions extends LabelPaddingOptions {
|
|
2467
|
+
/** Angular size of the opening on the friendly side, in degrees (default: 30). */
|
|
2468
|
+
openingAngle?: number;
|
|
2469
|
+
/** Number of inward-pointing arrowhead barbs spaced around the closed arc (default: 9). */
|
|
2470
|
+
barbCount?: number;
|
|
2471
|
+
/** Barb length as a ratio of the symbol radius (default: 0.18). */
|
|
2472
|
+
barbLengthRatio?: number;
|
|
2473
|
+
}
|
|
2474
|
+
/**
|
|
2475
|
+
* Default options for the ISOLATE symbol.
|
|
2476
|
+
*/
|
|
2477
|
+
declare const DEFAULT_ISOLATE_OPTIONS: Required<Omit<IsolateOptions, keyof LabelSizeOptions>>;
|
|
2478
|
+
/**
|
|
2479
|
+
* Generates a GeoJSON FeatureCollection for an ISOLATE mission task symbol (341500).
|
|
2480
|
+
*
|
|
2481
|
+
* A near-complete circle centered on PT. 1 whose radius reaches PT. 2. The arc
|
|
2482
|
+
* starts (bare) at PT. 2's bearing and sweeps clockwise around the closed
|
|
2483
|
+
* portion to a single arrow tip at the far end; the wedge-shaped gap (default
|
|
2484
|
+
* 30°) between that arrow tip and PT. 2 is the opening — the "friendly side".
|
|
2485
|
+
* Inward-pointing arrowhead barbs are spaced along the closed arc, set in from
|
|
2486
|
+
* both ends so they never touch PT. 2 or the arrow tip, conveying the
|
|
2487
|
+
* sealing-off of the enclosed force. A doctrinal "I" interrupts the closed arc
|
|
2488
|
+
* opposite the friendly-side opening.
|
|
2489
|
+
*
|
|
2490
|
+
* Input Points:
|
|
2491
|
+
* - PT. 1: Center point
|
|
2492
|
+
* - PT. 2: Start point — fixes the radius and the bearing of the opening
|
|
2493
|
+
*
|
|
2494
|
+
* @param coordinates - [PT. 1, PT. 2] as Position arrays
|
|
2495
|
+
* @param options - Configuration options
|
|
2496
|
+
* @returns GeoJSON FeatureCollection containing MultiLineString and Point features
|
|
2497
|
+
*/
|
|
2498
|
+
declare function createIsolateSymbol(coordinates: Position[], options?: IsolateOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2499
|
+
//#endregion
|
|
2500
|
+
//#region src/generators/cm34-mission-tasks/cordon-and-knock.d.ts
|
|
2501
|
+
type CordonAndKnockOptions = IsolateOptions;
|
|
2502
|
+
declare const DEFAULT_CORDON_AND_KNOCK_OPTIONS: Required<Omit<IsolateOptions, keyof LabelSizeOptions>>;
|
|
2503
|
+
/** Generates the Cordon and Knock mission-task symbol (342600). */
|
|
2504
|
+
declare function createCordonAndKnockSymbol(coordinates: Position[], options?: CordonAndKnockOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2505
|
+
//#endregion
|
|
2506
|
+
//#region src/generators/cm34-mission-tasks/cordon-and-search.d.ts
|
|
2507
|
+
type CordonAndSearchOptions = IsolateOptions;
|
|
2508
|
+
declare const DEFAULT_CORDON_AND_SEARCH_OPTIONS: Required<Omit<IsolateOptions, keyof LabelSizeOptions>>;
|
|
2509
|
+
/** Generates the Cordon and Search mission-task symbol (342700). */
|
|
2510
|
+
declare function createCordonAndSearchSymbol(coordinates: Position[], options?: CordonAndSearchOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2480
2511
|
//#endregion
|
|
2481
2512
|
//#region src/generators/cm34-mission-tasks/counterattack.d.ts
|
|
2482
2513
|
interface CounterattackOptions extends VariableWidthAttackOptions, LabelSizeOptions {
|
|
@@ -2509,30 +2540,30 @@ declare const DEFAULT_COVER_OPTIONS: Required<Omit<SecurityTaskOptions, "labelSi
|
|
|
2509
2540
|
declare function createCoverSymbol(coordinates: Position[], options?: CoverOptions): FeatureCollection<MultiLineString | Point>;
|
|
2510
2541
|
//#endregion
|
|
2511
2542
|
//#region src/generators/cm34-mission-tasks/delay.d.ts
|
|
2512
|
-
interface DelayOptions {
|
|
2543
|
+
interface DelayOptions extends LabelPaddingOptions {
|
|
2513
2544
|
/** Arrowhead depth as a ratio of the straight-line length (default: 0.12). */
|
|
2514
2545
|
arrowheadLengthRatio?: number;
|
|
2515
2546
|
/** Arrowhead width as a ratio of the straight-line length (default: 0.12). */
|
|
2516
2547
|
arrowheadWidthRatio?: number;
|
|
2517
|
-
/** Gap for the 'D' label as a ratio of the straight-line length (default: 0.18). */
|
|
2518
|
-
labelGapRatio?: number;
|
|
2519
2548
|
/** Number of segments used to approximate the 180-degree arc (default: 32). */
|
|
2520
2549
|
arcSegments?: number;
|
|
2521
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2522
|
-
labelSize?: number;
|
|
2523
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2524
|
-
labelSizePixels?: number;
|
|
2525
2550
|
}
|
|
2526
|
-
declare const DEFAULT_DELAY_OPTIONS: Required<Omit<DelayOptions,
|
|
2527
|
-
declare function createDelaySymbol(coordinates: Position[], options?: DelayOptions): FeatureCollection<MultiLineString | Point>;
|
|
2551
|
+
declare const DEFAULT_DELAY_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2552
|
+
declare function createDelaySymbol(coordinates: Position[], options?: DelayOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2553
|
+
//#endregion
|
|
2554
|
+
//#region src/generators/cm34-mission-tasks/demonstrate.d.ts
|
|
2555
|
+
type DemonstrateOptions = DelayOptions;
|
|
2556
|
+
declare const DEFAULT_DEMONSTRATE_OPTIONS: Required<Omit<DemonstrateOptions, keyof LabelSizeOptions>>;
|
|
2557
|
+
/** Generates the DEMONSTRATE/DEMONSTRATION mission task symbol (343300). */
|
|
2558
|
+
declare function createDemonstrateSymbol(coordinates: Position[], options?: DemonstrateOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2528
2559
|
//#endregion
|
|
2529
2560
|
//#region src/generators/cm34-mission-tasks/disengage.d.ts
|
|
2530
2561
|
type DisengageOptions = DelayOptions;
|
|
2531
|
-
declare const DEFAULT_DISENGAGE_OPTIONS: Required<Omit<DelayOptions,
|
|
2532
|
-
declare function createDisengageSymbol(coordinates: Position[], options?: DisengageOptions): FeatureCollection<MultiLineString | Point>;
|
|
2562
|
+
declare const DEFAULT_DISENGAGE_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2563
|
+
declare function createDisengageSymbol(coordinates: Position[], options?: DisengageOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2533
2564
|
//#endregion
|
|
2534
2565
|
//#region src/generators/cm34-mission-tasks/disrupt.d.ts
|
|
2535
|
-
interface DisruptMissionTaskOptions {
|
|
2566
|
+
interface DisruptMissionTaskOptions extends LabelPaddingOptions {
|
|
2536
2567
|
/** Middle arrow length as a ratio of the PT.3-controlled top arrow (default: 0.65). */
|
|
2537
2568
|
middleArrowLengthRatio?: number;
|
|
2538
2569
|
/** Bottom arrow length as a ratio of the PT.3-controlled top arrow (default: 0.45). */
|
|
@@ -2543,84 +2574,50 @@ interface DisruptMissionTaskOptions {
|
|
|
2543
2574
|
arrowheadLengthRatio?: number;
|
|
2544
2575
|
/** Arrowhead width as a ratio of the spine length (default: 0.2). */
|
|
2545
2576
|
arrowheadWidthRatio?: number;
|
|
2546
|
-
/** Gap for the 'D' label as a ratio of the top arrow length (default: 0.2). */
|
|
2547
|
-
labelGapRatio?: number;
|
|
2548
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2549
|
-
labelSize?: number;
|
|
2550
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2551
|
-
labelSizePixels?: number;
|
|
2552
2577
|
}
|
|
2553
|
-
declare const DEFAULT_DISRUPT_MISSION_TASK_OPTIONS: Required<Omit<DisruptMissionTaskOptions,
|
|
2578
|
+
declare const DEFAULT_DISRUPT_MISSION_TASK_OPTIONS: Required<Omit<DisruptMissionTaskOptions, keyof LabelSizeOptions>>;
|
|
2554
2579
|
/** Generates the DISRUPT mission task symbol (341000). */
|
|
2555
|
-
declare function createDisruptMissionTaskSymbol(coordinates: Position[], options?: DisruptMissionTaskOptions): FeatureCollection<MultiLineString | Point>;
|
|
2580
|
+
declare function createDisruptMissionTaskSymbol(coordinates: Position[], options?: DisruptMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2556
2581
|
//#endregion
|
|
2557
2582
|
//#region src/generators/cm34-mission-tasks/envelopment.d.ts
|
|
2558
|
-
interface EnvelopmentOptions extends
|
|
2583
|
+
interface EnvelopmentOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2559
2584
|
/** Arrowhead depth as a ratio of the arc diameter. */
|
|
2560
2585
|
arrowheadLengthRatio?: number;
|
|
2561
2586
|
/** Arrowhead base width as a ratio of the arc diameter. */
|
|
2562
2587
|
arrowheadWidthRatio?: number;
|
|
2563
2588
|
/** Position of the E label along the straight portion, from PT. 1 to PT. 2. */
|
|
2564
2589
|
labelPosition?: number;
|
|
2565
|
-
/** Gap around the E label as a ratio of the straight portion. */
|
|
2566
|
-
labelGapRatio?: number;
|
|
2567
2590
|
}
|
|
2568
2591
|
/** Generates the Envelopment mission task symbol (343500). */
|
|
2569
|
-
declare function createEnvelopment(coordinates: Position[], options?: EnvelopmentOptions): FeatureCollection<MultiLineString | Point>;
|
|
2592
|
+
declare function createEnvelopment(coordinates: Position[], options?: EnvelopmentOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2593
|
+
//#endregion
|
|
2594
|
+
//#region src/generators/cm34-mission-tasks/exploitation.d.ts
|
|
2595
|
+
/** The symbol is fully determined by its three anchors; it takes no options. */
|
|
2596
|
+
type ExploitationOptions = Record<string, never>;
|
|
2597
|
+
/** Generates the Exploit/Exploitation mission task symbol (343100). */
|
|
2598
|
+
declare function createExploitation(coordinates: Position[], _options?: ExploitationOptions): FeatureCollection<MultiLineString>;
|
|
2599
|
+
//#endregion
|
|
2600
|
+
//#region src/generators/cm34-mission-tasks/forward-passage-of-lines.d.ts
|
|
2601
|
+
type ForwardPassageOfLinesOptions = DelayOptions;
|
|
2602
|
+
declare function createForwardPassageOfLinesSymbol(coordinates: Position[], options?: ForwardPassageOfLinesOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2570
2603
|
//#endregion
|
|
2571
2604
|
//#region src/generators/cm34-mission-tasks/infiltration.d.ts
|
|
2572
|
-
interface InfiltrationOptions extends
|
|
2605
|
+
interface InfiltrationOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2573
2606
|
/** Arrowhead depth as a ratio of the Point 1–Point 3 span. */
|
|
2574
2607
|
arrowheadLengthRatio?: number;
|
|
2575
2608
|
/** Arrowhead base width as a ratio of the Point 1–Point 3 span. */
|
|
2576
2609
|
arrowheadWidthRatio?: number;
|
|
2577
2610
|
/** Position of the IN label along the initial straight portion. */
|
|
2578
2611
|
labelPosition?: number;
|
|
2579
|
-
/** Gap around the IN label as a ratio of the initial straight portion. */
|
|
2580
|
-
labelGapRatio?: number;
|
|
2581
2612
|
}
|
|
2582
2613
|
/** Generates the Infiltration mission task symbol (343800). */
|
|
2583
|
-
declare function createInfiltration(coordinates: Position[], options?: InfiltrationOptions): FeatureCollection<MultiLineString | Point>;
|
|
2614
|
+
declare function createInfiltration(coordinates: Position[], options?: InfiltrationOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2584
2615
|
//#endregion
|
|
2585
2616
|
//#region src/generators/cm34-mission-tasks/guard.d.ts
|
|
2586
2617
|
type GuardOptions = SecurityTaskOptions;
|
|
2587
2618
|
declare const DEFAULT_GUARD_OPTIONS: Required<Omit<SecurityTaskOptions, "labelSize" | "labelSizePixels">>;
|
|
2588
2619
|
declare function createGuardSymbol(coordinates: Position[], options?: GuardOptions): FeatureCollection<MultiLineString | Point>;
|
|
2589
2620
|
//#endregion
|
|
2590
|
-
//#region src/generators/cm34-mission-tasks/isolate.d.ts
|
|
2591
|
-
/**
|
|
2592
|
-
* Configuration options for the ISOLATE tactical mission task symbol.
|
|
2593
|
-
*/
|
|
2594
|
-
interface IsolateOptions {
|
|
2595
|
-
/** Angular size of the opening on the friendly side, in degrees (default: 30). */
|
|
2596
|
-
openingAngle?: number;
|
|
2597
|
-
/** Number of inward-pointing arrowhead barbs spaced around the closed arc (default: 9). */
|
|
2598
|
-
barbCount?: number;
|
|
2599
|
-
/** Barb length as a ratio of the symbol radius (default: 0.18). */
|
|
2600
|
-
barbLengthRatio?: number;
|
|
2601
|
-
}
|
|
2602
|
-
/**
|
|
2603
|
-
* Generates a GeoJSON FeatureCollection for an ISOLATE mission task symbol (341500).
|
|
2604
|
-
*
|
|
2605
|
-
* A near-complete circle centered on PT. 1 whose radius reaches PT. 2. The arc
|
|
2606
|
-
* starts (bare) at PT. 2's bearing and sweeps clockwise around the closed
|
|
2607
|
-
* portion to a single arrow tip at the far end; the wedge-shaped gap (default
|
|
2608
|
-
* 30°) between that arrow tip and PT. 2 is the opening — the "friendly side".
|
|
2609
|
-
* Inward-pointing arrowhead barbs are spaced along the closed arc, set in from
|
|
2610
|
-
* both ends so they never touch PT. 2 or the arrow tip, conveying the
|
|
2611
|
-
* sealing-off of the enclosed force. Unlike the bracket mission tasks, isolate
|
|
2612
|
-
* carries no glyph label.
|
|
2613
|
-
*
|
|
2614
|
-
* Input Points:
|
|
2615
|
-
* - PT. 1: Center point
|
|
2616
|
-
* - PT. 2: Start point — fixes the radius and the bearing of the opening
|
|
2617
|
-
*
|
|
2618
|
-
* @param coordinates - [PT. 1, PT. 2] as Position arrays
|
|
2619
|
-
* @param options - Configuration options
|
|
2620
|
-
* @returns GeoJSON FeatureCollection containing a single MultiLineString feature
|
|
2621
|
-
*/
|
|
2622
|
-
declare function createIsolateSymbol(coordinates: Position[], options?: IsolateOptions): FeatureCollection<MultiLineString>;
|
|
2623
|
-
//#endregion
|
|
2624
2621
|
//#region src/generators/cm34-mission-tasks/movement-to-contact.d.ts
|
|
2625
2622
|
interface MovementToContactOptions extends VariableWidthAttackOptions, TacticalArrowOptions, ManeuverArrowTaskAmplifierOptions {
|
|
2626
2623
|
/** Bolt length as a multiple of the shaft width at the arrow base. */
|
|
@@ -2632,47 +2629,85 @@ declare const DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS: Required<Omit<MovementToConta
|
|
|
2632
2629
|
/** Generates the Movement to Contact mission task (342900). */
|
|
2633
2630
|
declare function createMovementToContact(coordinates: Position[], options?: MovementToContactOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2634
2631
|
//#endregion
|
|
2632
|
+
//#region src/generators/cm34-mission-tasks/occupy.d.ts
|
|
2633
|
+
interface OccupyOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2634
|
+
/** Angular opening on the friendly side, in degrees. */
|
|
2635
|
+
openingAngle?: number;
|
|
2636
|
+
/** Overall X size as a ratio of the symbol radius. */
|
|
2637
|
+
xSizeRatio?: number;
|
|
2638
|
+
/** X width-to-height ratio in its local radial/tangential frame. */
|
|
2639
|
+
xAspectRatio?: number;
|
|
2640
|
+
}
|
|
2641
|
+
declare const DEFAULT_OCCUPY_OPTIONS: Required<Omit<OccupyOptions, keyof LabelSizeOptions>>;
|
|
2642
|
+
/** Generates the Occupy mission task symbol (341700). */
|
|
2643
|
+
declare function createOccupySymbol(coordinates: Position[], options?: OccupyOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2644
|
+
//#endregion
|
|
2635
2645
|
//#region src/generators/cm34-mission-tasks/penetrate.d.ts
|
|
2636
|
-
interface PenetrateOptions {
|
|
2646
|
+
interface PenetrateOptions extends LabelPaddingOptions {
|
|
2637
2647
|
/** Arrowhead depth as a ratio of the barrier length (default: 0.15). */
|
|
2638
2648
|
arrowheadLengthRatio?: number;
|
|
2639
2649
|
/** Arrowhead width as a ratio of the barrier length (default: 0.2). */
|
|
2640
2650
|
arrowheadWidthRatio?: number;
|
|
2641
|
-
/** Gap for the 'P' label as a ratio of the shaft length (default: 0.2). */
|
|
2642
|
-
labelGapRatio?: number;
|
|
2643
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2644
|
-
labelSize?: number;
|
|
2645
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2646
|
-
labelSizePixels?: number;
|
|
2647
2651
|
}
|
|
2648
|
-
declare const DEFAULT_PENETRATE_OPTIONS: Required<Omit<PenetrateOptions,
|
|
2652
|
+
declare const DEFAULT_PENETRATE_OPTIONS: Required<Omit<PenetrateOptions, keyof LabelSizeOptions>>;
|
|
2649
2653
|
/** Generates the PENETRATE mission task symbol (341800). */
|
|
2650
|
-
declare function createPenetrateSymbol(coordinates: Position[], options?: PenetrateOptions): FeatureCollection<MultiLineString | Point>;
|
|
2654
|
+
declare function createPenetrateSymbol(coordinates: Position[], options?: PenetrateOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2655
|
+
//#endregion
|
|
2656
|
+
//#region src/generators/cm34-mission-tasks/pursuit.d.ts
|
|
2657
|
+
interface PursuitOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2658
|
+
/** Arrowhead depth as a ratio of the arc diameter. */
|
|
2659
|
+
arrowheadLengthRatio?: number;
|
|
2660
|
+
/** Arrowhead base width as a ratio of the arc diameter. */
|
|
2661
|
+
arrowheadWidthRatio?: number;
|
|
2662
|
+
/** Terminal bar length as a multiple of the resolved arrowhead width. */
|
|
2663
|
+
terminalBarLengthRatio?: number;
|
|
2664
|
+
/** Position of the P label along the straight portion, from PT. 1 to PT. 2. */
|
|
2665
|
+
labelPosition?: number;
|
|
2666
|
+
}
|
|
2667
|
+
/** Generates the Pursuit mission task symbol (344000). */
|
|
2668
|
+
declare function createPursuit(coordinates: Position[], options?: PursuitOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2651
2669
|
//#endregion
|
|
2652
2670
|
//#region src/generators/cm34-mission-tasks/rearward-passage-of-lines.d.ts
|
|
2653
2671
|
type RearwardPassageOfLinesOptions = DelayOptions;
|
|
2654
|
-
declare const DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS: Required<Omit<DelayOptions,
|
|
2655
|
-
declare function createRearwardPassageOfLinesSymbol(coordinates: Position[], options?: RearwardPassageOfLinesOptions): FeatureCollection<MultiLineString | Point>;
|
|
2672
|
+
declare const DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2673
|
+
declare function createRearwardPassageOfLinesSymbol(coordinates: Position[], options?: RearwardPassageOfLinesOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2674
|
+
//#endregion
|
|
2675
|
+
//#region src/generators/cm34-mission-tasks/relief-in-place.d.ts
|
|
2676
|
+
type ReliefInPlaceOptions = Omit<DelayOptions, "labelPadding">;
|
|
2677
|
+
declare const DEFAULT_RELIEF_IN_PLACE_OPTIONS: Required<Omit<ReliefInPlaceOptions, keyof LabelSizeOptions>>;
|
|
2678
|
+
/** Generates the RELIEF IN PLACE mission task symbol (341900). */
|
|
2679
|
+
declare function createReliefInPlaceSymbol(coordinates: Position[], options?: ReliefInPlaceOptions): FeatureCollection<MultiLineString | Point>;
|
|
2656
2680
|
//#endregion
|
|
2657
2681
|
//#region src/generators/cm34-mission-tasks/retire.d.ts
|
|
2658
2682
|
type RetireOptions = DelayOptions;
|
|
2659
|
-
declare const DEFAULT_RETIRE_OPTIONS: Required<Omit<DelayOptions,
|
|
2683
|
+
declare const DEFAULT_RETIRE_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2660
2684
|
/** Generates the RETIRE/RETIREMENT mission task symbol (342000). */
|
|
2661
|
-
declare function createRetireSymbol(coordinates: Position[], options?: RetireOptions): FeatureCollection<MultiLineString | Point>;
|
|
2685
|
+
declare function createRetireSymbol(coordinates: Position[], options?: RetireOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2662
2686
|
//#endregion
|
|
2663
2687
|
//#region src/generators/cm34-mission-tasks/screen.d.ts
|
|
2664
2688
|
type ScreenOptions = SecurityTaskOptions;
|
|
2665
2689
|
declare const DEFAULT_SCREEN_OPTIONS: Required<Omit<SecurityTaskOptions, "labelSize" | "labelSizePixels">>;
|
|
2666
2690
|
declare function createScreenSymbol(coordinates: Position[], options?: ScreenOptions): FeatureCollection<MultiLineString | Point>;
|
|
2667
2691
|
//#endregion
|
|
2692
|
+
//#region src/generators/cm34-mission-tasks/secure.d.ts
|
|
2693
|
+
interface SecureOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2694
|
+
/** Angular width of the opening on the friendly side, in degrees. */
|
|
2695
|
+
openingAngle?: number;
|
|
2696
|
+
/** Arrowhead length as a ratio of the symbol radius. */
|
|
2697
|
+
arrowheadLengthRatio?: number;
|
|
2698
|
+
/** Arrowhead width as a ratio of the symbol radius. */
|
|
2699
|
+
arrowheadWidthRatio?: number;
|
|
2700
|
+
}
|
|
2701
|
+
declare const DEFAULT_SECURE_OPTIONS: Required<Omit<SecureOptions, keyof LabelSizeOptions>>;
|
|
2702
|
+
/** Generates the Secure mission task symbol (342100). */
|
|
2703
|
+
declare function createSecureSymbol(coordinates: Position[], options?: SecureOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2704
|
+
//#endregion
|
|
2668
2705
|
//#region src/generators/cm34-mission-tasks/seize.d.ts
|
|
2669
|
-
interface SeizeOptions extends
|
|
2706
|
+
interface SeizeOptions extends LabelPaddingOptions {
|
|
2670
2707
|
/** Arrowhead depth as a ratio of the PT. 2-to-PT. 4 span. */
|
|
2671
2708
|
arrowheadLengthRatio?: number;
|
|
2672
2709
|
/** Arrowhead base width as a ratio of the PT. 2-to-PT. 4 span. */
|
|
2673
2710
|
arrowheadWidthRatio?: number;
|
|
2674
|
-
/** Gap around the intrinsic S label as a ratio of the arc sweep. */
|
|
2675
|
-
labelGapRatio?: number;
|
|
2676
2711
|
/** Number of segments used to approximate the circular arc. */
|
|
2677
2712
|
curveSegments?: number;
|
|
2678
2713
|
/** Number of segments used to approximate the assigned-unit circle. */
|
|
@@ -2680,17 +2715,42 @@ interface SeizeOptions extends LabelSizeOptions {
|
|
|
2680
2715
|
}
|
|
2681
2716
|
declare const DEFAULT_SEIZE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSizeOptions>>;
|
|
2682
2717
|
/** Generates the Seize mission task symbol (342300). */
|
|
2683
|
-
declare function createSeizeSymbol(coordinates: Position[], options?: SeizeOptions): FeatureCollection<MultiLineString | Point>;
|
|
2718
|
+
declare function createSeizeSymbol(coordinates: Position[], options?: SeizeOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2719
|
+
//#endregion
|
|
2720
|
+
//#region src/generators/cm34-mission-tasks/evacuate.d.ts
|
|
2721
|
+
type EvacuateOptions = SeizeOptions;
|
|
2722
|
+
declare const DEFAULT_EVACUATE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSizeOptions>>;
|
|
2723
|
+
/** Generates the Evacuate mission task symbol (344500). */
|
|
2724
|
+
declare function createEvacuateSymbol(coordinates: Position[], options?: EvacuateOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2684
2725
|
//#endregion
|
|
2685
2726
|
//#region src/generators/cm34-mission-tasks/withdraw.d.ts
|
|
2686
2727
|
type WithdrawOptions = DelayOptions;
|
|
2687
|
-
declare const DEFAULT_WITHDRAW_OPTIONS: Required<Omit<DelayOptions,
|
|
2688
|
-
declare function createWithdrawSymbol(coordinates: Position[], options?: WithdrawOptions): FeatureCollection<MultiLineString | Point>;
|
|
2728
|
+
declare const DEFAULT_WITHDRAW_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2729
|
+
declare function createWithdrawSymbol(coordinates: Position[], options?: WithdrawOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2689
2730
|
//#endregion
|
|
2690
2731
|
//#region src/generators/cm34-mission-tasks/withdraw-under-pressure.d.ts
|
|
2691
2732
|
type WithdrawUnderPressureOptions = DelayOptions;
|
|
2692
|
-
declare const DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS: Required<Omit<DelayOptions,
|
|
2693
|
-
declare function createWithdrawUnderPressureSymbol(coordinates: Position[], options?: WithdrawUnderPressureOptions): FeatureCollection<MultiLineString | Point>;
|
|
2733
|
+
declare const DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2734
|
+
declare function createWithdrawUnderPressureSymbol(coordinates: Position[], options?: WithdrawUnderPressureOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2735
|
+
//#endregion
|
|
2736
|
+
//#region src/generators/cm27-protection-areas/turn.d.ts
|
|
2737
|
+
interface TurnOptions {
|
|
2738
|
+
arrowheadLengthRatio?: number;
|
|
2739
|
+
arrowheadWidthRatio?: number;
|
|
2740
|
+
arcSegments?: number;
|
|
2741
|
+
}
|
|
2742
|
+
declare const DEFAULT_TURN_OPTIONS: Required<TurnOptions>;
|
|
2743
|
+
/**
|
|
2744
|
+
* Generates a quarter-circle shaft from PT2 (rear) to the arrowhead base.
|
|
2745
|
+
* The arrowhead continues tangent to the arc and places its tip at PT1.
|
|
2746
|
+
* PT3 selects which side of the PT2 -> PT1 chord contains the arc.
|
|
2747
|
+
*/
|
|
2748
|
+
declare function createTurn(coordinates: Position[], options?: TurnOptions): FeatureCollection<MultiLineString | MultiPolygon>;
|
|
2749
|
+
//#endregion
|
|
2750
|
+
//#region src/generators/cm34-mission-tasks/turn.d.ts
|
|
2751
|
+
type TurnMissionTaskOptions = TurnOptions & LabelPaddingOptions;
|
|
2752
|
+
/** Generates the TURN mission task symbol (344700). */
|
|
2753
|
+
declare function createTurnMissionTaskSymbol(coordinates: Position[], options?: TurnMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2694
2754
|
//#endregion
|
|
2695
2755
|
//#region src/generators/cm29-protection-lines/antitankDitch.d.ts
|
|
2696
2756
|
interface AntitankDitchOptions extends SmoothLineOptions, LineLabelOptions {
|
|
@@ -2909,7 +2969,7 @@ declare const DEFAULT_FIX_OPTIONS: Required<FixOptions>;
|
|
|
2909
2969
|
declare function createFix(coordinates: Position[], options?: FixOptions): FeatureCollection<MultiLineString>;
|
|
2910
2970
|
//#endregion
|
|
2911
2971
|
//#region src/generators/cm34-mission-tasks/fix.d.ts
|
|
2912
|
-
interface FixMissionTaskOptions extends
|
|
2972
|
+
interface FixMissionTaskOptions extends LabelPaddingOptions {
|
|
2913
2973
|
/** Arrowhead depth as a ratio of the PT2-PT1 axis. */
|
|
2914
2974
|
arrowheadLengthRatio?: number;
|
|
2915
2975
|
/** Arrowhead base width as a ratio of the PT2-PT1 axis. */
|
|
@@ -2922,26 +2982,10 @@ interface FixMissionTaskOptions extends LabelSizeOptions {
|
|
|
2922
2982
|
zigzagPeakCount?: number;
|
|
2923
2983
|
/** Position of the intrinsic F label along the axis, measured from PT2. */
|
|
2924
2984
|
labelPositionRatio?: number;
|
|
2925
|
-
/** Gap around the intrinsic F label as a ratio of the axis length. */
|
|
2926
|
-
labelGapRatio?: number;
|
|
2927
2985
|
}
|
|
2928
2986
|
declare const DEFAULT_FIX_MISSION_TASK_OPTIONS: Required<Omit<FixMissionTaskOptions, keyof LabelSizeOptions>>;
|
|
2929
2987
|
/** Generates the Fix mission task symbol (341100). */
|
|
2930
|
-
declare function createFixMissionTaskSymbol(coordinates: Position[], options?: FixMissionTaskOptions): FeatureCollection<MultiLineString | Point>;
|
|
2931
|
-
//#endregion
|
|
2932
|
-
//#region src/generators/cm27-protection-areas/turn.d.ts
|
|
2933
|
-
interface TurnOptions {
|
|
2934
|
-
arrowheadLengthRatio?: number;
|
|
2935
|
-
arrowheadWidthRatio?: number;
|
|
2936
|
-
arcSegments?: number;
|
|
2937
|
-
}
|
|
2938
|
-
declare const DEFAULT_TURN_OPTIONS: Required<TurnOptions>;
|
|
2939
|
-
/**
|
|
2940
|
-
* Generates a quarter-circle shaft from PT2 (rear) to the arrowhead base.
|
|
2941
|
-
* The arrowhead continues tangent to the arc and places its tip at PT1.
|
|
2942
|
-
* PT3 selects which side of the PT2 -> PT1 chord contains the arc.
|
|
2943
|
-
*/
|
|
2944
|
-
declare function createTurn(coordinates: Position[], options?: TurnOptions): FeatureCollection<MultiLineString | MultiPolygon>;
|
|
2988
|
+
declare function createFixMissionTaskSymbol(coordinates: Position[], options?: FixMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2945
2989
|
//#endregion
|
|
2946
2990
|
//#region src/generators/cm27-protection-areas/minefield.d.ts
|
|
2947
2991
|
interface MinefieldOptions {
|
|
@@ -3117,24 +3161,35 @@ declare const DEFINITIONS: {
|
|
|
3117
3161
|
bypass: ControlMeasureDefinition<"bypass", typeof createBypassSymbol>;
|
|
3118
3162
|
canalize: ControlMeasureDefinition<"canalize", typeof createCanalizeSymbol>;
|
|
3119
3163
|
clear: ControlMeasureDefinition<"clear", typeof createClearSymbol>;
|
|
3164
|
+
"cordon-and-knock": ControlMeasureDefinition<"cordon-and-knock", typeof createCordonAndKnockSymbol>;
|
|
3165
|
+
"cordon-and-search": ControlMeasureDefinition<"cordon-and-search", typeof createCordonAndSearchSymbol>;
|
|
3120
3166
|
counterattack: ControlMeasureDefinition<"counterattack", typeof createCounterattack>;
|
|
3121
3167
|
"counterattack-by-fire": ControlMeasureDefinition<"counterattack-by-fire", typeof createCounterattackByFire>;
|
|
3122
3168
|
cover: ControlMeasureDefinition<"cover", typeof createCoverSymbol>;
|
|
3123
3169
|
delay: ControlMeasureDefinition<"delay", typeof createDelaySymbol>;
|
|
3170
|
+
demonstrate: ControlMeasureDefinition<"demonstrate", typeof createDemonstrateSymbol>;
|
|
3124
3171
|
disengage: ControlMeasureDefinition<"disengage", typeof createDisengageSymbol>;
|
|
3125
3172
|
"disrupt-mission-task": ControlMeasureDefinition<"disrupt-mission-task", typeof createDisruptMissionTaskSymbol>;
|
|
3126
3173
|
envelopment: ControlMeasureDefinition<"envelopment", typeof createEnvelopment>;
|
|
3174
|
+
exploitation: ControlMeasureDefinition<"exploitation", typeof createExploitation>;
|
|
3175
|
+
"forward-passage-of-lines": ControlMeasureDefinition<"forward-passage-of-lines", typeof createForwardPassageOfLinesSymbol>;
|
|
3127
3176
|
infiltration: ControlMeasureDefinition<"infiltration", typeof createInfiltration>;
|
|
3128
3177
|
guard: ControlMeasureDefinition<"guard", typeof createGuardSymbol>;
|
|
3129
3178
|
isolate: ControlMeasureDefinition<"isolate", typeof createIsolateSymbol>;
|
|
3130
3179
|
"movement-to-contact": ControlMeasureDefinition<"movement-to-contact", typeof createMovementToContact>;
|
|
3180
|
+
occupy: ControlMeasureDefinition<"occupy", typeof createOccupySymbol>;
|
|
3131
3181
|
penetrate: ControlMeasureDefinition<"penetrate", typeof createPenetrateSymbol>;
|
|
3182
|
+
pursuit: ControlMeasureDefinition<"pursuit", typeof createPursuit>;
|
|
3132
3183
|
"rearward-passage-of-lines": ControlMeasureDefinition<"rearward-passage-of-lines", typeof createRearwardPassageOfLinesSymbol>;
|
|
3184
|
+
"relief-in-place": ControlMeasureDefinition<"relief-in-place", typeof createReliefInPlaceSymbol>;
|
|
3133
3185
|
retire: ControlMeasureDefinition<"retire", typeof createRetireSymbol>;
|
|
3134
3186
|
screen: ControlMeasureDefinition<"screen", typeof createScreenSymbol>;
|
|
3187
|
+
secure: ControlMeasureDefinition<"secure", typeof createSecureSymbol>;
|
|
3135
3188
|
seize: ControlMeasureDefinition<"seize", typeof createSeizeSymbol>;
|
|
3189
|
+
evacuate: ControlMeasureDefinition<"evacuate", typeof createEvacuateSymbol>;
|
|
3136
3190
|
withdraw: ControlMeasureDefinition<"withdraw", typeof createWithdrawSymbol>;
|
|
3137
3191
|
"withdraw-under-pressure": ControlMeasureDefinition<"withdraw-under-pressure", typeof createWithdrawUnderPressureSymbol>;
|
|
3192
|
+
"turn-mission-task": ControlMeasureDefinition<"turn-mission-task", typeof createTurnMissionTaskSymbol>;
|
|
3138
3193
|
"antitank-ditch-under-construction": ControlMeasureDefinition<"antitank-ditch-under-construction", typeof createAntitankDitchUnderConstruction>;
|
|
3139
3194
|
"antitank-ditch-completed": ControlMeasureDefinition<"antitank-ditch-completed", typeof createAntitankDitchCompleted>;
|
|
3140
3195
|
"antitank-wall": ControlMeasureDefinition<"antitank-wall", typeof createAntitankWall>;
|
|
@@ -3442,6 +3497,15 @@ declare const disruptDrawRule: ControlMeasureDrawRule;
|
|
|
3442
3497
|
//#region src/draw-rules/area15.d.ts
|
|
3443
3498
|
declare const centerRadiusDrawRule: ControlMeasureDrawRule;
|
|
3444
3499
|
//#endregion
|
|
3500
|
+
//#region src/draw-rules/area16.d.ts
|
|
3501
|
+
/**
|
|
3502
|
+
* Area16 — center + start/radius point, mechanically identical to Area15. It
|
|
3503
|
+
* re-labels the shared behaviour rather than aliasing it because a definition's
|
|
3504
|
+
* `rule.id` must carry its `metadata.drawRule` as a prefix (see the registry
|
|
3505
|
+
* invariant in `__tests__/metadata-registry.spec.ts`, ADR-0013).
|
|
3506
|
+
*/
|
|
3507
|
+
declare const occupyDrawRule: ControlMeasureDrawRule;
|
|
3508
|
+
//#endregion
|
|
3445
3509
|
//#region src/draw-rules/area17.d.ts
|
|
3446
3510
|
/**
|
|
3447
3511
|
* Area17 anchor draw rule for Penetrate.
|
|
@@ -3451,6 +3515,13 @@ declare const centerRadiusDrawRule: ControlMeasureDrawRule;
|
|
|
3451
3515
|
*/
|
|
3452
3516
|
declare const penetrateDrawRule: ControlMeasureDrawRule;
|
|
3453
3517
|
//#endregion
|
|
3518
|
+
//#region src/draw-rules/area19.d.ts
|
|
3519
|
+
/**
|
|
3520
|
+
* Area19 — center + start/radius point, mechanically identical to Area15.
|
|
3521
|
+
* The distinct id preserves the doctrinal draw-rule identity in metadata.
|
|
3522
|
+
*/
|
|
3523
|
+
declare const secureDrawRule: ControlMeasureDrawRule;
|
|
3524
|
+
//#endregion
|
|
3454
3525
|
//#region src/draw-rules/point12.d.ts
|
|
3455
3526
|
/**
|
|
3456
3527
|
* Point12 anchor draw rule for the obstacle-bypass family.
|
|
@@ -3605,4 +3676,4 @@ interface AmbushOptions {
|
|
|
3605
3676
|
}
|
|
3606
3677
|
declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
|
|
3607
3678
|
//#endregion
|
|
3608
|
-
export {
|
|
3679
|
+
export { cloneControlMeasure as $, sphericalBearing as $i, DEFAULT_HANDOVER_LINE_OPTIONS as $n, DEFAULT_PICKUP_ZONE_OPTIONS as $r, RetireOptions as $t, getMidpointPerpendicularSignedDistance as A, resolveParameterSemanticRole as Aa, DirectionOfSupportingAttackOptions as Ai, DEFAULT_ISOLATE_OPTIONS as An, GenericSectorOptions as Ar, DEFAULT_FORTIFIED_AREA_OPTIONS as At, roundToFixed as B, canonicalTextAmplifierKey as Ba, DEFAULT_CONTAIN_OPTIONS as Bi, BlockMissionTaskOptions as Bn, BlockArrowOptions as Br, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as Bt, disruptDrawRule as C, PARAMETER_PRESENTATION_TIERS as Ca, controlMeasureIdFromFeature as Ci, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as Cn, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS as Cr, DisruptOptions as Ct, MidpointPerpendicularDrawRuleOptions as D, TextAmplifierDescriptor as Da, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as Di, DEFAULT_CORDON_AND_SEARCH_OPTIONS as Dn, DEFAULT_GENERIC_TEXT_OPTIONS as Dr, TurningMovementOptions as Dt, area27DrawRule as E, ParameterSemanticRole as Ea, SecondaryDirectionOfFireOptions as Ei, CordonAndSearchOptions as En, RadarSearchDoctrineOptions as Er, DEFAULT_TURNING_MOVEMENT_OPTIONS as Et, BaselineFrameOptions as F, LabelPlacementOverride as Fa, DEFAULT_RETAIN_OPTIONS as Fi, DEFAULT_CANALIZE_OPTIONS as Fn, DEFAULT_GENERIC_POLYGON_OPTIONS as Fr, DEFAULT_ANTITANK_WALL_OPTIONS as Ft, dragControlMeasureOptionHandle as G, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as Gi, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS as Gn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as Gr, EvacuateOptions as Gt, SimpleStyleRender as H, resolveAmplifierPlacement as Ha, DEFAULT_BATTLE_POSITION_OPTIONS as Hi, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS as Hn, ClassicArrowHeadStyle as Hr, DEFAULT_WITHDRAW_OPTIONS as Ht, BaselineFrameOrigin as I, TEXT_AMPLIFIER_FIELDS as Ia, RetainOptions as Ii, BypassOptions as In, GenericPolygonOptions as Ir, AntitankDitchOptions as It, foldsBoxTransformOptions as J, LightLineOptions as Ji, LineOfDepartureOptions as Jn, MainAttackOptions as Jr, DEFAULT_SECURE_OPTIONS as Jt, getControlMeasureOptionHandles as K, EngineerWorkLineOptions as Ki, LineOfDepartureContactOptions as Kn, SupportingAttackOptions as Kr, DEFAULT_SEIZE_OPTIONS as Kt, createBaselineFrame as L, TextAmplifierField as La, DEFAULT_STRONG_POINT_OPTIONS as Li, DEFAULT_BYPASS_OPTIONS as Ln, DEFAULT_GENERIC_LINE_OPTIONS as Lr, DEFAULT_ANTITANK_DITCH_OPTIONS as Lt, snapToMidpointPerpendicular as M, AmplifierPlacements as Ma, DirectionOfMainAttackOptions as Mi, ClearOptions as Mn, GenericCircleOptions as Mr, DEFAULT_FORTIFIED_LINE_OPTIONS as Mt, BaselineFrame as N, CanonicalTextAmplifiers as Na, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as Ni, DEFAULT_CLEAR_OPTIONS as Nn, DEFAULT_GENERIC_RECTANGLE_OPTIONS as Nr, FortifiedLineOptions as Nt, computeDefaultMidpointPerpendicularPoint as O, parameterPresentationTierRank as Oa, PrincipalDirectionOfFireOptions as Oi, CordonAndKnockOptions as On, GenericTextOptions as Or, DEFAULT_FRONTAL_ATTACK_OPTIONS as Ot, BaselineFrameNormal as P, GeneratedLabelKey as Pa, DirectionOfAttackAviationOptions as Pi, CanalizeOptions as Pn, GenericRectangleOptions as Pr, AntitankWallOptions as Pt, ControlMeasure as Q, project as Qi, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as Qn, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as Qr, DEFAULT_RETIRE_OPTIONS as Qt, EPSILON as R, TextAmplifierKey as Ra, StrongPointOptions as Ri, BreachOptions as Rn, GenericLineOptions as Rr, DEFAULT_TURN_OPTIONS as Rt, centerRadiusDrawRule as S, ControlMeasurePaintCapability as Sa, StyleHints as Si, CounterattackByFireOptions as Sn, DEFAULT_AIRBORNE_ATTACK_OPTIONS as Sr, DEFAULT_DISRUPT_OPTIONS as St, containDrawRule as T, ParameterPresentationTier as Ta, SECONDARY_DIRECTION_OF_FIRE_DASH as Ti, DEFAULT_COUNTERATTACK_OPTIONS as Tn, RADAR_SEARCH_DOCTRINE_STROKE_COLOR as Tr, DEFAULT_BLOCK_OPTIONS as Tt, toSimpleStyle as U, AnchorTransformEvent as Ua, DEFAULT_GENERIC_C2_LINE_OPTIONS as Ui, PROBABLE_LINE_OF_DEPLOYMENT_DASH as Un, ClassicArrowOptions as Ur, WithdrawOptions as Ut, SimpleStyleProps as V, normalizeTextAmplifiers as Va, BattlePositionOptions as Vi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as Vn, DEFAULT_BLOCK_ARROW_OPTIONS as Vr, WithdrawUnderPressureOptions as Vt, resolveStyleHints as W, ControlMeasureDrawRule as Wa, GenericC2LineOptions as Wi, ProbableLineOfDeploymentOptions as Wn, DEFAULT_CLASSIC_ARROW_OPTIONS as Wr, DEFAULT_EVACUATE_OPTIONS as Wt, RenderOptions as X, Point2D as Xi, LimitOfAdvanceOptions as Xn, computeInitialWidthPoint as Xr, DEFAULT_SCREEN_OPTIONS as Xt, freezeOrientationOptions as Y, LabelSizeOptions as Yi, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS as Yn, calculateMetrics as Yr, SecureOptions as Yt, renderControlMeasure as Z, haversineDistance as Zi, BattleHandoverLineOptions as Zn, AreaOfOperationsOptions as Zr, ScreenOptions as Zt, staticPointDrawRule as _, MeasuredText as _a, TacticalArrowOptions as _i, DemonstrateOptions as _n, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as _r, MinefieldOptions as _t, axis1DrawRule as a, ControlMeasureOptionHandleDragEvent as aa, JointTacticalActionAreaOptions as ai, PenetrateOptions as an, DEFAULT_INFILTRATION_LANE_OPTIONS as ar, OptionsByKind as at, penetrateDrawRule as b, ControlMeasureGeometryType as ba, ControlMeasureRender as bi, CoverOptions as bn, DEFAULT_ATTACK_HELICOPTER_OPTIONS as br, DEFAULT_FIX_OPTIONS as bt, line27DrawRule as c, DEFAULT_LABEL_HEIGHT_CSS_PIXELS as ca, DEFAULT_MOBILE_DEFENSE_OPTIONS as ci, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS as cn, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as cr, getDefaultOptions as ct, line23DrawRule as d, DEFAULT_LINE_JOIN as da, EngagementAreaOptions as di, GuardOptions as dn, DEFAULT_PHASE_LINE_OPTIONS as dr, ObstacleBypassImpossibleOptions as dt, unproject as ea, PickupZoneOptions as ei, DEFAULT_RELIEF_IN_PLACE_OPTIONS as en, HandoverLineOptions as er, isKind as et, turnDrawRule as f, DEFAULT_PORTRAYAL as fa, AreaDefenseOptions as fi, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as fn, PhaseLineOptions as fr, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as ft, dynamicPointDrawRule as g, MeasureTextRequest as ga, DEFAULT_TACTICAL_ARROW_OPTIONS as gi, DEFAULT_DEMONSTRATE_OPTIONS as gn, DEFAULT_ATTACK_BY_FIRE_OPTIONS as gr, DEFAULT_MINEFIELD_OPTIONS as gt, attackByFireDrawRule as h, LogicalTextStyle as ha, EncirclementOptions as hi, DisengageOptions as hn, AttackByFireOptions as hr, ObstacleBypassEasyOptions as ht, rectangleDrawRule as i, ControlMeasureOptionHandle as ia, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as ii, DEFAULT_PENETRATE_OPTIONS as in, HoldingLineOptions as ir, ControlMeasureKind as it, pointOnMidpointPerpendicularAxis as j, AmplifierPlacement as ja, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as ji, IsolateOptions as jn, DEFAULT_GENERIC_CIRCLE_OPTIONS as jr, FortifiedAreaOptions as jt, createMidpointPerpendicularDrawRule as k, resolveParameterPresentationTier as ka, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as ki, DEFAULT_CORDON_AND_KNOCK_OPTIONS as kn, DEFAULT_GENERIC_SECTOR_OPTIONS as kr, FrontalAttackOptions as kt, line26DrawRule as l, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS as la, MobileDefenseOptions as li, MovementToContactOptions as ln, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as lr, listControlMeasureMetadata as lt, ambushDrawRule as m, DEFAULT_STROKE_WIDTH_CSS_PIXELS as ma, DEFAULT_ENCIRCLEMENT_OPTIONS as mi, DEFAULT_DISENGAGE_OPTIONS as mn, FLOTOptions as mr, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as mt, DEFAULT_AMBUSH_OPTIONS as n, DEFAULT_BOUNDARY_OPTIONS as na, DEFAULT_LANDING_ZONE_OPTIONS as ni, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as nn, ReleaseLineOptions as nr, CONTROL_MEASURE_METADATA as nt, supportByFireDrawRule as o, ControlMeasureOptionHandles as oa, AssemblyAreaOptions as oi, DEFAULT_OCCUPY_OPTIONS as on, InfiltrationLaneOptions as or, getControlMeasureMetadata as ot, line1DrawRule as p, DEFAULT_STROKE_DASH_CSS_PIXELS as pa, DEFAULT_AREA_DEFENSE_OPTIONS as pi, DisruptMissionTaskOptions as pn, DEFAULT_FLOT_OPTIONS as pr, ObstacleBypassDifficultOptions as pt, applyBoxTransformOptions as q, DEFAULT_LIGHT_LINE_OPTIONS as qi, DEFAULT_LINE_OF_DEPARTURE_OPTIONS as qn, DEFAULT_MAIN_ATTACK_OPTIONS as qr, SeizeOptions as qt, sectorDrawRule as r, BoxTransformDelta as ra, LandingZoneOptions as ri, RearwardPassageOfLinesOptions as rn, DEFAULT_HOLDING_LINE_OPTIONS as rr, ControlMeasureId as rt, polyline1DrawRule as s, ControlMeasureRenderContext as sa, DEFAULT_ASSEMBLY_AREA_OPTIONS as si, OccupyOptions as sn, BridgeheadLineOptions as sr, getControlMeasureMetadataByValue as st, AmbushOptions as t, BoundaryOptions as ta, MineType as ti, ReliefInPlaceOptions as tn, DEFAULT_RELEASE_LINE_OPTIONS as tr, CONTROL_MEASURE_IDS as tt, line24DrawRule as u, DEFAULT_LINE_CAP as ua, DEFAULT_ENGAGEMENT_AREA_OPTIONS as ui, DEFAULT_GUARD_OPTIONS as un, ForwardEdgeOfBattleAreaOptions as ur, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as ut, point12DrawRule as v, ControlMeasureFillCapability as va, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as vi, DEFAULT_DELAY_OPTIONS as vn, SupportByFireOptions as vr, DEFAULT_FIX_MISSION_TASK_OPTIONS as vt, blockDrawRule as w, ParamDescriptor as wa, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as wi, CounterattackOptions as wn, RADAR_SEARCH_DOCTRINE_FILL_COLOR as wr, BlockOptions as wt, occupyDrawRule as x, ControlMeasureMetadata as xa, FeaturePartProps as xi, DEFAULT_COVER_OPTIONS as xn, AirborneAttackOptions as xr, FixOptions as xt, secureDrawRule as y, ControlMeasureGeometry as ya, FinalProtectiveFireOptions as yi, DelayOptions as yn, AttackHelicopterOptions as yr, FixMissionTaskOptions as yt, getMetersPerPixel as z, TextAmplifiers as za, ContainOptions as zi, DEFAULT_BREACH_OPTIONS as zn, BlockArrowHeadStyle as zr, TurnOptions as zt };
|