@orbat-mapper/control-measures 0.17.0 → 0.19.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 +5 -0
- package/dist/{index-DPu0u2KK.d.mts → index-CGoJeN1B.d.mts} +180 -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-C2YRB8uJ.mjs} +1504 -661
- package/media/cordon-and-knock.svg +1 -0
- package/media/cordon-and-search.svg +1 -0
- package/media/follow-and-assume.svg +1 -0
- package/media/follow-and-support.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", "Line25", "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,19 @@ 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>;
|
|
3175
|
+
"follow-and-assume": ControlMeasureDefinition<"follow-and-assume", typeof createFollowAndAssume>;
|
|
3176
|
+
"follow-and-support": ControlMeasureDefinition<"follow-and-support", typeof createFollowAndSupport>;
|
|
3176
3177
|
"forward-passage-of-lines": ControlMeasureDefinition<"forward-passage-of-lines", typeof createForwardPassageOfLinesSymbol>;
|
|
3177
3178
|
infiltration: ControlMeasureDefinition<"infiltration", typeof createInfiltration>;
|
|
3178
3179
|
guard: ControlMeasureDefinition<"guard", typeof createGuardSymbol>;
|
|
@@ -3182,8 +3183,10 @@ declare const DEFINITIONS: {
|
|
|
3182
3183
|
penetrate: ControlMeasureDefinition<"penetrate", typeof createPenetrateSymbol>;
|
|
3183
3184
|
pursuit: ControlMeasureDefinition<"pursuit", typeof createPursuit>;
|
|
3184
3185
|
"rearward-passage-of-lines": ControlMeasureDefinition<"rearward-passage-of-lines", typeof createRearwardPassageOfLinesSymbol>;
|
|
3186
|
+
"relief-in-place": ControlMeasureDefinition<"relief-in-place", typeof createReliefInPlaceSymbol>;
|
|
3185
3187
|
retire: ControlMeasureDefinition<"retire", typeof createRetireSymbol>;
|
|
3186
3188
|
screen: ControlMeasureDefinition<"screen", typeof createScreenSymbol>;
|
|
3189
|
+
secure: ControlMeasureDefinition<"secure", typeof createSecureSymbol>;
|
|
3187
3190
|
seize: ControlMeasureDefinition<"seize", typeof createSeizeSymbol>;
|
|
3188
3191
|
evacuate: ControlMeasureDefinition<"evacuate", typeof createEvacuateSymbol>;
|
|
3189
3192
|
withdraw: ControlMeasureDefinition<"withdraw", typeof createWithdrawSymbol>;
|
|
@@ -3514,6 +3517,13 @@ declare const occupyDrawRule: ControlMeasureDrawRule;
|
|
|
3514
3517
|
*/
|
|
3515
3518
|
declare const penetrateDrawRule: ControlMeasureDrawRule;
|
|
3516
3519
|
//#endregion
|
|
3520
|
+
//#region src/draw-rules/area19.d.ts
|
|
3521
|
+
/**
|
|
3522
|
+
* Area19 — center + start/radius point, mechanically identical to Area15.
|
|
3523
|
+
* The distinct id preserves the doctrinal draw-rule identity in metadata.
|
|
3524
|
+
*/
|
|
3525
|
+
declare const secureDrawRule: ControlMeasureDrawRule;
|
|
3526
|
+
//#endregion
|
|
3517
3527
|
//#region src/draw-rules/point12.d.ts
|
|
3518
3528
|
/**
|
|
3519
3529
|
* Point12 anchor draw rule for the obstacle-bypass family.
|
|
@@ -3668,4 +3678,18 @@ interface AmbushOptions {
|
|
|
3668
3678
|
}
|
|
3669
3679
|
declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
|
|
3670
3680
|
//#endregion
|
|
3671
|
-
|
|
3681
|
+
//#region src/generators/cm34-mission-tasks/follow-shared.d.ts
|
|
3682
|
+
interface FollowOptions extends LabelSizeOptions {
|
|
3683
|
+
/** Uniform arrowhead scale about PT. 1; 1 preserves the standard proportions. */
|
|
3684
|
+
arrowheadSize?: number;
|
|
3685
|
+
}
|
|
3686
|
+
//#endregion
|
|
3687
|
+
//#region src/generators/cm34-mission-tasks/follow-and-assume.d.ts
|
|
3688
|
+
type FollowAndAssumeOptions = FollowOptions;
|
|
3689
|
+
declare function createFollowAndAssume(coordinates: Position[], options?: FollowAndAssumeOptions, textAmplifiers?: CanonicalTextAmplifiers): import("geojson").FeatureCollection<import("geojson").Point | import("geojson").LineString | import("geojson").Polygon, import("geojson").GeoJsonProperties>;
|
|
3690
|
+
//#endregion
|
|
3691
|
+
//#region src/generators/cm34-mission-tasks/follow-and-support.d.ts
|
|
3692
|
+
type FollowAndSupportOptions = FollowOptions;
|
|
3693
|
+
declare function createFollowAndSupport(coordinates: Position[], options?: FollowAndSupportOptions, textAmplifiers?: CanonicalTextAmplifiers): import("geojson").FeatureCollection<import("geojson").Point | import("geojson").LineString | import("geojson").Polygon, import("geojson").GeoJsonProperties>;
|
|
3694
|
+
//#endregion
|
|
3695
|
+
export { freezeOrientationOptions as $, LabelSizeOptions as $i, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS as $n, calculateMetrics as $r, SecureOptions as $t, area27DrawRule as A, ParameterSemanticRole as Aa, SecondaryDirectionOfFireOptions as Ai, CordonAndSearchOptions as An, RadarSearchDoctrineOptions as Ar, DEFAULT_TURNING_MOVEMENT_OPTIONS as At, BaselineFrameOrigin as B, TEXT_AMPLIFIER_FIELDS as Ba, RetainOptions as Bi, BypassOptions as Bn, GenericPolygonOptions as Br, AntitankDitchOptions as Bt, secureDrawRule as C, ControlMeasureGeometry as Ca, FinalProtectiveFireOptions as Ci, DelayOptions as Cn, AttackHelicopterOptions as Cr, FixMissionTaskOptions as Ct, disruptDrawRule as D, PARAMETER_PRESENTATION_TIERS as Da, controlMeasureIdFromFeature as Di, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as Dn, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS as Dr, DisruptOptions as Dt, centerRadiusDrawRule as E, ControlMeasurePaintCapability as Ea, StyleHints as Ei, CounterattackByFireOptions as En, DEFAULT_AIRBORNE_ATTACK_OPTIONS as Er, DEFAULT_DISRUPT_OPTIONS as Et, pointOnMidpointPerpendicularAxis as F, AmplifierPlacement as Fa, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as Fi, IsolateOptions as Fn, DEFAULT_GENERIC_CIRCLE_OPTIONS as Fr, FortifiedAreaOptions as Ft, SimpleStyleProps as G, normalizeTextAmplifiers as Ga, BattlePositionOptions as Gi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as Gn, DEFAULT_BLOCK_ARROW_OPTIONS as Gr, WithdrawUnderPressureOptions as Gt, EPSILON as H, TextAmplifierKey as Ha, StrongPointOptions as Hi, BreachOptions as Hn, GenericLineOptions as Hr, DEFAULT_TURN_OPTIONS as Ht, snapToMidpointPerpendicular as I, AmplifierPlacements as Ia, DirectionOfMainAttackOptions as Ii, ClearOptions as In, GenericCircleOptions as Ir, DEFAULT_FORTIFIED_LINE_OPTIONS as It, resolveStyleHints as J, ControlMeasureDrawRule as Ja, GenericC2LineOptions as Ji, ProbableLineOfDeploymentOptions as Jn, DEFAULT_CLASSIC_ARROW_OPTIONS as Jr, DEFAULT_EVACUATE_OPTIONS as Jt, SimpleStyleRender as K, resolveAmplifierPlacement as Ka, DEFAULT_BATTLE_POSITION_OPTIONS as Ki, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS as Kn, ClassicArrowHeadStyle as Kr, DEFAULT_WITHDRAW_OPTIONS as Kt, BaselineFrame as L, CanonicalTextAmplifiers as La, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as Li, DEFAULT_CLEAR_OPTIONS as Ln, DEFAULT_GENERIC_RECTANGLE_OPTIONS as Lr, FortifiedLineOptions as Lt, computeDefaultMidpointPerpendicularPoint as M, parameterPresentationTierRank as Ma, PrincipalDirectionOfFireOptions as Mi, CordonAndKnockOptions as Mn, GenericTextOptions as Mr, DEFAULT_FRONTAL_ATTACK_OPTIONS as Mt, createMidpointPerpendicularDrawRule as N, resolveParameterPresentationTier as Na, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as Ni, DEFAULT_CORDON_AND_KNOCK_OPTIONS as Nn, DEFAULT_GENERIC_SECTOR_OPTIONS as Nr, FrontalAttackOptions as Nt, blockDrawRule as O, ParamDescriptor as Oa, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as Oi, CounterattackOptions as On, RADAR_SEARCH_DOCTRINE_FILL_COLOR as Or, BlockOptions as Ot, getMidpointPerpendicularSignedDistance as P, resolveParameterSemanticRole as Pa, DirectionOfSupportingAttackOptions as Pi, DEFAULT_ISOLATE_OPTIONS as Pn, GenericSectorOptions as Pr, DEFAULT_FORTIFIED_AREA_OPTIONS as Pt, foldsBoxTransformOptions as Q, LightLineOptions as Qi, LineOfDepartureOptions as Qn, MainAttackOptions as Qr, DEFAULT_SECURE_OPTIONS as Qt, BaselineFrameNormal as R, GeneratedLabelKey as Ra, DirectionOfAttackAviationOptions as Ri, CanalizeOptions as Rn, GenericRectangleOptions as Rr, AntitankWallOptions as Rt, point12DrawRule as S, ControlMeasureFillCapability as Sa, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as Si, DEFAULT_DELAY_OPTIONS as Sn, SupportByFireOptions as Sr, DEFAULT_FIX_MISSION_TASK_OPTIONS as St, occupyDrawRule as T, ControlMeasureMetadata as Ta, FeaturePartProps as Ti, DEFAULT_COVER_OPTIONS as Tn, AirborneAttackOptions as Tr, FixOptions as Tt, getMetersPerPixel as U, TextAmplifiers as Ua, ContainOptions as Ui, DEFAULT_BREACH_OPTIONS as Un, BlockArrowHeadStyle as Ur, TurnOptions as Ut, createBaselineFrame as V, TextAmplifierField as Va, DEFAULT_STRONG_POINT_OPTIONS as Vi, DEFAULT_BYPASS_OPTIONS as Vn, DEFAULT_GENERIC_LINE_OPTIONS as Vr, DEFAULT_ANTITANK_DITCH_OPTIONS as Vt, roundToFixed as W, canonicalTextAmplifierKey as Wa, DEFAULT_CONTAIN_OPTIONS as Wi, BlockMissionTaskOptions as Wn, BlockArrowOptions as Wr, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as Wt, getControlMeasureOptionHandles as X, EngineerWorkLineOptions as Xi, LineOfDepartureContactOptions as Xn, SupportingAttackOptions as Xr, DEFAULT_SEIZE_OPTIONS as Xt, dragControlMeasureOptionHandle as Y, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as Yi, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS as Yn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as Yr, EvacuateOptions as Yt, applyBoxTransformOptions as Z, DEFAULT_LIGHT_LINE_OPTIONS as Zi, DEFAULT_LINE_OF_DEPARTURE_OPTIONS as Zn, DEFAULT_MAIN_ATTACK_OPTIONS as Zr, SeizeOptions as Zt, line1DrawRule as _, DEFAULT_STROKE_DASH_CSS_PIXELS as _a, DEFAULT_AREA_DEFENSE_OPTIONS as _i, DisruptMissionTaskOptions as _n, DEFAULT_FLOT_OPTIONS as _r, ObstacleBypassDifficultOptions as _t, AmbushOptions as a, BoundaryOptions as aa, MineType as ai, ReliefInPlaceOptions as an, DEFAULT_RELEASE_LINE_OPTIONS as ar, CONTROL_MEASURE_IDS as at, dynamicPointDrawRule as b, MeasureTextRequest as ba, DEFAULT_TACTICAL_ARROW_OPTIONS as bi, DEFAULT_DEMONSTRATE_OPTIONS as bn, DEFAULT_ATTACK_BY_FIRE_OPTIONS as br, DEFAULT_MINEFIELD_OPTIONS as bt, rectangleDrawRule as c, ControlMeasureOptionHandle as ca, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as ci, DEFAULT_PENETRATE_OPTIONS as cn, HoldingLineOptions as cr, ControlMeasureKind as ct, polyline1DrawRule as d, ControlMeasureRenderContext as da, DEFAULT_ASSEMBLY_AREA_OPTIONS as di, OccupyOptions as dn, BridgeheadLineOptions as dr, getControlMeasureMetadataByValue as dt, Point2D as ea, computeInitialWidthPoint as ei, DEFAULT_SCREEN_OPTIONS as en, LimitOfAdvanceOptions as er, RenderOptions as et, line27DrawRule as f, DEFAULT_LABEL_HEIGHT_CSS_PIXELS as fa, DEFAULT_MOBILE_DEFENSE_OPTIONS as fi, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS as fn, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as fr, getDefaultOptions as ft, turnDrawRule as g, DEFAULT_PORTRAYAL as ga, AreaDefenseOptions as gi, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as gn, PhaseLineOptions as gr, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as gt, line23DrawRule as h, DEFAULT_LINE_JOIN as ha, EngagementAreaOptions as hi, GuardOptions as hn, DEFAULT_PHASE_LINE_OPTIONS as hr, ObstacleBypassImpossibleOptions as ht, createFollowAndAssume as i, unproject as ia, PickupZoneOptions as ii, DEFAULT_RELIEF_IN_PLACE_OPTIONS as in, HandoverLineOptions as ir, isKind as it, MidpointPerpendicularDrawRuleOptions as j, TextAmplifierDescriptor as ja, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as ji, DEFAULT_CORDON_AND_SEARCH_OPTIONS as jn, DEFAULT_GENERIC_TEXT_OPTIONS as jr, TurningMovementOptions as jt, containDrawRule as k, ParameterPresentationTier as ka, SECONDARY_DIRECTION_OF_FIRE_DASH as ki, DEFAULT_COUNTERATTACK_OPTIONS as kn, RADAR_SEARCH_DOCTRINE_STROKE_COLOR as kr, DEFAULT_BLOCK_OPTIONS as kt, axis1DrawRule as l, ControlMeasureOptionHandleDragEvent as la, JointTacticalActionAreaOptions as li, PenetrateOptions as ln, DEFAULT_INFILTRATION_LANE_OPTIONS as lr, OptionsByKind as lt, line24DrawRule as m, DEFAULT_LINE_CAP as ma, DEFAULT_ENGAGEMENT_AREA_OPTIONS as mi, DEFAULT_GUARD_OPTIONS as mn, ForwardEdgeOfBattleAreaOptions as mr, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as mt, createFollowAndSupport as n, project as na, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as ni, DEFAULT_RETIRE_OPTIONS as nn, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as nr, ControlMeasure as nt, DEFAULT_AMBUSH_OPTIONS as o, DEFAULT_BOUNDARY_OPTIONS as oa, DEFAULT_LANDING_ZONE_OPTIONS as oi, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as on, ReleaseLineOptions as or, CONTROL_MEASURE_METADATA as ot, line26DrawRule as p, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS as pa, MobileDefenseOptions as pi, MovementToContactOptions as pn, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as pr, listControlMeasureMetadata as pt, toSimpleStyle as q, AnchorTransformEvent as qa, DEFAULT_GENERIC_C2_LINE_OPTIONS as qi, PROBABLE_LINE_OF_DEPLOYMENT_DASH as qn, ClassicArrowOptions as qr, WithdrawOptions as qt, FollowAndAssumeOptions as r, sphericalBearing as ra, DEFAULT_PICKUP_ZONE_OPTIONS as ri, RetireOptions as rn, DEFAULT_HANDOVER_LINE_OPTIONS as rr, cloneControlMeasure as rt, sectorDrawRule as s, BoxTransformDelta as sa, LandingZoneOptions as si, RearwardPassageOfLinesOptions as sn, DEFAULT_HOLDING_LINE_OPTIONS as sr, ControlMeasureId as st, FollowAndSupportOptions as t, haversineDistance as ta, AreaOfOperationsOptions as ti, ScreenOptions as tn, BattleHandoverLineOptions as tr, renderControlMeasure as tt, supportByFireDrawRule as u, ControlMeasureOptionHandles as ua, AssemblyAreaOptions as ui, DEFAULT_OCCUPY_OPTIONS as un, InfiltrationLaneOptions as ur, getControlMeasureMetadata as ut, ambushDrawRule as v, DEFAULT_STROKE_WIDTH_CSS_PIXELS as va, DEFAULT_ENCIRCLEMENT_OPTIONS as vi, DEFAULT_DISENGAGE_OPTIONS as vn, FLOTOptions as vr, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as vt, penetrateDrawRule as w, ControlMeasureGeometryType as wa, ControlMeasureRender as wi, CoverOptions as wn, DEFAULT_ATTACK_HELICOPTER_OPTIONS as wr, DEFAULT_FIX_OPTIONS as wt, staticPointDrawRule as x, MeasuredText as xa, TacticalArrowOptions as xi, DemonstrateOptions as xn, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as xr, MinefieldOptions as xt, attackByFireDrawRule as y, LogicalTextStyle as ya, EncirclementOptions as yi, DisengageOptions as yn, AttackByFireOptions as yr, ObstacleBypassEasyOptions as yt, BaselineFrameOptions as z, LabelPlacementOverride as za, DEFAULT_RETAIN_OPTIONS as zi, DEFAULT_CANALIZE_OPTIONS as zn, DEFAULT_GENERIC_POLYGON_OPTIONS as zr, DEFAULT_ANTITANK_WALL_OPTIONS as zt };
|