@orbat-mapper/control-measures 0.17.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-DPu0u2KK.d.mts → index-ARQKlooW.d.mts} +164 -156
- 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-Bh62ZdEY.mjs → renderControlMeasure-DGnX8ELk.mjs} +1229 -609
- 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", "Area16", "Area17", "Area21", "Area27", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line11", "Line23", "Line24", "Line26", "Line27", "Line29", "Line31", "Line32", "Line33", "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. */
|
|
@@ -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,88 +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>;
|
|
2570
2599
|
//#endregion
|
|
2571
2600
|
//#region src/generators/cm34-mission-tasks/forward-passage-of-lines.d.ts
|
|
2572
2601
|
type ForwardPassageOfLinesOptions = DelayOptions;
|
|
2573
|
-
declare function createForwardPassageOfLinesSymbol(coordinates: Position[], options?: ForwardPassageOfLinesOptions): FeatureCollection<MultiLineString | Point>;
|
|
2602
|
+
declare function createForwardPassageOfLinesSymbol(coordinates: Position[], options?: ForwardPassageOfLinesOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2574
2603
|
//#endregion
|
|
2575
2604
|
//#region src/generators/cm34-mission-tasks/infiltration.d.ts
|
|
2576
|
-
interface InfiltrationOptions extends
|
|
2605
|
+
interface InfiltrationOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2577
2606
|
/** Arrowhead depth as a ratio of the Point 1–Point 3 span. */
|
|
2578
2607
|
arrowheadLengthRatio?: number;
|
|
2579
2608
|
/** Arrowhead base width as a ratio of the Point 1–Point 3 span. */
|
|
2580
2609
|
arrowheadWidthRatio?: number;
|
|
2581
2610
|
/** Position of the IN label along the initial straight portion. */
|
|
2582
2611
|
labelPosition?: number;
|
|
2583
|
-
/** Gap around the IN label as a ratio of the initial straight portion. */
|
|
2584
|
-
labelGapRatio?: number;
|
|
2585
2612
|
}
|
|
2586
2613
|
/** Generates the Infiltration mission task symbol (343800). */
|
|
2587
|
-
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>;
|
|
2588
2615
|
//#endregion
|
|
2589
2616
|
//#region src/generators/cm34-mission-tasks/guard.d.ts
|
|
2590
2617
|
type GuardOptions = SecurityTaskOptions;
|
|
2591
2618
|
declare const DEFAULT_GUARD_OPTIONS: Required<Omit<SecurityTaskOptions, "labelSize" | "labelSizePixels">>;
|
|
2592
2619
|
declare function createGuardSymbol(coordinates: Position[], options?: GuardOptions): FeatureCollection<MultiLineString | Point>;
|
|
2593
2620
|
//#endregion
|
|
2594
|
-
//#region src/generators/cm34-mission-tasks/isolate.d.ts
|
|
2595
|
-
/**
|
|
2596
|
-
* Configuration options for the ISOLATE tactical mission task symbol.
|
|
2597
|
-
*/
|
|
2598
|
-
interface IsolateOptions {
|
|
2599
|
-
/** Angular size of the opening on the friendly side, in degrees (default: 30). */
|
|
2600
|
-
openingAngle?: number;
|
|
2601
|
-
/** Number of inward-pointing arrowhead barbs spaced around the closed arc (default: 9). */
|
|
2602
|
-
barbCount?: number;
|
|
2603
|
-
/** Barb length as a ratio of the symbol radius (default: 0.18). */
|
|
2604
|
-
barbLengthRatio?: number;
|
|
2605
|
-
}
|
|
2606
|
-
/**
|
|
2607
|
-
* Generates a GeoJSON FeatureCollection for an ISOLATE mission task symbol (341500).
|
|
2608
|
-
*
|
|
2609
|
-
* A near-complete circle centered on PT. 1 whose radius reaches PT. 2. The arc
|
|
2610
|
-
* starts (bare) at PT. 2's bearing and sweeps clockwise around the closed
|
|
2611
|
-
* portion to a single arrow tip at the far end; the wedge-shaped gap (default
|
|
2612
|
-
* 30°) between that arrow tip and PT. 2 is the opening — the "friendly side".
|
|
2613
|
-
* Inward-pointing arrowhead barbs are spaced along the closed arc, set in from
|
|
2614
|
-
* both ends so they never touch PT. 2 or the arrow tip, conveying the
|
|
2615
|
-
* sealing-off of the enclosed force. Unlike the bracket mission tasks, isolate
|
|
2616
|
-
* carries no glyph label.
|
|
2617
|
-
*
|
|
2618
|
-
* Input Points:
|
|
2619
|
-
* - PT. 1: Center point
|
|
2620
|
-
* - PT. 2: Start point — fixes the radius and the bearing of the opening
|
|
2621
|
-
*
|
|
2622
|
-
* @param coordinates - [PT. 1, PT. 2] as Position arrays
|
|
2623
|
-
* @param options - Configuration options
|
|
2624
|
-
* @returns GeoJSON FeatureCollection containing a single MultiLineString feature
|
|
2625
|
-
*/
|
|
2626
|
-
declare function createIsolateSymbol(coordinates: Position[], options?: IsolateOptions): FeatureCollection<MultiLineString>;
|
|
2627
|
-
//#endregion
|
|
2628
2621
|
//#region src/generators/cm34-mission-tasks/movement-to-contact.d.ts
|
|
2629
2622
|
interface MovementToContactOptions extends VariableWidthAttackOptions, TacticalArrowOptions, ManeuverArrowTaskAmplifierOptions {
|
|
2630
2623
|
/** Bolt length as a multiple of the shaft width at the arrow base. */
|
|
@@ -2637,39 +2630,31 @@ declare const DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS: Required<Omit<MovementToConta
|
|
|
2637
2630
|
declare function createMovementToContact(coordinates: Position[], options?: MovementToContactOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2638
2631
|
//#endregion
|
|
2639
2632
|
//#region src/generators/cm34-mission-tasks/occupy.d.ts
|
|
2640
|
-
interface OccupyOptions extends
|
|
2633
|
+
interface OccupyOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2641
2634
|
/** Angular opening on the friendly side, in degrees. */
|
|
2642
2635
|
openingAngle?: number;
|
|
2643
2636
|
/** Overall X size as a ratio of the symbol radius. */
|
|
2644
2637
|
xSizeRatio?: number;
|
|
2645
2638
|
/** X width-to-height ratio in its local radial/tangential frame. */
|
|
2646
2639
|
xAspectRatio?: number;
|
|
2647
|
-
/** Extra clearance around O, on each side, as a ratio of its height. */
|
|
2648
|
-
labelPadding?: number;
|
|
2649
2640
|
}
|
|
2650
2641
|
declare const DEFAULT_OCCUPY_OPTIONS: Required<Omit<OccupyOptions, keyof LabelSizeOptions>>;
|
|
2651
2642
|
/** Generates the Occupy mission task symbol (341700). */
|
|
2652
|
-
declare function createOccupySymbol(coordinates: Position[], options?: OccupyOptions): FeatureCollection<MultiLineString | Point>;
|
|
2643
|
+
declare function createOccupySymbol(coordinates: Position[], options?: OccupyOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2653
2644
|
//#endregion
|
|
2654
2645
|
//#region src/generators/cm34-mission-tasks/penetrate.d.ts
|
|
2655
|
-
interface PenetrateOptions {
|
|
2646
|
+
interface PenetrateOptions extends LabelPaddingOptions {
|
|
2656
2647
|
/** Arrowhead depth as a ratio of the barrier length (default: 0.15). */
|
|
2657
2648
|
arrowheadLengthRatio?: number;
|
|
2658
2649
|
/** Arrowhead width as a ratio of the barrier length (default: 0.2). */
|
|
2659
2650
|
arrowheadWidthRatio?: number;
|
|
2660
|
-
/** Gap for the 'P' label as a ratio of the shaft length (default: 0.2). */
|
|
2661
|
-
labelGapRatio?: number;
|
|
2662
|
-
/** Text height in projected meters — ground-anchored label size (ADR-0028). */
|
|
2663
|
-
labelSize?: number;
|
|
2664
|
-
/** Text height in CSS pixels — screen-anchored label size (ADR-0028). */
|
|
2665
|
-
labelSizePixels?: number;
|
|
2666
2651
|
}
|
|
2667
|
-
declare const DEFAULT_PENETRATE_OPTIONS: Required<Omit<PenetrateOptions,
|
|
2652
|
+
declare const DEFAULT_PENETRATE_OPTIONS: Required<Omit<PenetrateOptions, keyof LabelSizeOptions>>;
|
|
2668
2653
|
/** Generates the PENETRATE mission task symbol (341800). */
|
|
2669
|
-
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>;
|
|
2670
2655
|
//#endregion
|
|
2671
2656
|
//#region src/generators/cm34-mission-tasks/pursuit.d.ts
|
|
2672
|
-
interface PursuitOptions extends
|
|
2657
|
+
interface PursuitOptions extends LabelPaddingOptions, ArcResolutionOptions {
|
|
2673
2658
|
/** Arrowhead depth as a ratio of the arc diameter. */
|
|
2674
2659
|
arrowheadLengthRatio?: number;
|
|
2675
2660
|
/** Arrowhead base width as a ratio of the arc diameter. */
|
|
@@ -2678,36 +2663,51 @@ interface PursuitOptions extends LabelSizeOptions, ArcResolutionOptions {
|
|
|
2678
2663
|
terminalBarLengthRatio?: number;
|
|
2679
2664
|
/** Position of the P label along the straight portion, from PT. 1 to PT. 2. */
|
|
2680
2665
|
labelPosition?: number;
|
|
2681
|
-
/** Gap around the P label as a ratio of the straight portion. */
|
|
2682
|
-
labelGapRatio?: number;
|
|
2683
2666
|
}
|
|
2684
2667
|
/** Generates the Pursuit mission task symbol (344000). */
|
|
2685
|
-
declare function createPursuit(coordinates: Position[], options?: PursuitOptions): FeatureCollection<MultiLineString | Point>;
|
|
2668
|
+
declare function createPursuit(coordinates: Position[], options?: PursuitOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2686
2669
|
//#endregion
|
|
2687
2670
|
//#region src/generators/cm34-mission-tasks/rearward-passage-of-lines.d.ts
|
|
2688
2671
|
type RearwardPassageOfLinesOptions = DelayOptions;
|
|
2689
|
-
declare const DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS: Required<Omit<DelayOptions,
|
|
2690
|
-
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>;
|
|
2691
2680
|
//#endregion
|
|
2692
2681
|
//#region src/generators/cm34-mission-tasks/retire.d.ts
|
|
2693
2682
|
type RetireOptions = DelayOptions;
|
|
2694
|
-
declare const DEFAULT_RETIRE_OPTIONS: Required<Omit<DelayOptions,
|
|
2683
|
+
declare const DEFAULT_RETIRE_OPTIONS: Required<Omit<DelayOptions, keyof LabelSizeOptions>>;
|
|
2695
2684
|
/** Generates the RETIRE/RETIREMENT mission task symbol (342000). */
|
|
2696
|
-
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>;
|
|
2697
2686
|
//#endregion
|
|
2698
2687
|
//#region src/generators/cm34-mission-tasks/screen.d.ts
|
|
2699
2688
|
type ScreenOptions = SecurityTaskOptions;
|
|
2700
2689
|
declare const DEFAULT_SCREEN_OPTIONS: Required<Omit<SecurityTaskOptions, "labelSize" | "labelSizePixels">>;
|
|
2701
2690
|
declare function createScreenSymbol(coordinates: Position[], options?: ScreenOptions): FeatureCollection<MultiLineString | Point>;
|
|
2702
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
|
|
2703
2705
|
//#region src/generators/cm34-mission-tasks/seize.d.ts
|
|
2704
|
-
interface SeizeOptions extends
|
|
2706
|
+
interface SeizeOptions extends LabelPaddingOptions {
|
|
2705
2707
|
/** Arrowhead depth as a ratio of the PT. 2-to-PT. 4 span. */
|
|
2706
2708
|
arrowheadLengthRatio?: number;
|
|
2707
2709
|
/** Arrowhead base width as a ratio of the PT. 2-to-PT. 4 span. */
|
|
2708
2710
|
arrowheadWidthRatio?: number;
|
|
2709
|
-
/** Gap around the intrinsic S label as a ratio of the arc sweep. */
|
|
2710
|
-
labelGapRatio?: number;
|
|
2711
2711
|
/** Number of segments used to approximate the circular arc. */
|
|
2712
2712
|
curveSegments?: number;
|
|
2713
2713
|
/** Number of segments used to approximate the assigned-unit circle. */
|
|
@@ -2715,23 +2715,23 @@ interface SeizeOptions extends LabelSizeOptions {
|
|
|
2715
2715
|
}
|
|
2716
2716
|
declare const DEFAULT_SEIZE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSizeOptions>>;
|
|
2717
2717
|
/** Generates the Seize mission task symbol (342300). */
|
|
2718
|
-
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
2719
|
//#endregion
|
|
2720
2720
|
//#region src/generators/cm34-mission-tasks/evacuate.d.ts
|
|
2721
2721
|
type EvacuateOptions = SeizeOptions;
|
|
2722
2722
|
declare const DEFAULT_EVACUATE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSizeOptions>>;
|
|
2723
2723
|
/** Generates the Evacuate mission task symbol (344500). */
|
|
2724
|
-
declare function createEvacuateSymbol(coordinates: Position[], options?: EvacuateOptions): FeatureCollection<MultiLineString | Point>;
|
|
2724
|
+
declare function createEvacuateSymbol(coordinates: Position[], options?: EvacuateOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2725
2725
|
//#endregion
|
|
2726
2726
|
//#region src/generators/cm34-mission-tasks/withdraw.d.ts
|
|
2727
2727
|
type WithdrawOptions = DelayOptions;
|
|
2728
|
-
declare const DEFAULT_WITHDRAW_OPTIONS: Required<Omit<DelayOptions,
|
|
2729
|
-
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>;
|
|
2730
2730
|
//#endregion
|
|
2731
2731
|
//#region src/generators/cm34-mission-tasks/withdraw-under-pressure.d.ts
|
|
2732
2732
|
type WithdrawUnderPressureOptions = DelayOptions;
|
|
2733
|
-
declare const DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS: Required<Omit<DelayOptions,
|
|
2734
|
-
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
2735
|
//#endregion
|
|
2736
2736
|
//#region src/generators/cm27-protection-areas/turn.d.ts
|
|
2737
2737
|
interface TurnOptions {
|
|
@@ -2748,12 +2748,9 @@ declare const DEFAULT_TURN_OPTIONS: Required<TurnOptions>;
|
|
|
2748
2748
|
declare function createTurn(coordinates: Position[], options?: TurnOptions): FeatureCollection<MultiLineString | MultiPolygon>;
|
|
2749
2749
|
//#endregion
|
|
2750
2750
|
//#region src/generators/cm34-mission-tasks/turn.d.ts
|
|
2751
|
-
|
|
2752
|
-
/** Gap for the doctrinal 'T' label as a ratio of the arc length. */
|
|
2753
|
-
labelGapRatio?: number;
|
|
2754
|
-
}
|
|
2751
|
+
type TurnMissionTaskOptions = TurnOptions & LabelPaddingOptions;
|
|
2755
2752
|
/** Generates the TURN mission task symbol (344700). */
|
|
2756
|
-
declare function createTurnMissionTaskSymbol(coordinates: Position[], options?: TurnMissionTaskOptions): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2753
|
+
declare function createTurnMissionTaskSymbol(coordinates: Position[], options?: TurnMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2757
2754
|
//#endregion
|
|
2758
2755
|
//#region src/generators/cm29-protection-lines/antitankDitch.d.ts
|
|
2759
2756
|
interface AntitankDitchOptions extends SmoothLineOptions, LineLabelOptions {
|
|
@@ -2972,7 +2969,7 @@ declare const DEFAULT_FIX_OPTIONS: Required<FixOptions>;
|
|
|
2972
2969
|
declare function createFix(coordinates: Position[], options?: FixOptions): FeatureCollection<MultiLineString>;
|
|
2973
2970
|
//#endregion
|
|
2974
2971
|
//#region src/generators/cm34-mission-tasks/fix.d.ts
|
|
2975
|
-
interface FixMissionTaskOptions extends
|
|
2972
|
+
interface FixMissionTaskOptions extends LabelPaddingOptions {
|
|
2976
2973
|
/** Arrowhead depth as a ratio of the PT2-PT1 axis. */
|
|
2977
2974
|
arrowheadLengthRatio?: number;
|
|
2978
2975
|
/** Arrowhead base width as a ratio of the PT2-PT1 axis. */
|
|
@@ -2985,12 +2982,10 @@ interface FixMissionTaskOptions extends LabelSizeOptions {
|
|
|
2985
2982
|
zigzagPeakCount?: number;
|
|
2986
2983
|
/** Position of the intrinsic F label along the axis, measured from PT2. */
|
|
2987
2984
|
labelPositionRatio?: number;
|
|
2988
|
-
/** Gap around the intrinsic F label as a ratio of the axis length. */
|
|
2989
|
-
labelGapRatio?: number;
|
|
2990
2985
|
}
|
|
2991
2986
|
declare const DEFAULT_FIX_MISSION_TASK_OPTIONS: Required<Omit<FixMissionTaskOptions, keyof LabelSizeOptions>>;
|
|
2992
2987
|
/** Generates the Fix mission task symbol (341100). */
|
|
2993
|
-
declare function createFixMissionTaskSymbol(coordinates: Position[], options?: FixMissionTaskOptions): FeatureCollection<MultiLineString | Point>;
|
|
2988
|
+
declare function createFixMissionTaskSymbol(coordinates: Position[], options?: FixMissionTaskOptions, _textAmplifiers?: CanonicalTextAmplifiers, context?: ControlMeasureGeneratorContext): FeatureCollection<MultiLineString | Point>;
|
|
2994
2989
|
//#endregion
|
|
2995
2990
|
//#region src/generators/cm27-protection-areas/minefield.d.ts
|
|
2996
2991
|
interface MinefieldOptions {
|
|
@@ -3166,13 +3161,17 @@ declare const DEFINITIONS: {
|
|
|
3166
3161
|
bypass: ControlMeasureDefinition<"bypass", typeof createBypassSymbol>;
|
|
3167
3162
|
canalize: ControlMeasureDefinition<"canalize", typeof createCanalizeSymbol>;
|
|
3168
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>;
|
|
3169
3166
|
counterattack: ControlMeasureDefinition<"counterattack", typeof createCounterattack>;
|
|
3170
3167
|
"counterattack-by-fire": ControlMeasureDefinition<"counterattack-by-fire", typeof createCounterattackByFire>;
|
|
3171
3168
|
cover: ControlMeasureDefinition<"cover", typeof createCoverSymbol>;
|
|
3172
3169
|
delay: ControlMeasureDefinition<"delay", typeof createDelaySymbol>;
|
|
3170
|
+
demonstrate: ControlMeasureDefinition<"demonstrate", typeof createDemonstrateSymbol>;
|
|
3173
3171
|
disengage: ControlMeasureDefinition<"disengage", typeof createDisengageSymbol>;
|
|
3174
3172
|
"disrupt-mission-task": ControlMeasureDefinition<"disrupt-mission-task", typeof createDisruptMissionTaskSymbol>;
|
|
3175
3173
|
envelopment: ControlMeasureDefinition<"envelopment", typeof createEnvelopment>;
|
|
3174
|
+
exploitation: ControlMeasureDefinition<"exploitation", typeof createExploitation>;
|
|
3176
3175
|
"forward-passage-of-lines": ControlMeasureDefinition<"forward-passage-of-lines", typeof createForwardPassageOfLinesSymbol>;
|
|
3177
3176
|
infiltration: ControlMeasureDefinition<"infiltration", typeof createInfiltration>;
|
|
3178
3177
|
guard: ControlMeasureDefinition<"guard", typeof createGuardSymbol>;
|
|
@@ -3182,8 +3181,10 @@ declare const DEFINITIONS: {
|
|
|
3182
3181
|
penetrate: ControlMeasureDefinition<"penetrate", typeof createPenetrateSymbol>;
|
|
3183
3182
|
pursuit: ControlMeasureDefinition<"pursuit", typeof createPursuit>;
|
|
3184
3183
|
"rearward-passage-of-lines": ControlMeasureDefinition<"rearward-passage-of-lines", typeof createRearwardPassageOfLinesSymbol>;
|
|
3184
|
+
"relief-in-place": ControlMeasureDefinition<"relief-in-place", typeof createReliefInPlaceSymbol>;
|
|
3185
3185
|
retire: ControlMeasureDefinition<"retire", typeof createRetireSymbol>;
|
|
3186
3186
|
screen: ControlMeasureDefinition<"screen", typeof createScreenSymbol>;
|
|
3187
|
+
secure: ControlMeasureDefinition<"secure", typeof createSecureSymbol>;
|
|
3187
3188
|
seize: ControlMeasureDefinition<"seize", typeof createSeizeSymbol>;
|
|
3188
3189
|
evacuate: ControlMeasureDefinition<"evacuate", typeof createEvacuateSymbol>;
|
|
3189
3190
|
withdraw: ControlMeasureDefinition<"withdraw", typeof createWithdrawSymbol>;
|
|
@@ -3514,6 +3515,13 @@ declare const occupyDrawRule: ControlMeasureDrawRule;
|
|
|
3514
3515
|
*/
|
|
3515
3516
|
declare const penetrateDrawRule: ControlMeasureDrawRule;
|
|
3516
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
|
|
3517
3525
|
//#region src/draw-rules/point12.d.ts
|
|
3518
3526
|
/**
|
|
3519
3527
|
* Point12 anchor draw rule for the obstacle-bypass family.
|
|
@@ -3668,4 +3676,4 @@ interface AmbushOptions {
|
|
|
3668
3676
|
}
|
|
3669
3677
|
declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
|
|
3670
3678
|
//#endregion
|
|
3671
|
-
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 };
|