@armyc2.c5isr.renderer/mil-sym-ts-web 2.2.4 → 2.3.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/C5Ren.d.ts +21 -8
- package/C5Ren.js +1 -1
- package/C5Ren.js.map +1 -1
- package/package.json +1 -1
package/C5Ren.d.ts
CHANGED
|
@@ -1592,12 +1592,22 @@ export declare class Modifiers {
|
|
|
1592
1592
|
* <pre>
|
|
1593
1593
|
* Lines - Unique Identifier or Primary Purpose
|
|
1594
1594
|
* An amplifier that uniquely identifies a particular symbol or track number. Identifies acquisitions number when used with SIGINT symbology.
|
|
1595
|
-
* Format: Alphanumeric - {1,30}
|
|
1596
|
-
* Symbol Set:
|
|
1595
|
+
* Format: Alphanumeric - Lines: {1,30}, Points: Alphanumeric - {1,7}
|
|
1596
|
+
* Symbol Set: 25
|
|
1597
1597
|
* Remarks:
|
|
1598
1598
|
* </pre>
|
|
1599
1599
|
*/
|
|
1600
1600
|
static readonly T1_UNIQUE_DESIGNATION_2: string;
|
|
1601
|
+
/**
|
|
1602
|
+
* <pre>
|
|
1603
|
+
* Lines - Unique Identifier or Primary Purpose
|
|
1604
|
+
* An amplifier used to provide the designation of the Establishing Headquarters.
|
|
1605
|
+
* Format: Alphanumeric - {1,7}
|
|
1606
|
+
* Symbol Set: 25
|
|
1607
|
+
* Remarks: Used with Fire Support Control Measures only.
|
|
1608
|
+
* </pre>
|
|
1609
|
+
*/
|
|
1610
|
+
static readonly T2_UNIQUE_DESIGNATION_3: string;
|
|
1601
1611
|
/**
|
|
1602
1612
|
* <pre>
|
|
1603
1613
|
* Type
|
|
@@ -1772,9 +1782,10 @@ export declare class Modifiers {
|
|
|
1772
1782
|
* An amplifier that depicts the speed and direction of movement of an object (see 5.3.7.13.3 and figure 18).
|
|
1773
1783
|
* Format: Graphic
|
|
1774
1784
|
* Symbol Set: 10, 15, 30, 35
|
|
1775
|
-
* Remarks:
|
|
1776
|
-
*
|
|
1777
|
-
* Notes:
|
|
1785
|
+
* Remarks: Set as "[Speed] [unit of measure] [angle in degrees if 3 characters "045", and in mils if 4 characters "0150]" like [100 KPH 045]
|
|
1786
|
+
* Valid units of measure are: KPH, KPS, MPH, NMH, KTS
|
|
1787
|
+
* Notes: It is recommended users handle this amplifier within their map engine many maps always show icons in the upright position when the map
|
|
1788
|
+
* is rotated, invalidating the line that's render with the symbol.
|
|
1778
1789
|
* </pre>
|
|
1779
1790
|
*/
|
|
1780
1791
|
static readonly AJ_SPEED_LEADER: string;
|
|
@@ -4312,7 +4323,7 @@ export declare class RendererSettings {
|
|
|
4312
4323
|
* Set a boolean indicating between the use of supply routes labels in all segments (false) or
|
|
4313
4324
|
* to only set 2 labels one at the north and the other one at the south of the graphic (true).
|
|
4314
4325
|
* @param TwoLabelOnly
|
|
4315
|
-
* @deprecated
|
|
4326
|
+
* @deprecated functionally disabled
|
|
4316
4327
|
*/
|
|
4317
4328
|
setTwoLabelOnly(TwoLabelOnly: boolean): void;
|
|
4318
4329
|
/**
|
|
@@ -4603,6 +4614,8 @@ export declare class SymbolID {
|
|
|
4603
4614
|
static readonly StandardIdentity_Context_Reality: number;
|
|
4604
4615
|
static readonly StandardIdentity_Context_Exercise: number;
|
|
4605
4616
|
static readonly StandardIdentity_Context_Simulation: number;
|
|
4617
|
+
static readonly StandardIdentity_Context_Restricted_Target_Reality: number;
|
|
4618
|
+
static readonly StandardIdentity_Context_No_Strike_Entity_Reality: number;
|
|
4606
4619
|
static readonly StandardIdentity_Affiliation_Pending: number;
|
|
4607
4620
|
static readonly StandardIdentity_Affiliation_Unknown: number;
|
|
4608
4621
|
static readonly StandardIdentity_Affiliation_AssumedFriend: number;
|
|
@@ -4854,7 +4867,7 @@ export declare class SymbolID {
|
|
|
4854
4867
|
/**
|
|
4855
4868
|
* Set Sector 1 Modifier at positions 17-18.
|
|
4856
4869
|
* @param symbolID 30 Character string
|
|
4857
|
-
* @param mod1 number 0-255
|
|
4870
|
+
* @param mod1 number 0-99 && 161-255 OR string "00" to "FF"
|
|
4858
4871
|
* @return string
|
|
4859
4872
|
*/
|
|
4860
4873
|
static setModifier1(symbolID: string, mod1: number | string): string;
|
|
@@ -4883,7 +4896,7 @@ export declare class SymbolID {
|
|
|
4883
4896
|
* @param mod2 number 0-255 or string "00" to "FF"
|
|
4884
4897
|
* @return string
|
|
4885
4898
|
*/
|
|
4886
|
-
static setModifier2(symbolID: string, mod2: number): string;
|
|
4899
|
+
static setModifier2(symbolID: string, mod2: number | string): string;
|
|
4887
4900
|
/**
|
|
4888
4901
|
* Get Common Sector 2 Modifier from position 22.
|
|
4889
4902
|
* @param symbolID 30 Character string
|