@arcgis/core-adapter 4.32.0-next.11 → 4.32.0-next.12
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/.turbo/turbo-build.log +1 -1
- package/dist/index.cjs +125 -98
- package/dist/index.d.cts +22 -19
- package/dist/index.d.ts +22 -19
- package/dist/index.js +122 -98
- package/package.json +1 -1
- package/src/index.ts +133 -109
- package/support/arcgis.d.ts +2069 -333
package/support/arcgis.d.ts
CHANGED
|
@@ -295,6 +295,8 @@ declare namespace __esri {
|
|
|
295
295
|
|
|
296
296
|
export type FeatureTableCellClickEventHandler = (event: FeatureTableCellClickEvent) => void;
|
|
297
297
|
|
|
298
|
+
export type FeatureTableCellDblclickEventHandler = (event: FeatureTableCellDblclickEvent) => void;
|
|
299
|
+
|
|
298
300
|
export type FeatureTableCellKeydownEventHandler = (event: FeatureTableCellKeydownEvent) => void;
|
|
299
301
|
|
|
300
302
|
export type FeatureTableCellPointeroutEventHandler = (event: FeatureTableCellPointeroutEvent) => void;
|
|
@@ -317,6 +319,8 @@ declare namespace __esri {
|
|
|
317
319
|
event: FeatureTableViewModelCellPointeroverEvent
|
|
318
320
|
) => void;
|
|
319
321
|
|
|
322
|
+
export type FeatureTableViewModelColumnReorderEventHandler = (event: FeatureTableViewModelColumnReorderEvent) => void;
|
|
323
|
+
|
|
320
324
|
export type FeatureTemplatesSelectEventHandler = (event: FeatureTemplatesSelectEvent) => void;
|
|
321
325
|
|
|
322
326
|
export type FeatureTemplatesViewModelSelectEventHandler = (event: FeatureTemplatesViewModelSelectEvent) => void;
|
|
@@ -829,7 +833,7 @@ declare namespace __esri {
|
|
|
829
833
|
*/
|
|
830
834
|
elevationInfo: LineOfSightAnalysisObserverElevationInfo;
|
|
831
835
|
/**
|
|
832
|
-
*
|
|
836
|
+
* References a feature which is excluded from the intersection testing.
|
|
833
837
|
*
|
|
834
838
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#feature)
|
|
835
839
|
*/
|
|
@@ -850,7 +854,7 @@ declare namespace __esri {
|
|
|
850
854
|
*/
|
|
851
855
|
elevationInfo?: LineOfSightAnalysisObserverElevationInfo;
|
|
852
856
|
/**
|
|
853
|
-
*
|
|
857
|
+
* References a feature which is excluded from the intersection testing.
|
|
854
858
|
*
|
|
855
859
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#feature)
|
|
856
860
|
*/
|
|
@@ -896,7 +900,7 @@ declare namespace __esri {
|
|
|
896
900
|
*/
|
|
897
901
|
elevationInfo: LineOfSightAnalysisTargetElevationInfo;
|
|
898
902
|
/**
|
|
899
|
-
*
|
|
903
|
+
* References a feature which is excluded from the intersection testing.
|
|
900
904
|
*
|
|
901
905
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#feature)
|
|
902
906
|
*/
|
|
@@ -917,7 +921,7 @@ declare namespace __esri {
|
|
|
917
921
|
*/
|
|
918
922
|
elevationInfo?: LineOfSightAnalysisTargetElevationInfo;
|
|
919
923
|
/**
|
|
920
|
-
*
|
|
924
|
+
* References a feature which is excluded from the intersection testing.
|
|
921
925
|
*
|
|
922
926
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#feature)
|
|
923
927
|
*/
|
|
@@ -1109,7 +1113,7 @@ declare namespace __esri {
|
|
|
1109
1113
|
*/
|
|
1110
1114
|
farDistance: number;
|
|
1111
1115
|
/**
|
|
1112
|
-
*
|
|
1116
|
+
* References a feature from which the observer is internally offset, provided that its geometry faces are close enough to the observer.
|
|
1113
1117
|
*
|
|
1114
1118
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-Viewshed.html#feature)
|
|
1115
1119
|
*/
|
|
@@ -1123,7 +1127,7 @@ declare namespace __esri {
|
|
|
1123
1127
|
*/
|
|
1124
1128
|
heading: number;
|
|
1125
1129
|
/**
|
|
1126
|
-
* The horizontal field of view (FOV) angle defines
|
|
1130
|
+
* The horizontal field of view (FOV) angle defines the width of the scope being analyzed (in degrees).
|
|
1127
1131
|
*
|
|
1128
1132
|
* @default 45
|
|
1129
1133
|
*
|
|
@@ -1145,7 +1149,7 @@ declare namespace __esri {
|
|
|
1145
1149
|
*/
|
|
1146
1150
|
tilt: number;
|
|
1147
1151
|
/**
|
|
1148
|
-
* The vertical field of view (FOV) angle defines
|
|
1152
|
+
* The vertical field of view (FOV) angle defines the height of the scope being analyzed (in degrees).
|
|
1149
1153
|
*
|
|
1150
1154
|
* @default 45
|
|
1151
1155
|
*
|
|
@@ -1162,7 +1166,7 @@ declare namespace __esri {
|
|
|
1162
1166
|
*/
|
|
1163
1167
|
farDistance?: number;
|
|
1164
1168
|
/**
|
|
1165
|
-
*
|
|
1169
|
+
* References a feature from which the observer is internally offset, provided that its geometry faces are close enough to the observer.
|
|
1166
1170
|
*
|
|
1167
1171
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-Viewshed.html#feature)
|
|
1168
1172
|
*/
|
|
@@ -1176,7 +1180,7 @@ declare namespace __esri {
|
|
|
1176
1180
|
*/
|
|
1177
1181
|
heading?: number;
|
|
1178
1182
|
/**
|
|
1179
|
-
* The horizontal field of view (FOV) angle defines
|
|
1183
|
+
* The horizontal field of view (FOV) angle defines the width of the scope being analyzed (in degrees).
|
|
1180
1184
|
*
|
|
1181
1185
|
* @default 45
|
|
1182
1186
|
*
|
|
@@ -1198,7 +1202,7 @@ declare namespace __esri {
|
|
|
1198
1202
|
*/
|
|
1199
1203
|
tilt?: number;
|
|
1200
1204
|
/**
|
|
1201
|
-
* The vertical field of view (FOV) angle defines
|
|
1205
|
+
* The vertical field of view (FOV) angle defines the height of the scope being analyzed (in degrees).
|
|
1202
1206
|
*
|
|
1203
1207
|
* @default 45
|
|
1204
1208
|
*
|
|
@@ -1282,6 +1286,17 @@ declare namespace __esri {
|
|
|
1282
1286
|
|
|
1283
1287
|
export const basemapUtils: basemapUtils;
|
|
1284
1288
|
|
|
1289
|
+
/**
|
|
1290
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1291
|
+
*
|
|
1292
|
+
* CollectionFlattener utils for Components.
|
|
1293
|
+
*/
|
|
1294
|
+
interface CollectionFlattener {}
|
|
1295
|
+
|
|
1296
|
+
export const CollectionFlattener: CollectionFlattener;
|
|
1297
|
+
|
|
1298
|
+
export interface coreCollectionFlattener {}
|
|
1299
|
+
|
|
1285
1300
|
/**
|
|
1286
1301
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1287
1302
|
*
|
|
@@ -1298,6 +1313,22 @@ declare namespace __esri {
|
|
|
1298
1313
|
|
|
1299
1314
|
export const drawUtils: drawUtils;
|
|
1300
1315
|
|
|
1316
|
+
/**
|
|
1317
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1318
|
+
*
|
|
1319
|
+
* Font utils for Components.
|
|
1320
|
+
*/
|
|
1321
|
+
interface fontUtils {
|
|
1322
|
+
/**
|
|
1323
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1324
|
+
*
|
|
1325
|
+
* loads the FontFace associated with a specific font family, style, and weight.
|
|
1326
|
+
*/
|
|
1327
|
+
loadFont(font: any): Promise<any>;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
export const fontUtils: fontUtils;
|
|
1331
|
+
|
|
1301
1332
|
/**
|
|
1302
1333
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1303
1334
|
*
|
|
@@ -1658,6 +1689,137 @@ declare namespace __esri {
|
|
|
1658
1689
|
|
|
1659
1690
|
export const mediaUtils: mediaUtils;
|
|
1660
1691
|
|
|
1692
|
+
/**
|
|
1693
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1694
|
+
*
|
|
1695
|
+
* Table template utilities for the map viewer application.
|
|
1696
|
+
*/
|
|
1697
|
+
interface templateUtils {
|
|
1698
|
+
/**
|
|
1699
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1700
|
+
*
|
|
1701
|
+
* Generates an AttributeTableTemplate based on the default layer fields.
|
|
1702
|
+
*/
|
|
1703
|
+
createDefaultAttributeTableTemplateFromLayer(
|
|
1704
|
+
options: templateUtilsCreateDefaultAttributeTableTemplateFromLayerOptions
|
|
1705
|
+
): Promise<AttributeTableTemplate>;
|
|
1706
|
+
/**
|
|
1707
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1708
|
+
*
|
|
1709
|
+
* Generates a TableTemplate based on the default layer fields.
|
|
1710
|
+
*/
|
|
1711
|
+
createDefaultTableTemplateFromLayer(
|
|
1712
|
+
options: templateUtilsCreateDefaultTableTemplateFromLayerOptions
|
|
1713
|
+
): Promise<TableTemplate>;
|
|
1714
|
+
/**
|
|
1715
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1716
|
+
*
|
|
1717
|
+
* Generates a TableTemplate based on a pre-existing AttributeTableTemplate.
|
|
1718
|
+
*/
|
|
1719
|
+
createTableTemplateFromAttributeTableTemplate(
|
|
1720
|
+
options: templateUtilsCreateTableTemplateFromAttributeTableTemplateOptions
|
|
1721
|
+
): Promise<TableTemplate>;
|
|
1722
|
+
/**
|
|
1723
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1724
|
+
*
|
|
1725
|
+
* Syncs a provided AttributeTableTemplate with the current state of a provided FeatureTable, using the 'columns' Collection on FeatureTable specifically.
|
|
1726
|
+
*/
|
|
1727
|
+
syncAttributeTableTemplate(
|
|
1728
|
+
table: FeatureTable,
|
|
1729
|
+
template: AttributeTableTemplate,
|
|
1730
|
+
includeHiddenColumns?: AttributeTableTemplate
|
|
1731
|
+
): AttributeTableTemplate;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
export const templateUtils: templateUtils;
|
|
1735
|
+
|
|
1736
|
+
export interface templateUtilsCreateDefaultAttributeTableTemplateFromLayerOptions {
|
|
1737
|
+
/**
|
|
1738
|
+
* Layer from which to generate a default template.
|
|
1739
|
+
*
|
|
1740
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
|
|
1741
|
+
*/
|
|
1742
|
+
layer:
|
|
1743
|
+
| CatalogFootprintLayer
|
|
1744
|
+
| CSVLayer
|
|
1745
|
+
| FeatureLayer
|
|
1746
|
+
| GeoJSONLayer
|
|
1747
|
+
| ImageryLayer
|
|
1748
|
+
| KnowledgeGraphSublayer
|
|
1749
|
+
| SceneLayer
|
|
1750
|
+
| WFSLayer;
|
|
1751
|
+
/**
|
|
1752
|
+
* Indicates 'attachment' columns should be excluded.
|
|
1753
|
+
*
|
|
1754
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
|
|
1755
|
+
*/
|
|
1756
|
+
excludeAttachments?: boolean;
|
|
1757
|
+
/**
|
|
1758
|
+
* Indicates 'relationship' columns should be excluded.
|
|
1759
|
+
*
|
|
1760
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
|
|
1761
|
+
*/
|
|
1762
|
+
excludeRelationships?: boolean;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
export interface templateUtilsCreateDefaultTableTemplateFromLayerOptions {
|
|
1766
|
+
/**
|
|
1767
|
+
* Layer from which to generate a default template.
|
|
1768
|
+
*
|
|
1769
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
|
|
1770
|
+
*/
|
|
1771
|
+
layer:
|
|
1772
|
+
| CatalogFootprintLayer
|
|
1773
|
+
| CSVLayer
|
|
1774
|
+
| FeatureLayer
|
|
1775
|
+
| GeoJSONLayer
|
|
1776
|
+
| ImageryLayer
|
|
1777
|
+
| KnowledgeGraphSublayer
|
|
1778
|
+
| SceneLayer
|
|
1779
|
+
| WFSLayer;
|
|
1780
|
+
/**
|
|
1781
|
+
* Indicates 'attachment' columns should be excluded.
|
|
1782
|
+
*
|
|
1783
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
|
|
1784
|
+
*/
|
|
1785
|
+
excludeAttachments?: boolean;
|
|
1786
|
+
/**
|
|
1787
|
+
* Indicates 'relationship' columns should be excluded.
|
|
1788
|
+
*
|
|
1789
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
|
|
1790
|
+
*/
|
|
1791
|
+
excludeRelationships?: boolean;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
export interface templateUtilsCreateTableTemplateFromAttributeTableTemplateOptions {
|
|
1795
|
+
/**
|
|
1796
|
+
* Layer from which to generate a default template.
|
|
1797
|
+
*
|
|
1798
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
|
|
1799
|
+
*/
|
|
1800
|
+
layer:
|
|
1801
|
+
| CatalogFootprintLayer
|
|
1802
|
+
| CSVLayer
|
|
1803
|
+
| FeatureLayer
|
|
1804
|
+
| GeoJSONLayer
|
|
1805
|
+
| ImageryLayer
|
|
1806
|
+
| KnowledgeGraphSublayer
|
|
1807
|
+
| SceneLayer
|
|
1808
|
+
| WFSLayer;
|
|
1809
|
+
/**
|
|
1810
|
+
* Instance of an AttributeTableTemplate used to configure a new TableTemplate.
|
|
1811
|
+
*
|
|
1812
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
|
|
1813
|
+
*/
|
|
1814
|
+
template: AttributeTableTemplate;
|
|
1815
|
+
/**
|
|
1816
|
+
* Indicates columns should be generated for fields without associated elements.
|
|
1817
|
+
*
|
|
1818
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
|
|
1819
|
+
*/
|
|
1820
|
+
includeHiddenFields?: boolean;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1661
1823
|
/**
|
|
1662
1824
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1663
1825
|
*
|
|
@@ -2893,7 +3055,7 @@ declare namespace __esri {
|
|
|
2893
3055
|
/**
|
|
2894
3056
|
* Number of milliseconds [request](https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html) will wait for response from a server.
|
|
2895
3057
|
*
|
|
2896
|
-
* @default
|
|
3058
|
+
* @default 62000
|
|
2897
3059
|
*
|
|
2898
3060
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#request)
|
|
2899
3061
|
*/
|
|
@@ -3101,13 +3263,13 @@ declare namespace __esri {
|
|
|
3101
3263
|
*/
|
|
3102
3264
|
dependsOn?: string[];
|
|
3103
3265
|
/**
|
|
3104
|
-
* The constructor used to [autocast](../
|
|
3266
|
+
* The constructor used to [autocast](../autocasting/) the property.
|
|
3105
3267
|
*
|
|
3106
3268
|
* [Read more...](global.html#type)
|
|
3107
3269
|
*/
|
|
3108
3270
|
type?: Function;
|
|
3109
3271
|
/**
|
|
3110
|
-
* The function to use to [autocast](https://developers.arcgis.com/javascript/latest/
|
|
3272
|
+
* The function to use to [autocast](https://developers.arcgis.com/javascript/latest/autocasting/) the property.
|
|
3111
3273
|
*
|
|
3112
3274
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#property)
|
|
3113
3275
|
*/
|
|
@@ -4788,7 +4950,7 @@ declare namespace __esri {
|
|
|
4788
4950
|
*
|
|
4789
4951
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html#type)
|
|
4790
4952
|
*/
|
|
4791
|
-
readonly type: "attachment" | "field" | "group" | "relationship" | "text";
|
|
4953
|
+
readonly type: "attachment" | "field" | "group" | "relationship" | "text" | "utilityNetworkAssociationElement";
|
|
4792
4954
|
/**
|
|
4793
4955
|
* A reference to the [name](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-ExpressionInfo.html#name) of an [Arcade](https://developers.arcgis.com/javascript/latest/arcade/) expression defined in the [expressionInfos](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html#expressionInfos) of the [FormTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html).
|
|
4794
4956
|
*
|
|
@@ -8352,6 +8514,57 @@ declare namespace __esri {
|
|
|
8352
8514
|
|
|
8353
8515
|
export const affineTransformOperator: affineTransformOperator;
|
|
8354
8516
|
|
|
8517
|
+
/**
|
|
8518
|
+
* Calculates the alpha shape of 2D points (concave hull).
|
|
8519
|
+
*
|
|
8520
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html)
|
|
8521
|
+
*/
|
|
8522
|
+
interface alphaShapeOperator {
|
|
8523
|
+
/**
|
|
8524
|
+
* Calculates the alpha shape on the input geometry.
|
|
8525
|
+
*
|
|
8526
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#execute)
|
|
8527
|
+
*/
|
|
8528
|
+
execute(geometry: Geometry, alpha: number): ExecuteResult;
|
|
8529
|
+
/**
|
|
8530
|
+
* Calculates the alpha shape on a set of geometries with the option to aggregate the result.
|
|
8531
|
+
*
|
|
8532
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany)
|
|
8533
|
+
*/
|
|
8534
|
+
executeMany(geometries: Geometry[], alpha: number, options?: alphaShapeOperatorExecuteManyOptions): Polygon[];
|
|
8535
|
+
}
|
|
8536
|
+
|
|
8537
|
+
export const alphaShapeOperator: alphaShapeOperator;
|
|
8538
|
+
|
|
8539
|
+
export interface alphaShapeOperatorExecuteManyOptions {
|
|
8540
|
+
/**
|
|
8541
|
+
* Indicates if the alpha shape polygons should be merged.
|
|
8542
|
+
*
|
|
8543
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany)
|
|
8544
|
+
*/
|
|
8545
|
+
merge?: boolean;
|
|
8546
|
+
}
|
|
8547
|
+
|
|
8548
|
+
/**
|
|
8549
|
+
* Object returned by the [executeMany()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany) method.
|
|
8550
|
+
*
|
|
8551
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
|
|
8552
|
+
*/
|
|
8553
|
+
export interface ExecuteResult {
|
|
8554
|
+
/**
|
|
8555
|
+
* The alpha shape polygon.
|
|
8556
|
+
*
|
|
8557
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
|
|
8558
|
+
*/
|
|
8559
|
+
alphaShape: Polygon;
|
|
8560
|
+
/**
|
|
8561
|
+
* The calculated alpha value used to generate the alpha shape.
|
|
8562
|
+
*
|
|
8563
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
|
|
8564
|
+
*/
|
|
8565
|
+
calculatedAlpha: number;
|
|
8566
|
+
}
|
|
8567
|
+
|
|
8355
8568
|
/**
|
|
8356
8569
|
* Returns the planar area of a 2D geometry in its spatial reference units.
|
|
8357
8570
|
*
|
|
@@ -8370,13 +8583,51 @@ declare namespace __esri {
|
|
|
8370
8583
|
|
|
8371
8584
|
export interface areaOperatorExecuteOptions {
|
|
8372
8585
|
/**
|
|
8373
|
-
*
|
|
8586
|
+
* The area unit of the return value.
|
|
8374
8587
|
*
|
|
8375
8588
|
* [Read more...](global.html#unit)
|
|
8376
8589
|
*/
|
|
8377
8590
|
unit?: AreaUnit;
|
|
8378
8591
|
}
|
|
8379
8592
|
|
|
8593
|
+
/**
|
|
8594
|
+
* Fills the closed gaps between 2D polygons using polygon boundaries and polylines as the boundary for creating new polygons.
|
|
8595
|
+
*
|
|
8596
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-autoCompleteOperator.html)
|
|
8597
|
+
*/
|
|
8598
|
+
interface autoCompleteOperator {
|
|
8599
|
+
/**
|
|
8600
|
+
* Fills the gaps between polygons using the polylines as additional boundaries.
|
|
8601
|
+
*
|
|
8602
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-autoCompleteOperator.html#execute)
|
|
8603
|
+
*/
|
|
8604
|
+
execute(polygons: Polygon[], polylines: Polyline[]): Polygon[];
|
|
8605
|
+
}
|
|
8606
|
+
|
|
8607
|
+
export const autoCompleteOperator: autoCompleteOperator;
|
|
8608
|
+
|
|
8609
|
+
/**
|
|
8610
|
+
* Calculates the topological boundary of a 2D geometry.
|
|
8611
|
+
*
|
|
8612
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html)
|
|
8613
|
+
*/
|
|
8614
|
+
interface boundaryOperator {
|
|
8615
|
+
/**
|
|
8616
|
+
* Calculates the boundary on the input geometry.
|
|
8617
|
+
*
|
|
8618
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#execute)
|
|
8619
|
+
*/
|
|
8620
|
+
execute(geometry: Geometry): Geometry;
|
|
8621
|
+
/**
|
|
8622
|
+
* Calculates the boundaries on a set of geometries.
|
|
8623
|
+
*
|
|
8624
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#executeMany)
|
|
8625
|
+
*/
|
|
8626
|
+
executeMany(geometries: Geometry[]): Geometry[];
|
|
8627
|
+
}
|
|
8628
|
+
|
|
8629
|
+
export const boundaryOperator: boundaryOperator;
|
|
8630
|
+
|
|
8380
8631
|
/**
|
|
8381
8632
|
* Creates planar buffers around 2D geometries.
|
|
8382
8633
|
*
|
|
@@ -8481,6 +8732,12 @@ declare namespace __esri {
|
|
|
8481
8732
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html)
|
|
8482
8733
|
*/
|
|
8483
8734
|
interface containsOperator {
|
|
8735
|
+
/**
|
|
8736
|
+
* Accelerate a geometry.
|
|
8737
|
+
*
|
|
8738
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#accelerateGeometry)
|
|
8739
|
+
*/
|
|
8740
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
8484
8741
|
/**
|
|
8485
8742
|
* Perform the contains operation on two geometries.
|
|
8486
8743
|
*
|
|
@@ -8534,6 +8791,12 @@ declare namespace __esri {
|
|
|
8534
8791
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html)
|
|
8535
8792
|
*/
|
|
8536
8793
|
interface crossesOperator {
|
|
8794
|
+
/**
|
|
8795
|
+
* Accelerate a geometry.
|
|
8796
|
+
*
|
|
8797
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#accelerateGeometry)
|
|
8798
|
+
*/
|
|
8799
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
8537
8800
|
/**
|
|
8538
8801
|
* Perform the crosses operation on two geometries.
|
|
8539
8802
|
*
|
|
@@ -8656,6 +8919,12 @@ declare namespace __esri {
|
|
|
8656
8919
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html)
|
|
8657
8920
|
*/
|
|
8658
8921
|
interface disjointOperator {
|
|
8922
|
+
/**
|
|
8923
|
+
* Accelerate a geometry.
|
|
8924
|
+
*
|
|
8925
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#accelerateGeometry)
|
|
8926
|
+
*/
|
|
8927
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
8659
8928
|
/**
|
|
8660
8929
|
* Perform a disjoint operation on two geometries.
|
|
8661
8930
|
*
|
|
@@ -8697,6 +8966,12 @@ declare namespace __esri {
|
|
|
8697
8966
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html)
|
|
8698
8967
|
*/
|
|
8699
8968
|
interface equalsOperator {
|
|
8969
|
+
/**
|
|
8970
|
+
* Accelerate a geometry.
|
|
8971
|
+
*
|
|
8972
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#accelerateGeometry)
|
|
8973
|
+
*/
|
|
8974
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
8700
8975
|
/**
|
|
8701
8976
|
* Perform the equals operation on two geometries.
|
|
8702
8977
|
*
|
|
@@ -8902,6 +9177,145 @@ declare namespace __esri {
|
|
|
8902
9177
|
unit?: LengthUnit;
|
|
8903
9178
|
}
|
|
8904
9179
|
|
|
9180
|
+
/**
|
|
9181
|
+
* Finds closest vertices of a 2D geometry using geodesic distance.
|
|
9182
|
+
*
|
|
9183
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html)
|
|
9184
|
+
*/
|
|
9185
|
+
interface geodesicProximityOperator {
|
|
9186
|
+
/**
|
|
9187
|
+
* Returns the nearest coordinate on the geometry to the given input point.
|
|
9188
|
+
*
|
|
9189
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
|
|
9190
|
+
*/
|
|
9191
|
+
getNearestCoordinate(
|
|
9192
|
+
geometry: Geometry,
|
|
9193
|
+
point: Point,
|
|
9194
|
+
options?: geodesicProximityOperatorGetNearestCoordinateOptions
|
|
9195
|
+
): ProximityResult;
|
|
9196
|
+
/**
|
|
9197
|
+
* Returns the nearest vertex on the geometry.
|
|
9198
|
+
*
|
|
9199
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertex)
|
|
9200
|
+
*/
|
|
9201
|
+
getNearestVertex(
|
|
9202
|
+
geometry: Geometry,
|
|
9203
|
+
point: Point,
|
|
9204
|
+
options?: geodesicProximityOperatorGetNearestVertexOptions
|
|
9205
|
+
): ProximityResult;
|
|
9206
|
+
/**
|
|
9207
|
+
* Returns vertices of the geometry that are closer to the given point than the given radius.
|
|
9208
|
+
*
|
|
9209
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices)
|
|
9210
|
+
*/
|
|
9211
|
+
getNearestVertices(
|
|
9212
|
+
geometry: Geometry,
|
|
9213
|
+
point: Point,
|
|
9214
|
+
searchRadius: number,
|
|
9215
|
+
maxVertexCountToReturn: number,
|
|
9216
|
+
options?: geodesicProximityOperatorGetNearestVerticesOptions
|
|
9217
|
+
): ProximityResult[];
|
|
9218
|
+
/**
|
|
9219
|
+
* Indicates if all dependencies of this module have been loaded.
|
|
9220
|
+
*
|
|
9221
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#isLoaded)
|
|
9222
|
+
*/
|
|
9223
|
+
isLoaded(): boolean;
|
|
9224
|
+
/**
|
|
9225
|
+
* Loads this module's dependencies.
|
|
9226
|
+
*
|
|
9227
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#load)
|
|
9228
|
+
*/
|
|
9229
|
+
load(): Promise<any>;
|
|
9230
|
+
}
|
|
9231
|
+
|
|
9232
|
+
export const geodesicProximityOperator: geodesicProximityOperator;
|
|
9233
|
+
|
|
9234
|
+
export interface geodesicProximityOperatorGetNearestCoordinateOptions {
|
|
9235
|
+
/**
|
|
9236
|
+
* When the parameter is set to true, this function will calculate the left/right side of a polyline or polygon.
|
|
9237
|
+
*
|
|
9238
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
|
|
9239
|
+
*/
|
|
9240
|
+
calculateLeftRightSide?: boolean;
|
|
9241
|
+
/**
|
|
9242
|
+
* The value controls the error of calculation.
|
|
9243
|
+
*
|
|
9244
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
|
|
9245
|
+
*/
|
|
9246
|
+
maxDeviation?: number;
|
|
9247
|
+
/**
|
|
9248
|
+
* When `geometry` is a polygon, the function will test if `point` is inside of the polygon.
|
|
9249
|
+
*
|
|
9250
|
+
* @default true
|
|
9251
|
+
*
|
|
9252
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
|
|
9253
|
+
*/
|
|
9254
|
+
testPolygonInterior?: boolean;
|
|
9255
|
+
/**
|
|
9256
|
+
* The length unit of the max deviation and result distance.
|
|
9257
|
+
*
|
|
9258
|
+
* [Read more...](global.html#unit)
|
|
9259
|
+
*/
|
|
9260
|
+
unit?: LengthUnit;
|
|
9261
|
+
}
|
|
9262
|
+
|
|
9263
|
+
export interface geodesicProximityOperatorGetNearestVertexOptions {
|
|
9264
|
+
/**
|
|
9265
|
+
* The length unit of the result distance.
|
|
9266
|
+
*
|
|
9267
|
+
* [Read more...](global.html#unit)
|
|
9268
|
+
*/
|
|
9269
|
+
unit?: LengthUnit;
|
|
9270
|
+
}
|
|
9271
|
+
|
|
9272
|
+
export interface geodesicProximityOperatorGetNearestVerticesOptions {
|
|
9273
|
+
/**
|
|
9274
|
+
* The length unit of the search radius and result distances.
|
|
9275
|
+
*
|
|
9276
|
+
* [Read more...](global.html#unit)
|
|
9277
|
+
*/
|
|
9278
|
+
unit?: LengthUnit;
|
|
9279
|
+
}
|
|
9280
|
+
|
|
9281
|
+
/**
|
|
9282
|
+
* Object returned from the [getNearestCoordinate()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate), [getNearestVertex()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#nearestVegetNearestVertex), and [getNearestVertices()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices) methods.
|
|
9283
|
+
*
|
|
9284
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9285
|
+
*/
|
|
9286
|
+
export interface ProximityResult {
|
|
9287
|
+
/**
|
|
9288
|
+
* The nearest coordinate on the geometry to the given input point.
|
|
9289
|
+
*
|
|
9290
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9291
|
+
*/
|
|
9292
|
+
coordinate: Point;
|
|
9293
|
+
/**
|
|
9294
|
+
* The distance to the input geometry.
|
|
9295
|
+
*
|
|
9296
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9297
|
+
*/
|
|
9298
|
+
distance: number;
|
|
9299
|
+
/**
|
|
9300
|
+
* Indicates if the result is empty.
|
|
9301
|
+
*
|
|
9302
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9303
|
+
*/
|
|
9304
|
+
isEmpty: boolean;
|
|
9305
|
+
/**
|
|
9306
|
+
* Indicates if the nearest coordinate is on the right side or left side of the input point.
|
|
9307
|
+
*
|
|
9308
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9309
|
+
*/
|
|
9310
|
+
isRightSide?: boolean;
|
|
9311
|
+
/**
|
|
9312
|
+
* The index of the vertex on the geometry that is closest to the input point.
|
|
9313
|
+
*
|
|
9314
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
|
|
9315
|
+
*/
|
|
9316
|
+
vertexIndex: number;
|
|
9317
|
+
}
|
|
9318
|
+
|
|
8905
9319
|
/**
|
|
8906
9320
|
* Returns the geodetic area of a 2D geometry.
|
|
8907
9321
|
*
|
|
@@ -9168,12 +9582,34 @@ declare namespace __esri {
|
|
|
9168
9582
|
unit?: LengthUnit;
|
|
9169
9583
|
}
|
|
9170
9584
|
|
|
9585
|
+
/**
|
|
9586
|
+
* Performs an Integration operation on a set of 2D geometries.
|
|
9587
|
+
*
|
|
9588
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html)
|
|
9589
|
+
*/
|
|
9590
|
+
interface integrateOperator {
|
|
9591
|
+
/**
|
|
9592
|
+
* Performs the topological integration of the geometry set in the XY plane.
|
|
9593
|
+
*
|
|
9594
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html#executeMany)
|
|
9595
|
+
*/
|
|
9596
|
+
executeMany(geometries: Geometry[]): Geometry[];
|
|
9597
|
+
}
|
|
9598
|
+
|
|
9599
|
+
export const integrateOperator: integrateOperator;
|
|
9600
|
+
|
|
9171
9601
|
/**
|
|
9172
9602
|
* Create new geometries using the topological intersection of 2D geometries.
|
|
9173
9603
|
*
|
|
9174
9604
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html)
|
|
9175
9605
|
*/
|
|
9176
9606
|
interface intersectionOperator {
|
|
9607
|
+
/**
|
|
9608
|
+
* Accelerate a geometry.
|
|
9609
|
+
*
|
|
9610
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#accelerateGeometry)
|
|
9611
|
+
*/
|
|
9612
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
9177
9613
|
/**
|
|
9178
9614
|
* Performs the topological intersection operation on two geometries.
|
|
9179
9615
|
*
|
|
@@ -9196,6 +9632,12 @@ declare namespace __esri {
|
|
|
9196
9632
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html)
|
|
9197
9633
|
*/
|
|
9198
9634
|
interface intersectsOperator {
|
|
9635
|
+
/**
|
|
9636
|
+
* Accelerate a geometry.
|
|
9637
|
+
*
|
|
9638
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#accelerateGeometry)
|
|
9639
|
+
*/
|
|
9640
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
9199
9641
|
/**
|
|
9200
9642
|
* Perform a intersects operation on two geometries.
|
|
9201
9643
|
*
|
|
@@ -9206,6 +9648,58 @@ declare namespace __esri {
|
|
|
9206
9648
|
|
|
9207
9649
|
export const intersectsOperator: intersectsOperator;
|
|
9208
9650
|
|
|
9651
|
+
/**
|
|
9652
|
+
* Performs a 2D relational operation that checks if two geometries are near each other.
|
|
9653
|
+
*
|
|
9654
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html)
|
|
9655
|
+
*/
|
|
9656
|
+
interface isNearOperator {
|
|
9657
|
+
/**
|
|
9658
|
+
* Returns true if the geometries are not further than the given 2D distance from each other.
|
|
9659
|
+
*
|
|
9660
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html#execute)
|
|
9661
|
+
*/
|
|
9662
|
+
execute(
|
|
9663
|
+
geometry1: Geometry,
|
|
9664
|
+
geometry2: Geometry,
|
|
9665
|
+
distance: Geometry,
|
|
9666
|
+
options?: isNearOperatorExecuteOptions
|
|
9667
|
+
): boolean;
|
|
9668
|
+
}
|
|
9669
|
+
|
|
9670
|
+
export const isNearOperator: isNearOperator;
|
|
9671
|
+
|
|
9672
|
+
export interface isNearOperatorExecuteOptions {
|
|
9673
|
+
/**
|
|
9674
|
+
* The length unit of the distance.
|
|
9675
|
+
*
|
|
9676
|
+
* [Read more...](global.html#unit)
|
|
9677
|
+
*/
|
|
9678
|
+
unit?: LengthUnit;
|
|
9679
|
+
}
|
|
9680
|
+
|
|
9681
|
+
/**
|
|
9682
|
+
* Calculates a label point for the given 2D geometries.
|
|
9683
|
+
*
|
|
9684
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html)
|
|
9685
|
+
*/
|
|
9686
|
+
interface labelPointOperator {
|
|
9687
|
+
/**
|
|
9688
|
+
* Performs the label point operation on the geometry.
|
|
9689
|
+
*
|
|
9690
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#execute)
|
|
9691
|
+
*/
|
|
9692
|
+
execute(geometry: Geometry): Point;
|
|
9693
|
+
/**
|
|
9694
|
+
* Performs the label point operation on the geometry set.
|
|
9695
|
+
*
|
|
9696
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#executeMany)
|
|
9697
|
+
*/
|
|
9698
|
+
executeMany(geometries: Geometry[]): Point[];
|
|
9699
|
+
}
|
|
9700
|
+
|
|
9701
|
+
export const labelPointOperator: labelPointOperator;
|
|
9702
|
+
|
|
9209
9703
|
/**
|
|
9210
9704
|
* Returns the planar length of a 2D geometry.
|
|
9211
9705
|
*
|
|
@@ -9231,6 +9725,96 @@ declare namespace __esri {
|
|
|
9231
9725
|
unit?: LengthUnit;
|
|
9232
9726
|
}
|
|
9233
9727
|
|
|
9728
|
+
/**
|
|
9729
|
+
* Performs the topological operation of breaking the input set of 2D polygons and polylines into segments and rebuilding a new set of polygons from the non-intersecting areas.
|
|
9730
|
+
*
|
|
9731
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html)
|
|
9732
|
+
*/
|
|
9733
|
+
interface linesToPolygonsOperator {
|
|
9734
|
+
/**
|
|
9735
|
+
* Performs the topological lines to polygons operation.
|
|
9736
|
+
*
|
|
9737
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html#executeMany)
|
|
9738
|
+
*/
|
|
9739
|
+
executeMany(geometries: Geometry[]): Polygon[];
|
|
9740
|
+
}
|
|
9741
|
+
|
|
9742
|
+
export const linesToPolygonsOperator: linesToPolygonsOperator;
|
|
9743
|
+
|
|
9744
|
+
/**
|
|
9745
|
+
* Performs an OGC locate between operation on M values for the given 2D geometries.
|
|
9746
|
+
*
|
|
9747
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html)
|
|
9748
|
+
*/
|
|
9749
|
+
interface locateBetweenOperator {
|
|
9750
|
+
/**
|
|
9751
|
+
* Performs the locate between or locate along operation on the geometry.
|
|
9752
|
+
*
|
|
9753
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html#executeMany)
|
|
9754
|
+
*/
|
|
9755
|
+
executeMany(geometries: Geometry[], startM: number, endM: number): Geometry[];
|
|
9756
|
+
}
|
|
9757
|
+
|
|
9758
|
+
export const locateBetweenOperator: locateBetweenOperator;
|
|
9759
|
+
|
|
9760
|
+
/**
|
|
9761
|
+
* Create a minimum bounding circle for the input geometry.
|
|
9762
|
+
*
|
|
9763
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html)
|
|
9764
|
+
*/
|
|
9765
|
+
interface minimumBoundingCircleOperator {
|
|
9766
|
+
/**
|
|
9767
|
+
* Performs the minimum bounding circle operation on the geometry.
|
|
9768
|
+
*
|
|
9769
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#execute)
|
|
9770
|
+
*/
|
|
9771
|
+
execute(geometry: Geometry): Polygon;
|
|
9772
|
+
/**
|
|
9773
|
+
* Performs the minimum bounding circle operation on the geometry set.
|
|
9774
|
+
*
|
|
9775
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany)
|
|
9776
|
+
*/
|
|
9777
|
+
executeMany(geometries: Geometry[], options?: minimumBoundingCircleOperatorExecuteManyOptions): Polygon[];
|
|
9778
|
+
}
|
|
9779
|
+
|
|
9780
|
+
export const minimumBoundingCircleOperator: minimumBoundingCircleOperator;
|
|
9781
|
+
|
|
9782
|
+
export interface minimumBoundingCircleOperatorExecuteManyOptions {
|
|
9783
|
+
/**
|
|
9784
|
+
* Indicates if the minimum bounding circle geometries should be merged.
|
|
9785
|
+
*
|
|
9786
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany)
|
|
9787
|
+
*/
|
|
9788
|
+
merge?: boolean;
|
|
9789
|
+
}
|
|
9790
|
+
|
|
9791
|
+
/**
|
|
9792
|
+
* Convert multipart 2D geometries to single part geometries.
|
|
9793
|
+
*
|
|
9794
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html)
|
|
9795
|
+
*/
|
|
9796
|
+
interface multiPartToSinglePartOperator {
|
|
9797
|
+
/**
|
|
9798
|
+
* Performs the multipart to single part operation on the input geometries.
|
|
9799
|
+
*
|
|
9800
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany)
|
|
9801
|
+
*/
|
|
9802
|
+
executeMany(geometries: Geometry[], options?: multiPartToSinglePartOperatorExecuteManyOptions): Geometry[];
|
|
9803
|
+
}
|
|
9804
|
+
|
|
9805
|
+
export const multiPartToSinglePartOperator: multiPartToSinglePartOperator;
|
|
9806
|
+
|
|
9807
|
+
export interface multiPartToSinglePartOperatorExecuteManyOptions {
|
|
9808
|
+
/**
|
|
9809
|
+
* When this parameter is set to false, the input polygons will not be simplified before converting them to single part geometries.
|
|
9810
|
+
*
|
|
9811
|
+
* @default true
|
|
9812
|
+
*
|
|
9813
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany)
|
|
9814
|
+
*/
|
|
9815
|
+
simplifyPolygons?: boolean;
|
|
9816
|
+
}
|
|
9817
|
+
|
|
9234
9818
|
/**
|
|
9235
9819
|
* Offset 2D geometries.
|
|
9236
9820
|
*
|
|
@@ -9321,6 +9905,12 @@ declare namespace __esri {
|
|
|
9321
9905
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html)
|
|
9322
9906
|
*/
|
|
9323
9907
|
interface overlapsOperator {
|
|
9908
|
+
/**
|
|
9909
|
+
* Accelerate a geometry.
|
|
9910
|
+
*
|
|
9911
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#accelerateGeometry)
|
|
9912
|
+
*/
|
|
9913
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
9324
9914
|
/**
|
|
9325
9915
|
* Perform the overlaps operation on two geometries.
|
|
9326
9916
|
*
|
|
@@ -9331,6 +9921,129 @@ declare namespace __esri {
|
|
|
9331
9921
|
|
|
9332
9922
|
export const overlapsOperator: overlapsOperator;
|
|
9333
9923
|
|
|
9924
|
+
/**
|
|
9925
|
+
* Performs an overlay operation on a set of 2D polygons in the XY plane.
|
|
9926
|
+
*
|
|
9927
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html)
|
|
9928
|
+
*/
|
|
9929
|
+
interface polygonOverlayOperator {
|
|
9930
|
+
/**
|
|
9931
|
+
* Performs the topological overlay of the geometry set in the XY plane.
|
|
9932
|
+
*
|
|
9933
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9934
|
+
*/
|
|
9935
|
+
executeMany(geometries: Geometry[], options?: polygonOverlayOperatorExecuteManyOptions): Geometry[];
|
|
9936
|
+
}
|
|
9937
|
+
|
|
9938
|
+
export const polygonOverlayOperator: polygonOverlayOperator;
|
|
9939
|
+
|
|
9940
|
+
export interface polygonOverlayOperatorExecuteManyOptions {
|
|
9941
|
+
/**
|
|
9942
|
+
* Create polygons to fill gaps.
|
|
9943
|
+
*
|
|
9944
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9945
|
+
*/
|
|
9946
|
+
gaps?: boolean;
|
|
9947
|
+
/**
|
|
9948
|
+
* Create polygons to fill holes.
|
|
9949
|
+
*
|
|
9950
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9951
|
+
*/
|
|
9952
|
+
holes?: boolean;
|
|
9953
|
+
/**
|
|
9954
|
+
* Output non-overlapping areas of polygons.
|
|
9955
|
+
*
|
|
9956
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9957
|
+
*/
|
|
9958
|
+
noOverlaps?: boolean;
|
|
9959
|
+
/**
|
|
9960
|
+
* Output overlapping areas of polygons.
|
|
9961
|
+
*
|
|
9962
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9963
|
+
*/
|
|
9964
|
+
overlaps?: boolean;
|
|
9965
|
+
/**
|
|
9966
|
+
* Output multipart polygons.
|
|
9967
|
+
*
|
|
9968
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
|
|
9969
|
+
*/
|
|
9970
|
+
multiPart?: boolean;
|
|
9971
|
+
}
|
|
9972
|
+
|
|
9973
|
+
/**
|
|
9974
|
+
* Performs a topological operation for slicing a 2D polygon into smaller polygons.
|
|
9975
|
+
*
|
|
9976
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html)
|
|
9977
|
+
*/
|
|
9978
|
+
interface polygonSlicerOperator {
|
|
9979
|
+
/**
|
|
9980
|
+
* Finds positions of the sliced strips for a given polygon given the number of equal area parts to slice the polygon into.
|
|
9981
|
+
*
|
|
9982
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#findSlicesByArea)
|
|
9983
|
+
*/
|
|
9984
|
+
findSlicesByArea(
|
|
9985
|
+
polygon: Polygon,
|
|
9986
|
+
partCount: number,
|
|
9987
|
+
remainingArea: number,
|
|
9988
|
+
options?: polygonSlicerOperatorFindSlicesByAreaOptions
|
|
9989
|
+
): number[];
|
|
9990
|
+
/**
|
|
9991
|
+
* Slices the given polygon into equal area parts, not necessarily strips.
|
|
9992
|
+
*
|
|
9993
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#recursiveSliceEqualArea)
|
|
9994
|
+
*/
|
|
9995
|
+
recursiveSliceEqualArea(
|
|
9996
|
+
polygon: Polygon,
|
|
9997
|
+
partCount: number,
|
|
9998
|
+
options?: polygonSlicerOperatorRecursiveSliceEqualAreaOptions
|
|
9999
|
+
): Polygon[];
|
|
10000
|
+
/**
|
|
10001
|
+
* Slices the given polygon into strips.
|
|
10002
|
+
*
|
|
10003
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#sliceIntoStrips)
|
|
10004
|
+
*/
|
|
10005
|
+
sliceIntoStrips(
|
|
10006
|
+
polygon: Polygon,
|
|
10007
|
+
ySlices: number[],
|
|
10008
|
+
options?: polygonSlicerOperatorSliceIntoStripsOptions
|
|
10009
|
+
): Polygon[];
|
|
10010
|
+
}
|
|
10011
|
+
|
|
10012
|
+
export const polygonSlicerOperator: polygonSlicerOperator;
|
|
10013
|
+
|
|
10014
|
+
export interface polygonSlicerOperatorFindSlicesByAreaOptions {
|
|
10015
|
+
/**
|
|
10016
|
+
* The affine transformation to apply to the polygon before slicing.
|
|
10017
|
+
*
|
|
10018
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#findSlicesByArea)
|
|
10019
|
+
*/
|
|
10020
|
+
transform?: Transformation;
|
|
10021
|
+
/**
|
|
10022
|
+
* The area unit of the remaining area.
|
|
10023
|
+
*
|
|
10024
|
+
* [Read more...](global.html#unit)
|
|
10025
|
+
*/
|
|
10026
|
+
unit?: AreaUnit;
|
|
10027
|
+
}
|
|
10028
|
+
|
|
10029
|
+
export interface polygonSlicerOperatorRecursiveSliceEqualAreaOptions {
|
|
10030
|
+
/**
|
|
10031
|
+
* The affine transformation to apply to the polygon before slicing.
|
|
10032
|
+
*
|
|
10033
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#recursiveSliceEqualArea)
|
|
10034
|
+
*/
|
|
10035
|
+
transform?: Transformation;
|
|
10036
|
+
}
|
|
10037
|
+
|
|
10038
|
+
export interface polygonSlicerOperatorSliceIntoStripsOptions {
|
|
10039
|
+
/**
|
|
10040
|
+
* The affine transformation to apply to the polygon before slicing.
|
|
10041
|
+
*
|
|
10042
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#sliceIntoStrips)
|
|
10043
|
+
*/
|
|
10044
|
+
transform?: Transformation;
|
|
10045
|
+
}
|
|
10046
|
+
|
|
9334
10047
|
/**
|
|
9335
10048
|
* Find the closest vertices of the 2D geometry.
|
|
9336
10049
|
*
|
|
@@ -9346,13 +10059,17 @@ declare namespace __esri {
|
|
|
9346
10059
|
geometry: Geometry,
|
|
9347
10060
|
point: Point,
|
|
9348
10061
|
options?: proximityOperatorGetNearestCoordinateOptions
|
|
9349
|
-
):
|
|
10062
|
+
): proximityOperatorProximityResult;
|
|
9350
10063
|
/**
|
|
9351
10064
|
* Returns the nearest vertex on the geometry.
|
|
9352
10065
|
*
|
|
9353
10066
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertex)
|
|
9354
10067
|
*/
|
|
9355
|
-
getNearestVertex(
|
|
10068
|
+
getNearestVertex(
|
|
10069
|
+
geometry: Geometry,
|
|
10070
|
+
point: Point,
|
|
10071
|
+
options?: proximityOperatorGetNearestVertexOptions
|
|
10072
|
+
): proximityOperatorProximityResult;
|
|
9356
10073
|
/**
|
|
9357
10074
|
* Returns vertices of the geometry that are closer to the given point than the given radius.
|
|
9358
10075
|
*
|
|
@@ -9362,8 +10079,9 @@ declare namespace __esri {
|
|
|
9362
10079
|
geometry: Geometry,
|
|
9363
10080
|
point: Point,
|
|
9364
10081
|
searchRadius: number,
|
|
9365
|
-
maxVertexCountToReturn: number
|
|
9366
|
-
|
|
10082
|
+
maxVertexCountToReturn: number,
|
|
10083
|
+
options?: proximityOperatorGetNearestVerticesOptions
|
|
10084
|
+
): proximityOperatorProximityResult[];
|
|
9367
10085
|
}
|
|
9368
10086
|
|
|
9369
10087
|
export const proximityOperator: proximityOperator;
|
|
@@ -9383,6 +10101,30 @@ declare namespace __esri {
|
|
|
9383
10101
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate)
|
|
9384
10102
|
*/
|
|
9385
10103
|
testPolygonInterior?: boolean;
|
|
10104
|
+
/**
|
|
10105
|
+
* The length unit of the result distance.
|
|
10106
|
+
*
|
|
10107
|
+
* [Read more...](global.html#unit)
|
|
10108
|
+
*/
|
|
10109
|
+
unit?: LengthUnit;
|
|
10110
|
+
}
|
|
10111
|
+
|
|
10112
|
+
export interface proximityOperatorGetNearestVertexOptions {
|
|
10113
|
+
/**
|
|
10114
|
+
* The length unit of the result distance.
|
|
10115
|
+
*
|
|
10116
|
+
* [Read more...](global.html#unit)
|
|
10117
|
+
*/
|
|
10118
|
+
unit?: LengthUnit;
|
|
10119
|
+
}
|
|
10120
|
+
|
|
10121
|
+
export interface proximityOperatorGetNearestVerticesOptions {
|
|
10122
|
+
/**
|
|
10123
|
+
* The length unit of the search radius and result distances.
|
|
10124
|
+
*
|
|
10125
|
+
* [Read more...](global.html#unit)
|
|
10126
|
+
*/
|
|
10127
|
+
unit?: LengthUnit;
|
|
9386
10128
|
}
|
|
9387
10129
|
|
|
9388
10130
|
/**
|
|
@@ -9390,7 +10132,7 @@ declare namespace __esri {
|
|
|
9390
10132
|
*
|
|
9391
10133
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
|
|
9392
10134
|
*/
|
|
9393
|
-
export interface
|
|
10135
|
+
export interface proximityOperatorProximityResult {
|
|
9394
10136
|
/**
|
|
9395
10137
|
* The nearest coordinate on the geometry to the given input point.
|
|
9396
10138
|
*
|
|
@@ -9414,13 +10156,13 @@ declare namespace __esri {
|
|
|
9414
10156
|
*
|
|
9415
10157
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
|
|
9416
10158
|
*/
|
|
9417
|
-
|
|
10159
|
+
isRightSide?: boolean;
|
|
9418
10160
|
/**
|
|
9419
10161
|
* The index of the vertex on the geometry that is closest to the input point.
|
|
9420
10162
|
*
|
|
9421
10163
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
|
|
9422
10164
|
*/
|
|
9423
|
-
vertexIndex
|
|
10165
|
+
vertexIndex: number;
|
|
9424
10166
|
}
|
|
9425
10167
|
|
|
9426
10168
|
/**
|
|
@@ -9429,6 +10171,13 @@ declare namespace __esri {
|
|
|
9429
10171
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html)
|
|
9430
10172
|
*/
|
|
9431
10173
|
interface relateOperator {
|
|
10174
|
+
/**
|
|
10175
|
+
* Accelerate a geometry.
|
|
10176
|
+
*
|
|
10177
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html#accelerateGeometry)
|
|
10178
|
+
*/
|
|
10179
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
10180
|
+
|
|
9432
10181
|
execute(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
|
|
9433
10182
|
|
|
9434
10183
|
isValidDE9IM(relation: void): void;
|
|
@@ -9436,6 +10185,22 @@ declare namespace __esri {
|
|
|
9436
10185
|
|
|
9437
10186
|
export const relateOperator: relateOperator;
|
|
9438
10187
|
|
|
10188
|
+
/**
|
|
10189
|
+
* Reshape 2D polygons or polylines with a single path polyline.
|
|
10190
|
+
*
|
|
10191
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-reshapeOperator.html)
|
|
10192
|
+
*/
|
|
10193
|
+
interface reshapeOperator {
|
|
10194
|
+
/**
|
|
10195
|
+
* Performs the reshape operation on a polygon or polyline using a single path polyline as the reshaper.
|
|
10196
|
+
*
|
|
10197
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-reshapeOperator.html#execute)
|
|
10198
|
+
*/
|
|
10199
|
+
execute(geometry: Polygon | Polyline, reshaper: Polyline): Polygon | Polyline;
|
|
10200
|
+
}
|
|
10201
|
+
|
|
10202
|
+
export const reshapeOperator: reshapeOperator;
|
|
10203
|
+
|
|
9439
10204
|
/**
|
|
9440
10205
|
* Simplifies 2D geometries by removing unnecessary vertices while preserving the geometry shape.
|
|
9441
10206
|
*
|
|
@@ -9513,6 +10278,12 @@ declare namespace __esri {
|
|
|
9513
10278
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#setIdentity)
|
|
9514
10279
|
*/
|
|
9515
10280
|
setIdentity(): void;
|
|
10281
|
+
/**
|
|
10282
|
+
* Use this method to swap the x and y coordinate values in the transformation.
|
|
10283
|
+
*
|
|
10284
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#setSwapCoordinates)
|
|
10285
|
+
*/
|
|
10286
|
+
setSwapCoordinates(): void;
|
|
9516
10287
|
/**
|
|
9517
10288
|
* Shifts a geometry's points by the specified proportion in parallel to the x and y directions, except those points that are along the shear axis, which is a line defined by the x and y coordinates.
|
|
9518
10289
|
*
|
|
@@ -9577,6 +10348,12 @@ declare namespace __esri {
|
|
|
9577
10348
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html)
|
|
9578
10349
|
*/
|
|
9579
10350
|
interface touchesOperator {
|
|
10351
|
+
/**
|
|
10352
|
+
* Accelerate a geometry.
|
|
10353
|
+
*
|
|
10354
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#accelerateGeometry)
|
|
10355
|
+
*/
|
|
10356
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
9580
10357
|
/**
|
|
9581
10358
|
* Perform a touches operation on two geometries.
|
|
9582
10359
|
*
|
|
@@ -9615,6 +10392,12 @@ declare namespace __esri {
|
|
|
9615
10392
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html)
|
|
9616
10393
|
*/
|
|
9617
10394
|
interface withinOperator {
|
|
10395
|
+
/**
|
|
10396
|
+
* Accelerate a geometry.
|
|
10397
|
+
*
|
|
10398
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#accelerateGeometry)
|
|
10399
|
+
*/
|
|
10400
|
+
accelerateGeometry(geometry: Geometry): boolean;
|
|
9618
10401
|
/**
|
|
9619
10402
|
* Perform a within operation on two geometries.
|
|
9620
10403
|
*
|
|
@@ -14526,6 +15309,12 @@ declare namespace __esri {
|
|
|
14526
15309
|
|
|
14527
15310
|
constructor(properties?: CSVLayerProperties);
|
|
14528
15311
|
|
|
15312
|
+
/**
|
|
15313
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15314
|
+
*
|
|
15315
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#attributeTableTemplate)
|
|
15316
|
+
*/
|
|
15317
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
14529
15318
|
/**
|
|
14530
15319
|
* Describes the layer's supported capabilities.
|
|
14531
15320
|
*
|
|
@@ -14774,6 +15563,12 @@ declare namespace __esri {
|
|
|
14774
15563
|
FeatureEffectLayerProperties,
|
|
14775
15564
|
FeatureReductionLayerProperties,
|
|
14776
15565
|
PortalLayerProperties {
|
|
15566
|
+
/**
|
|
15567
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15568
|
+
*
|
|
15569
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#attributeTableTemplate)
|
|
15570
|
+
*/
|
|
15571
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
14777
15572
|
/**
|
|
14778
15573
|
* Copyright information for the layer.
|
|
14779
15574
|
*
|
|
@@ -15347,7 +16142,7 @@ declare namespace __esri {
|
|
|
15347
16142
|
*/
|
|
15348
16143
|
readonly fullExtent: Extent;
|
|
15349
16144
|
/**
|
|
15350
|
-
* The analysis
|
|
16145
|
+
* The [DimensionAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-DimensionAnalysis.html) associated with the layer that stores the dimension shapes.
|
|
15351
16146
|
*
|
|
15352
16147
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-DimensionLayer.html#source)
|
|
15353
16148
|
*/
|
|
@@ -15372,7 +16167,7 @@ declare namespace __esri {
|
|
|
15372
16167
|
|
|
15373
16168
|
interface DimensionLayerProperties extends LayerProperties, OperationalLayerProperties {
|
|
15374
16169
|
/**
|
|
15375
|
-
* The analysis
|
|
16170
|
+
* The [DimensionAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-DimensionAnalysis.html) associated with the layer that stores the dimension shapes.
|
|
15376
16171
|
*
|
|
15377
16172
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-DimensionLayer.html#source)
|
|
15378
16173
|
*/
|
|
@@ -15597,7 +16392,7 @@ declare namespace __esri {
|
|
|
15597
16392
|
constructor(properties?: FeatureLayerProperties);
|
|
15598
16393
|
|
|
15599
16394
|
/**
|
|
15600
|
-
*
|
|
16395
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15601
16396
|
*
|
|
15602
16397
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
|
|
15603
16398
|
*/
|
|
@@ -15817,12 +16612,6 @@ declare namespace __esri {
|
|
|
15817
16612
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#refresh)
|
|
15818
16613
|
*/
|
|
15819
16614
|
refresh(): void;
|
|
15820
|
-
/**
|
|
15821
|
-
* Compatibility warning for old webscene configurations which do not renderer or highlight fully transparent graphics anymore
|
|
15822
|
-
*
|
|
15823
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#warnInvisibleDrapedSymbols)
|
|
15824
|
-
*/
|
|
15825
|
-
warnInvisibleDrapedSymbols(): void;
|
|
15826
16615
|
|
|
15827
16616
|
on(name: "refresh", eventHandler: FeatureLayerRefreshEventHandler): IHandle;
|
|
15828
16617
|
|
|
@@ -15852,7 +16641,7 @@ declare namespace __esri {
|
|
|
15852
16641
|
OperationalLayerProperties,
|
|
15853
16642
|
FeatureLayerBaseProperties {
|
|
15854
16643
|
/**
|
|
15855
|
-
*
|
|
16644
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15856
16645
|
*
|
|
15857
16646
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
|
|
15858
16647
|
*/
|
|
@@ -16852,7 +17641,7 @@ declare namespace __esri {
|
|
|
16852
17641
|
constructor(properties?: GeoJSONLayerProperties);
|
|
16853
17642
|
|
|
16854
17643
|
/**
|
|
16855
|
-
*
|
|
17644
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
16856
17645
|
*
|
|
16857
17646
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
|
|
16858
17647
|
*/
|
|
@@ -17163,7 +17952,7 @@ declare namespace __esri {
|
|
|
17163
17952
|
FeatureReductionLayerProperties,
|
|
17164
17953
|
OperationalLayerProperties {
|
|
17165
17954
|
/**
|
|
17166
|
-
*
|
|
17955
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
17167
17956
|
*
|
|
17168
17957
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
|
|
17169
17958
|
*/
|
|
@@ -19200,7 +19989,7 @@ declare namespace __esri {
|
|
|
19200
19989
|
|
|
19201
19990
|
export class KnowledgeGraphSublayer {
|
|
19202
19991
|
/**
|
|
19203
|
-
* A KnowledgeGraphSublayer is a sublayer of a [KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html
|
|
19992
|
+
* A KnowledgeGraphSublayer is a sublayer of a [KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html) or [LinkChartLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html) that contains all instances of a named type.
|
|
19204
19993
|
*
|
|
19205
19994
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html)
|
|
19206
19995
|
*/
|
|
@@ -19243,6 +20032,12 @@ declare namespace __esri {
|
|
|
19243
20032
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#fields)
|
|
19244
20033
|
*/
|
|
19245
20034
|
fields: Field[];
|
|
20035
|
+
/**
|
|
20036
|
+
* A convenient property that can be used to make case-insensitive lookups for a field by name.
|
|
20037
|
+
*
|
|
20038
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#fieldsIndex)
|
|
20039
|
+
*/
|
|
20040
|
+
readonly fieldsIndex: FieldsIndex;
|
|
19246
20041
|
/**
|
|
19247
20042
|
* The name of the geometry field for the sublayer.
|
|
19248
20043
|
*
|
|
@@ -20651,6 +21446,116 @@ declare namespace __esri {
|
|
|
20651
21446
|
targets?: CollectionProperties<LineOfSightAnalysisTargetProperties>;
|
|
20652
21447
|
}
|
|
20653
21448
|
|
|
21449
|
+
export class LinkChartLayer extends Layer {
|
|
21450
|
+
/**
|
|
21451
|
+
* A LinkChartLayer is a composite layer that can be created from a [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
|
|
21452
|
+
*
|
|
21453
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html)
|
|
21454
|
+
*/
|
|
21455
|
+
|
|
21456
|
+
constructor(properties?: LinkChartLayerProperties);
|
|
21457
|
+
|
|
21458
|
+
/**
|
|
21459
|
+
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21460
|
+
*
|
|
21461
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition)
|
|
21462
|
+
*/
|
|
21463
|
+
inclusionModeDefinition: InclusionModeDefinition;
|
|
21464
|
+
/**
|
|
21465
|
+
* A collection of operational [sublayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html).
|
|
21466
|
+
*
|
|
21467
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#layers)
|
|
21468
|
+
*/
|
|
21469
|
+
readonly layers: Collection<KnowledgeGraphSublayer>;
|
|
21470
|
+
/**
|
|
21471
|
+
* All non-spatial [entity type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-EntityType.html) and [relationship type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-RelationshipType.html) [sublayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html).
|
|
21472
|
+
*
|
|
21473
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#tables)
|
|
21474
|
+
*/
|
|
21475
|
+
readonly tables: Collection<KnowledgeGraphSublayer>;
|
|
21476
|
+
/**
|
|
21477
|
+
* The url of the [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
|
|
21478
|
+
*
|
|
21479
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#url)
|
|
21480
|
+
*/
|
|
21481
|
+
url: string;
|
|
21482
|
+
}
|
|
21483
|
+
|
|
21484
|
+
interface LinkChartLayerProperties extends LayerProperties {
|
|
21485
|
+
/**
|
|
21486
|
+
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21487
|
+
*
|
|
21488
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition)
|
|
21489
|
+
*/
|
|
21490
|
+
inclusionModeDefinition?: InclusionModeDefinition;
|
|
21491
|
+
/**
|
|
21492
|
+
* The url of the [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
|
|
21493
|
+
*
|
|
21494
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#url)
|
|
21495
|
+
*/
|
|
21496
|
+
url?: string;
|
|
21497
|
+
}
|
|
21498
|
+
|
|
21499
|
+
/**
|
|
21500
|
+
* Defines the sublayer structure and the named types that will be in the LinkChartLayer.
|
|
21501
|
+
*
|
|
21502
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
|
|
21503
|
+
*/
|
|
21504
|
+
export interface LinkChartLayerInclusionModeDefinition {
|
|
21505
|
+
/**
|
|
21506
|
+
* Specifies whether to create sublayers for each [named type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) regardless of whether or not they are included in the `namedTypeDefinition`.
|
|
21507
|
+
*
|
|
21508
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
|
|
21509
|
+
*/
|
|
21510
|
+
generateAllSublayers: boolean;
|
|
21511
|
+
/**
|
|
21512
|
+
* A map of named types and the specific instances of those types to include in the layer.
|
|
21513
|
+
*
|
|
21514
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
|
|
21515
|
+
*/
|
|
21516
|
+
namedTypeDefinitions: globalThis.Map<string, LinkChartLayerLayerInclusionDefinition>;
|
|
21517
|
+
}
|
|
21518
|
+
|
|
21519
|
+
/**
|
|
21520
|
+
* Defines the contents of each specified named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition) and whether all instance of the named type will be used for a specified subset.
|
|
21521
|
+
*
|
|
21522
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
|
|
21523
|
+
*/
|
|
21524
|
+
export interface LinkChartLayerLayerInclusionDefinition {
|
|
21525
|
+
/**
|
|
21526
|
+
* If `true`, all of the instances of the named type will be included regardless of if there is a defined list of members.
|
|
21527
|
+
*
|
|
21528
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
|
|
21529
|
+
*/
|
|
21530
|
+
useAllData: boolean;
|
|
21531
|
+
/**
|
|
21532
|
+
* A map of the specific members of the named type to be included.
|
|
21533
|
+
*
|
|
21534
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
|
|
21535
|
+
*/
|
|
21536
|
+
members?: globalThis.Map<string, LinkChartLayerLayerInclusionMemberDefinition>;
|
|
21537
|
+
}
|
|
21538
|
+
|
|
21539
|
+
/**
|
|
21540
|
+
* Defines the list of `members` for a named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition).
|
|
21541
|
+
*
|
|
21542
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
|
|
21543
|
+
*/
|
|
21544
|
+
export interface LinkChartLayerLayerInclusionMemberDefinition {
|
|
21545
|
+
/**
|
|
21546
|
+
* The unique identifier of the specific instance of the named type to be included in the layer.
|
|
21547
|
+
*
|
|
21548
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
|
|
21549
|
+
*/
|
|
21550
|
+
id: string;
|
|
21551
|
+
/**
|
|
21552
|
+
* The exact point location of the entity on the LinkChart.
|
|
21553
|
+
*
|
|
21554
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
|
|
21555
|
+
*/
|
|
21556
|
+
linkChartLocation?: Geometry;
|
|
21557
|
+
}
|
|
21558
|
+
|
|
20654
21559
|
export interface MapImageLayer
|
|
20655
21560
|
extends Layer,
|
|
20656
21561
|
SublayersOwner,
|
|
@@ -20712,7 +21617,7 @@ declare namespace __esri {
|
|
|
20712
21617
|
*
|
|
20713
21618
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html#imageFormat)
|
|
20714
21619
|
*/
|
|
20715
|
-
imageFormat: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "
|
|
21620
|
+
imageFormat: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "pngjpg";
|
|
20716
21621
|
/**
|
|
20717
21622
|
* Indicates the maximum height of the image exported by the service.
|
|
20718
21623
|
*
|
|
@@ -20843,7 +21748,7 @@ declare namespace __esri {
|
|
|
20843
21748
|
*
|
|
20844
21749
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html#imageFormat)
|
|
20845
21750
|
*/
|
|
20846
|
-
imageFormat?: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "
|
|
21751
|
+
imageFormat?: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "pngjpg";
|
|
20847
21752
|
/**
|
|
20848
21753
|
* Indicates the maximum height of the image exported by the service.
|
|
20849
21754
|
*
|
|
@@ -24632,6 +25537,277 @@ declare namespace __esri {
|
|
|
24632
25537
|
dataChanged: boolean;
|
|
24633
25538
|
}
|
|
24634
25539
|
|
|
25540
|
+
/**
|
|
25541
|
+
* Provides the utility function to convert image coordinates to geographic coordinates.
|
|
25542
|
+
*
|
|
25543
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html)
|
|
25544
|
+
*/
|
|
25545
|
+
interface imageToWorld {
|
|
25546
|
+
/**
|
|
25547
|
+
* Transforms image coordinates in pixels to a point or an array of points specifying the corresponding geographic world coordinates.
|
|
25548
|
+
*
|
|
25549
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#imageToWorld)
|
|
25550
|
+
*/
|
|
25551
|
+
imageToWorld(
|
|
25552
|
+
pixelOrPixels: imageToWorldPixelLocation | imageToWorldPixelLocation[],
|
|
25553
|
+
properties: ImageToWorldProperties,
|
|
25554
|
+
updateElevationProps: UpdateElevationProps
|
|
25555
|
+
): Promise<Point | Point[]>;
|
|
25556
|
+
}
|
|
25557
|
+
|
|
25558
|
+
export const imageToWorld: imageToWorld;
|
|
25559
|
+
|
|
25560
|
+
/**
|
|
25561
|
+
* Represents the properties required for transforming image coordinates to world coordinates.
|
|
25562
|
+
*
|
|
25563
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25564
|
+
*/
|
|
25565
|
+
export interface ImageToWorldProperties {
|
|
25566
|
+
/**
|
|
25567
|
+
* The height of the ground at the camera’s location (specified by cameraLocation), determined by subtracting the camera’s height from the absolute z-coordinate of the location.
|
|
25568
|
+
*
|
|
25569
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25570
|
+
*/
|
|
25571
|
+
averageElevation: number;
|
|
25572
|
+
/**
|
|
25573
|
+
* The camera orientation of the second rotation around the x-axis of the camera.
|
|
25574
|
+
*
|
|
25575
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25576
|
+
*/
|
|
25577
|
+
cameraPitch: number;
|
|
25578
|
+
/**
|
|
25579
|
+
* The camera orientation of the final rotation around the z-axis of the camera in the positive clockwise direction.
|
|
25580
|
+
*
|
|
25581
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25582
|
+
*/
|
|
25583
|
+
cameraRoll: number;
|
|
25584
|
+
/**
|
|
25585
|
+
* The farthest usable distance of the imagery from the camera position.
|
|
25586
|
+
*
|
|
25587
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25588
|
+
*/
|
|
25589
|
+
farDistance: number;
|
|
25590
|
+
/**
|
|
25591
|
+
* A fixed length array of 6 numbers corresponding to the camera affine values A0, A1, A2, B0, B1, B2.
|
|
25592
|
+
*
|
|
25593
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25594
|
+
*/
|
|
25595
|
+
affineTransformations: number[];
|
|
25596
|
+
/**
|
|
25597
|
+
* A Point representing the camera location in world coordinates where the image was captured.
|
|
25598
|
+
*
|
|
25599
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25600
|
+
*/
|
|
25601
|
+
cameraLocation: any;
|
|
25602
|
+
/**
|
|
25603
|
+
* The focal length of the camera lens.
|
|
25604
|
+
*
|
|
25605
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25606
|
+
*/
|
|
25607
|
+
focalLength: number;
|
|
25608
|
+
/**
|
|
25609
|
+
* A fixed length array of 2 numbers specifying the x-coordinate and y-coordinate of the principal point of the autocollimation.
|
|
25610
|
+
*
|
|
25611
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25612
|
+
*/
|
|
25613
|
+
principalOffsetPoint?: number[];
|
|
25614
|
+
/**
|
|
25615
|
+
* The radial distortion is specified as an array of three numbers, indicating [K1,K2,K3] coefficient values.
|
|
25616
|
+
*
|
|
25617
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25618
|
+
*/
|
|
25619
|
+
radialDistortionCoefficients?: number[];
|
|
25620
|
+
/**
|
|
25621
|
+
* The row-wise sorted rotation matrix that defines the transformation from image space to map space, specified as an array of nine floating-point values.
|
|
25622
|
+
*
|
|
25623
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25624
|
+
*/
|
|
25625
|
+
rotationMatrix: number[];
|
|
25626
|
+
/**
|
|
25627
|
+
* The tangential distortion is specified as an array of three numbers, indicating [P1,P2] coefficient values.
|
|
25628
|
+
*
|
|
25629
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25630
|
+
*/
|
|
25631
|
+
tangentialDistortionCoefficients?: number[];
|
|
25632
|
+
/**
|
|
25633
|
+
* The camera’s field-of-view in a horizontal direction.
|
|
25634
|
+
*
|
|
25635
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25636
|
+
*/
|
|
25637
|
+
horizontalFieldOfView: number;
|
|
25638
|
+
/**
|
|
25639
|
+
* The camera’s field-of-view in the vertical direction.
|
|
25640
|
+
*
|
|
25641
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25642
|
+
*/
|
|
25643
|
+
verticalFieldOfView: number;
|
|
25644
|
+
/**
|
|
25645
|
+
* Height of the image used for world to image transformation, in pixels.
|
|
25646
|
+
*
|
|
25647
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25648
|
+
*/
|
|
25649
|
+
imageHeight: number;
|
|
25650
|
+
/**
|
|
25651
|
+
* image used for world to image transformation, in pixels.
|
|
25652
|
+
*
|
|
25653
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
|
|
25654
|
+
*/
|
|
25655
|
+
imageWidth: number;
|
|
25656
|
+
}
|
|
25657
|
+
|
|
25658
|
+
/**
|
|
25659
|
+
* Represents the pixel location in image space, where (0, 0) corresponds to the center of the upper left pixel.
|
|
25660
|
+
*
|
|
25661
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
|
|
25662
|
+
*/
|
|
25663
|
+
export interface imageToWorldPixelLocation {
|
|
25664
|
+
/**
|
|
25665
|
+
* The row the pixel location.
|
|
25666
|
+
*
|
|
25667
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
|
|
25668
|
+
*/
|
|
25669
|
+
x: number;
|
|
25670
|
+
/**
|
|
25671
|
+
* The column the pixel location.
|
|
25672
|
+
*
|
|
25673
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
|
|
25674
|
+
*/
|
|
25675
|
+
y: number;
|
|
25676
|
+
}
|
|
25677
|
+
|
|
25678
|
+
/**
|
|
25679
|
+
* Represents the properties required for updating the elevation of the output point.
|
|
25680
|
+
*
|
|
25681
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
|
|
25682
|
+
*/
|
|
25683
|
+
export interface UpdateElevationProps {
|
|
25684
|
+
/**
|
|
25685
|
+
* A cache of elevation values created from an elevation service used for synchronously querying elevation information for geometries.
|
|
25686
|
+
*
|
|
25687
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
|
|
25688
|
+
*/
|
|
25689
|
+
elevationSampler: any;
|
|
25690
|
+
/**
|
|
25691
|
+
* The constant ground elevation value.
|
|
25692
|
+
*
|
|
25693
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
|
|
25694
|
+
*/
|
|
25695
|
+
constantElevation: number;
|
|
25696
|
+
}
|
|
25697
|
+
|
|
25698
|
+
/**
|
|
25699
|
+
* Provides the utility function to convert geographic coordinates to image coordinates.
|
|
25700
|
+
*
|
|
25701
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html)
|
|
25702
|
+
*/
|
|
25703
|
+
interface worldToImage {
|
|
25704
|
+
/**
|
|
25705
|
+
* Transforms a point or an array of points from geographic world coordinates to image space coordinates.
|
|
25706
|
+
*
|
|
25707
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#worldToImage)
|
|
25708
|
+
*/
|
|
25709
|
+
worldToImage(
|
|
25710
|
+
pointOrPoints: Point | Point[] | Collection<Point>,
|
|
25711
|
+
properties: WorldToImageProperties
|
|
25712
|
+
): PixelLocation | PixelLocation[];
|
|
25713
|
+
}
|
|
25714
|
+
|
|
25715
|
+
export const worldToImage: worldToImage;
|
|
25716
|
+
|
|
25717
|
+
/**
|
|
25718
|
+
* Represents the pixel location in image space, where (0, 0) corresponds to the center of the upper left pixel.
|
|
25719
|
+
*
|
|
25720
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
|
|
25721
|
+
*/
|
|
25722
|
+
export interface PixelLocation {
|
|
25723
|
+
/**
|
|
25724
|
+
* The row the pixel location.
|
|
25725
|
+
*
|
|
25726
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
|
|
25727
|
+
*/
|
|
25728
|
+
x: number;
|
|
25729
|
+
/**
|
|
25730
|
+
* The column the pixel location.
|
|
25731
|
+
*
|
|
25732
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
|
|
25733
|
+
*/
|
|
25734
|
+
y: number;
|
|
25735
|
+
}
|
|
25736
|
+
|
|
25737
|
+
/**
|
|
25738
|
+
* Represents the properties required for transforming world coordinates to image coordinates.
|
|
25739
|
+
*
|
|
25740
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25741
|
+
*/
|
|
25742
|
+
export interface WorldToImageProperties {
|
|
25743
|
+
/**
|
|
25744
|
+
* A fixed length array of 6 numbers corresponding to the camera affine values A0, A1, A2, B0, B1, B2.
|
|
25745
|
+
*
|
|
25746
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25747
|
+
*/
|
|
25748
|
+
affineTransformations: number[];
|
|
25749
|
+
/**
|
|
25750
|
+
* A Point representing the camera location in world coordinates where the image was captured.
|
|
25751
|
+
*
|
|
25752
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25753
|
+
*/
|
|
25754
|
+
cameraLocation: any;
|
|
25755
|
+
/**
|
|
25756
|
+
* The focal length of the camera lens.
|
|
25757
|
+
*
|
|
25758
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25759
|
+
*/
|
|
25760
|
+
focalLength: number;
|
|
25761
|
+
/**
|
|
25762
|
+
* A fixed length array of 2 numbers specifying the x-coordinate and y-coordinate of the principal point of the autocollimation.
|
|
25763
|
+
*
|
|
25764
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25765
|
+
*/
|
|
25766
|
+
principalOffsetPoint?: number[];
|
|
25767
|
+
/**
|
|
25768
|
+
* The radial distortion is specified as an array of three numbers, indicating [K1,K2,K3] coefficient values.
|
|
25769
|
+
*
|
|
25770
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25771
|
+
*/
|
|
25772
|
+
radialDistortionCoefficients?: number[];
|
|
25773
|
+
/**
|
|
25774
|
+
* The row-wise sorted rotation matrix that defines the transformation from image space to map space, specified as an array of nine floating-point values.
|
|
25775
|
+
*
|
|
25776
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25777
|
+
*/
|
|
25778
|
+
rotationMatrix: number[];
|
|
25779
|
+
/**
|
|
25780
|
+
* The tangential distortion is specified as an array of three numbers, indicating [P1,P2] coefficient values.
|
|
25781
|
+
*
|
|
25782
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25783
|
+
*/
|
|
25784
|
+
tangentialDistortionCoefficients?: number[];
|
|
25785
|
+
/**
|
|
25786
|
+
* The camera’s field-of-view in a horizontal direction.
|
|
25787
|
+
*
|
|
25788
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25789
|
+
*/
|
|
25790
|
+
horizontalFieldOfView: number;
|
|
25791
|
+
/**
|
|
25792
|
+
* The camera’s field-of-view in the vertical direction.
|
|
25793
|
+
*
|
|
25794
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25795
|
+
*/
|
|
25796
|
+
verticalFieldOfView: number;
|
|
25797
|
+
/**
|
|
25798
|
+
* Height of the image used for world to image transformation, in pixels.
|
|
25799
|
+
*
|
|
25800
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25801
|
+
*/
|
|
25802
|
+
imageHeight: number;
|
|
25803
|
+
/**
|
|
25804
|
+
* image used for world to image transformation, in pixels.
|
|
25805
|
+
*
|
|
25806
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
|
|
25807
|
+
*/
|
|
25808
|
+
imageWidth: number;
|
|
25809
|
+
}
|
|
25810
|
+
|
|
24635
25811
|
export interface OrientedImageryLayer
|
|
24636
25812
|
extends Layer,
|
|
24637
25813
|
BlendLayer,
|
|
@@ -24957,6 +26133,21 @@ declare namespace __esri {
|
|
|
24957
26133
|
query?: Query | QueryProperties,
|
|
24958
26134
|
options?: OrientedImageryLayerQueryObjectIdsOptions
|
|
24959
26135
|
): Promise<number[]>;
|
|
26136
|
+
/**
|
|
26137
|
+
* Saves the layer to its existing portal item in the [Portal](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html) authenticated within the user's current session.
|
|
26138
|
+
*
|
|
26139
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
|
|
26140
|
+
*/
|
|
26141
|
+
save(options?: OrientedImageryLayerSaveOptions): Promise<PortalItem>;
|
|
26142
|
+
/**
|
|
26143
|
+
* Saves the layer to a new portal item in the [Portal](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html) authenticated within the user's current session.
|
|
26144
|
+
*
|
|
26145
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
|
|
26146
|
+
*/
|
|
26147
|
+
saveAs(
|
|
26148
|
+
portalItem: PortalItem | PortalItemProperties,
|
|
26149
|
+
options?: OrientedImageryLayerSaveAsOptions
|
|
26150
|
+
): Promise<PortalItem>;
|
|
24960
26151
|
|
|
24961
26152
|
static fromJSON(json: any): OrientedImageryLayer;
|
|
24962
26153
|
}
|
|
@@ -25340,6 +26531,48 @@ declare namespace __esri {
|
|
|
25340
26531
|
signal?: AbortSignal;
|
|
25341
26532
|
}
|
|
25342
26533
|
|
|
26534
|
+
export interface OrientedImageryLayerSaveAsOptions {
|
|
26535
|
+
/**
|
|
26536
|
+
* The portal folder where the layer's portal item will be saved.
|
|
26537
|
+
*
|
|
26538
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
|
|
26539
|
+
*/
|
|
26540
|
+
folder?: PortalFolder;
|
|
26541
|
+
/**
|
|
26542
|
+
* Options for validating the save operation.
|
|
26543
|
+
*
|
|
26544
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
|
|
26545
|
+
*/
|
|
26546
|
+
validationOptions?: OrientedImageryLayerSaveAsOptionsValidationOptions;
|
|
26547
|
+
}
|
|
26548
|
+
|
|
26549
|
+
export interface OrientedImageryLayerSaveAsOptionsValidationOptions {
|
|
26550
|
+
/**
|
|
26551
|
+
* Indicates whether to ignore saving unsupported layers or layers with unsupported content, such as unsupported symbology.
|
|
26552
|
+
*
|
|
26553
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
|
|
26554
|
+
*/
|
|
26555
|
+
ignoreUnsupported?: boolean;
|
|
26556
|
+
}
|
|
26557
|
+
|
|
26558
|
+
export interface OrientedImageryLayerSaveOptions {
|
|
26559
|
+
/**
|
|
26560
|
+
* Options for validating the save operation.
|
|
26561
|
+
*
|
|
26562
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
|
|
26563
|
+
*/
|
|
26564
|
+
validationOptions?: OrientedImageryLayerSaveOptionsValidationOptions;
|
|
26565
|
+
}
|
|
26566
|
+
|
|
26567
|
+
export interface OrientedImageryLayerSaveOptionsValidationOptions {
|
|
26568
|
+
/**
|
|
26569
|
+
* Indicates whether to ignore saving unsupported layers or layers with unsupported content, such as unsupported symbology.
|
|
26570
|
+
*
|
|
26571
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
|
|
26572
|
+
*/
|
|
26573
|
+
ignoreUnsupported?: boolean;
|
|
26574
|
+
}
|
|
26575
|
+
|
|
25343
26576
|
export class PointCloudBitfieldFilter extends PointCloudFilter {
|
|
25344
26577
|
/**
|
|
25345
26578
|
* Points can be classified using flags that indicate special characteristics associated with the point like the direction of the flight or the method used to create the point.
|
|
@@ -30235,7 +31468,7 @@ declare namespace __esri {
|
|
|
30235
31468
|
| "center-end"
|
|
30236
31469
|
| "always-horizontal";
|
|
30237
31470
|
/**
|
|
30238
|
-
* Specifies the orientation of the label position of a polyline label.
|
|
31471
|
+
* Specifies the orientation of the label position of a single line polyline label.
|
|
30239
31472
|
*
|
|
30240
31473
|
* @default "curved"
|
|
30241
31474
|
*
|
|
@@ -30372,7 +31605,7 @@ declare namespace __esri {
|
|
|
30372
31605
|
| "center-end"
|
|
30373
31606
|
| "always-horizontal";
|
|
30374
31607
|
/**
|
|
30375
|
-
* Specifies the orientation of the label position of a polyline label.
|
|
31608
|
+
* Specifies the orientation of the label position of a single line polyline label.
|
|
30376
31609
|
*
|
|
30377
31610
|
* @default "curved"
|
|
30378
31611
|
*
|
|
@@ -36299,12 +37532,24 @@ declare namespace __esri {
|
|
|
36299
37532
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
|
|
36300
37533
|
*/
|
|
36301
37534
|
values?: number[] | number[][];
|
|
37535
|
+
/**
|
|
37536
|
+
* Indicates if each dimension value is represented using a range.
|
|
37537
|
+
*
|
|
37538
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
|
|
37539
|
+
*/
|
|
37540
|
+
hasRanges?: boolean;
|
|
36302
37541
|
/**
|
|
36303
37542
|
* Indicates if the dimension is recorded at regular intervals.
|
|
36304
37543
|
*
|
|
36305
37544
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
|
|
36306
37545
|
*/
|
|
36307
37546
|
hasRegularIntervals?: boolean;
|
|
37547
|
+
/**
|
|
37548
|
+
* Indicates if the dimension is recurring, e.g.
|
|
37549
|
+
*
|
|
37550
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
|
|
37551
|
+
*/
|
|
37552
|
+
recurring?: boolean;
|
|
36308
37553
|
/**
|
|
36309
37554
|
* Dimension interval.
|
|
36310
37555
|
*
|
|
@@ -37945,7 +39190,7 @@ declare namespace __esri {
|
|
|
37945
39190
|
constructor(properties?: SubtypeSublayerProperties);
|
|
37946
39191
|
|
|
37947
39192
|
/**
|
|
37948
|
-
*
|
|
39193
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
37949
39194
|
*
|
|
37950
39195
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
|
|
37951
39196
|
*/
|
|
@@ -38243,7 +39488,7 @@ declare namespace __esri {
|
|
|
38243
39488
|
|
|
38244
39489
|
interface SubtypeSublayerProperties extends LoadableProperties {
|
|
38245
39490
|
/**
|
|
38246
|
-
*
|
|
39491
|
+
* This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
38247
39492
|
*
|
|
38248
39493
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
|
|
38249
39494
|
*/
|
|
@@ -40825,7 +42070,7 @@ declare namespace __esri {
|
|
|
40825
42070
|
*
|
|
40826
42071
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#videoLayersInfo)
|
|
40827
42072
|
*/
|
|
40828
|
-
readonly videoLayersInfo:
|
|
42073
|
+
readonly videoLayersInfo: VideoServiceLayerInfo[];
|
|
40829
42074
|
/**
|
|
40830
42075
|
* The time extent of the video.
|
|
40831
42076
|
*
|
|
@@ -41050,6 +42295,44 @@ declare namespace __esri {
|
|
|
41050
42295
|
y: number;
|
|
41051
42296
|
}
|
|
41052
42297
|
|
|
42298
|
+
/**
|
|
42299
|
+
* The **VideoServiceLayerInfo** defines layer information for video layers published within the same video service.
|
|
42300
|
+
*
|
|
42301
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
|
|
42302
|
+
*/
|
|
42303
|
+
export interface VideoServiceLayerInfo {
|
|
42304
|
+
/**
|
|
42305
|
+
* The layer id of the video layer.
|
|
42306
|
+
*
|
|
42307
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
|
|
42308
|
+
*/
|
|
42309
|
+
layerId: number;
|
|
42310
|
+
/**
|
|
42311
|
+
* The URL to the poster image for the video layer.
|
|
42312
|
+
*
|
|
42313
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
|
|
42314
|
+
*/
|
|
42315
|
+
posterUrl: string;
|
|
42316
|
+
/**
|
|
42317
|
+
* The source type of the video layer.
|
|
42318
|
+
*
|
|
42319
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
|
|
42320
|
+
*/
|
|
42321
|
+
sourceType: "ondemand" | "livestream";
|
|
42322
|
+
/**
|
|
42323
|
+
* The title of the video layer.
|
|
42324
|
+
*
|
|
42325
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
|
|
42326
|
+
*/
|
|
42327
|
+
title: string;
|
|
42328
|
+
/**
|
|
42329
|
+
* The layer type.
|
|
42330
|
+
*
|
|
42331
|
+
* [Read more...](global.html#type)
|
|
42332
|
+
*/
|
|
42333
|
+
type: "Video Layer";
|
|
42334
|
+
}
|
|
42335
|
+
|
|
41053
42336
|
export interface ViewshedLayer extends Layer, OperationalLayer {}
|
|
41054
42337
|
|
|
41055
42338
|
export class ViewshedLayer {
|
|
@@ -41068,7 +42351,7 @@ declare namespace __esri {
|
|
|
41068
42351
|
*/
|
|
41069
42352
|
readonly fullExtent: Extent;
|
|
41070
42353
|
/**
|
|
41071
|
-
* The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer.
|
|
42354
|
+
* The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer that stores the viewsheds.
|
|
41072
42355
|
*
|
|
41073
42356
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ViewshedLayer.html#source)
|
|
41074
42357
|
*/
|
|
@@ -41087,7 +42370,7 @@ declare namespace __esri {
|
|
|
41087
42370
|
|
|
41088
42371
|
interface ViewshedLayerProperties extends LayerProperties, OperationalLayerProperties {
|
|
41089
42372
|
/**
|
|
41090
|
-
* The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer.
|
|
42373
|
+
* The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer that stores the viewsheds.
|
|
41091
42374
|
*
|
|
41092
42375
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ViewshedLayer.html#source)
|
|
41093
42376
|
*/
|
|
@@ -41731,7 +43014,7 @@ declare namespace __esri {
|
|
|
41731
43014
|
|
|
41732
43015
|
export class VoxelLayer {
|
|
41733
43016
|
/**
|
|
41734
|
-
* A voxel layer
|
|
43017
|
+
* A voxel layer represents multidimensional volumetric data.
|
|
41735
43018
|
*
|
|
41736
43019
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VoxelLayer.html)
|
|
41737
43020
|
*/
|
|
@@ -48149,7 +49432,7 @@ declare namespace __esri {
|
|
|
48149
49432
|
*/
|
|
48150
49433
|
hasClassificationSchema: boolean;
|
|
48151
49434
|
/**
|
|
48152
|
-
*
|
|
49435
|
+
* This class contains properties to obtain information for various web services available on the portal.
|
|
48153
49436
|
*
|
|
48154
49437
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#helperServices)
|
|
48155
49438
|
*/
|
|
@@ -48344,6 +49627,12 @@ declare namespace __esri {
|
|
|
48344
49627
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#use3dBasemaps)
|
|
48345
49628
|
*/
|
|
48346
49629
|
use3dBasemaps: boolean;
|
|
49630
|
+
/**
|
|
49631
|
+
* When `false`, The default 3d basemap is not used in the SceneViewer.
|
|
49632
|
+
*
|
|
49633
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#useDefault3dBasemap)
|
|
49634
|
+
*/
|
|
49635
|
+
useDefault3dBasemap: boolean;
|
|
48347
49636
|
/**
|
|
48348
49637
|
* Information representing a registered user of the portal.
|
|
48349
49638
|
*
|
|
@@ -48673,7 +49962,7 @@ declare namespace __esri {
|
|
|
48673
49962
|
*/
|
|
48674
49963
|
hasClassificationSchema?: boolean;
|
|
48675
49964
|
/**
|
|
48676
|
-
*
|
|
49965
|
+
* This class contains properties to obtain information for various web services available on the portal.
|
|
48677
49966
|
*
|
|
48678
49967
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#helperServices)
|
|
48679
49968
|
*/
|
|
@@ -48842,6 +50131,12 @@ declare namespace __esri {
|
|
|
48842
50131
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#use3dBasemaps)
|
|
48843
50132
|
*/
|
|
48844
50133
|
use3dBasemaps?: boolean;
|
|
50134
|
+
/**
|
|
50135
|
+
* When `false`, The default 3d basemap is not used in the SceneViewer.
|
|
50136
|
+
*
|
|
50137
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#useDefault3dBasemap)
|
|
50138
|
+
*/
|
|
50139
|
+
useDefault3dBasemap?: boolean;
|
|
48845
50140
|
/**
|
|
48846
50141
|
* Information representing a registered user of the portal.
|
|
48847
50142
|
*
|
|
@@ -77569,6 +78864,55 @@ declare namespace __esri {
|
|
|
77569
78864
|
isGrid?: boolean;
|
|
77570
78865
|
}
|
|
77571
78866
|
|
|
78867
|
+
/**
|
|
78868
|
+
* This module provides a function for regenerating renderers based on the current state of the layer and view.
|
|
78869
|
+
*
|
|
78870
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html)
|
|
78871
|
+
*/
|
|
78872
|
+
interface rendererUtils {
|
|
78873
|
+
/**
|
|
78874
|
+
* Regenerates the renderer for a layer based on the current state of the layer and view.
|
|
78875
|
+
*
|
|
78876
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
|
|
78877
|
+
*/
|
|
78878
|
+
regenerateRenderer(params: rendererUtilsRegenerateRendererParams): Promise<Renderer>;
|
|
78879
|
+
}
|
|
78880
|
+
|
|
78881
|
+
export const rendererUtils: rendererUtils;
|
|
78882
|
+
|
|
78883
|
+
export interface rendererUtilsRegenerateRendererParams {
|
|
78884
|
+
/**
|
|
78885
|
+
* The layer for which to regenerate the renderer.
|
|
78886
|
+
*
|
|
78887
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
|
|
78888
|
+
*/
|
|
78889
|
+
layer: FeatureLayer;
|
|
78890
|
+
/**
|
|
78891
|
+
* The view in which the layer is rendered.
|
|
78892
|
+
*
|
|
78893
|
+
* [Read more...](global.html)
|
|
78894
|
+
*/
|
|
78895
|
+
view: MapView;
|
|
78896
|
+
/**
|
|
78897
|
+
* The renderer to update.
|
|
78898
|
+
*
|
|
78899
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
|
|
78900
|
+
*/
|
|
78901
|
+
renderer?: Renderer;
|
|
78902
|
+
/**
|
|
78903
|
+
* Indicates whether to regenerate the binning renderer or the renderer set on the layer.
|
|
78904
|
+
*
|
|
78905
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
|
|
78906
|
+
*/
|
|
78907
|
+
forBinning?: boolean;
|
|
78908
|
+
/**
|
|
78909
|
+
* When defined, only features included in the filter are considered in the attribute and spatial statistics calculations when determining the final renderer.
|
|
78910
|
+
*
|
|
78911
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
|
|
78912
|
+
*/
|
|
78913
|
+
filter?: FeatureFilter;
|
|
78914
|
+
}
|
|
78915
|
+
|
|
77572
78916
|
/**
|
|
77573
78917
|
* This object contains helper methods for generating data-driven visualizations with unique types (or categories) based on a field value from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
|
|
77574
78918
|
*
|
|
@@ -90406,6 +91750,12 @@ declare namespace __esri {
|
|
|
90406
91750
|
export interface AttributeTableTemplate extends Accessor, JSONSupport {}
|
|
90407
91751
|
|
|
90408
91752
|
export class AttributeTableTemplate {
|
|
91753
|
+
/**
|
|
91754
|
+
* An `AttributeTableTemplate` manages the configuration of how the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html) widget displays its columns.
|
|
91755
|
+
*
|
|
91756
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html)
|
|
91757
|
+
*/
|
|
91758
|
+
|
|
90409
91759
|
constructor(properties?: AttributeTableTemplateProperties);
|
|
90410
91760
|
|
|
90411
91761
|
/**
|
|
@@ -90478,7 +91828,7 @@ declare namespace __esri {
|
|
|
90478
91828
|
|
|
90479
91829
|
export class AttributeTableAttachmentElement extends AttributeTableElement {
|
|
90480
91830
|
/**
|
|
90481
|
-
* An `AttributeTableAttachmentElement` defines how attachments display within
|
|
91831
|
+
* An `AttributeTableAttachmentElement` defines how attachments display within a [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
90482
91832
|
*
|
|
90483
91833
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableAttachmentElement.html)
|
|
90484
91834
|
*/
|
|
@@ -90571,7 +91921,7 @@ declare namespace __esri {
|
|
|
90571
91921
|
|
|
90572
91922
|
export class AttributeTableFieldElement extends AttributeTableElement {
|
|
90573
91923
|
/**
|
|
90574
|
-
* An `AttributeTableFieldElement` table element defines how a layer's [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Field.html)
|
|
91924
|
+
* An `AttributeTableFieldElement` table element defines how a layer's [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Field.html) displays in the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
90575
91925
|
*
|
|
90576
91926
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableFieldElement.html)
|
|
90577
91927
|
*/
|
|
@@ -90612,7 +91962,7 @@ declare namespace __esri {
|
|
|
90612
91962
|
|
|
90613
91963
|
export class AttributeTableGroupElement extends AttributeTableElement {
|
|
90614
91964
|
/**
|
|
90615
|
-
* An `AttributeTableGroupElement` table element defines a container that holds a set of [table elements](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#elements)
|
|
91965
|
+
* An `AttributeTableGroupElement` table element defines a container that holds a set of [table elements](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#elements).
|
|
90616
91966
|
*
|
|
90617
91967
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableGroupElement.html)
|
|
90618
91968
|
*/
|
|
@@ -90656,6 +92006,12 @@ declare namespace __esri {
|
|
|
90656
92006
|
}
|
|
90657
92007
|
|
|
90658
92008
|
export class AttributeTableRelationshipElement extends AttributeTableElement {
|
|
92009
|
+
/**
|
|
92010
|
+
* An `AttributeTableRelationshipElement` element defines how a relationship between [layers](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#layers) and [tables](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables) participates and displays within a [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
92011
|
+
*
|
|
92012
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableRelationshipElement.html)
|
|
92013
|
+
*/
|
|
92014
|
+
|
|
90659
92015
|
constructor(properties?: AttributeTableRelationshipElementProperties);
|
|
90660
92016
|
|
|
90661
92017
|
/**
|
|
@@ -91044,7 +92400,7 @@ declare namespace __esri {
|
|
|
91044
92400
|
*
|
|
91045
92401
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#currentVersion)
|
|
91046
92402
|
*/
|
|
91047
|
-
currentVersion:
|
|
92403
|
+
currentVersion: versionManagementVersionManagementServiceVersionIdentifier | Date;
|
|
91048
92404
|
/**
|
|
91049
92405
|
* Contains information on the current version.
|
|
91050
92406
|
*
|
|
@@ -91056,7 +92412,7 @@ declare namespace __esri {
|
|
|
91056
92412
|
*
|
|
91057
92413
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#defaultVersionIdentifier)
|
|
91058
92414
|
*/
|
|
91059
|
-
readonly defaultVersionIdentifier:
|
|
92415
|
+
readonly defaultVersionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
|
|
91060
92416
|
/**
|
|
91061
92417
|
* The absolute URL of the REST endpoint for the feature service housing the version management service.
|
|
91062
92418
|
*
|
|
@@ -91136,7 +92492,7 @@ declare namespace __esri {
|
|
|
91136
92492
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#alterVersion)
|
|
91137
92493
|
*/
|
|
91138
92494
|
alterVersion(
|
|
91139
|
-
versionIdentifier:
|
|
92495
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
|
|
91140
92496
|
props: VersioningStateAlterVersionProps
|
|
91141
92497
|
): Promise<boolean>;
|
|
91142
92498
|
/**
|
|
@@ -91145,14 +92501,14 @@ declare namespace __esri {
|
|
|
91145
92501
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#changeVersion)
|
|
91146
92502
|
*/
|
|
91147
92503
|
changeVersion(
|
|
91148
|
-
toVersion: Date |
|
|
92504
|
+
toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
|
|
91149
92505
|
): Promise<globalThis.Map<VersionAdapter, ServiceResult>>;
|
|
91150
92506
|
/**
|
|
91151
92507
|
* Deletes a version given the following parameters.
|
|
91152
92508
|
*
|
|
91153
92509
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#deleteVersion)
|
|
91154
92510
|
*/
|
|
91155
|
-
deleteVersion(versionIdentifier:
|
|
92511
|
+
deleteVersion(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
|
|
91156
92512
|
/**
|
|
91157
92513
|
* Method used to get extended information about a version.
|
|
91158
92514
|
*
|
|
@@ -91446,7 +92802,7 @@ declare namespace __esri {
|
|
|
91446
92802
|
*
|
|
91447
92803
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#defaultVersionIdentifier)
|
|
91448
92804
|
*/
|
|
91449
|
-
defaultVersionIdentifier:
|
|
92805
|
+
defaultVersionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
|
|
91450
92806
|
/**
|
|
91451
92807
|
* Indicates whether the instance has loaded.
|
|
91452
92808
|
*
|
|
@@ -91490,7 +92846,7 @@ declare namespace __esri {
|
|
|
91490
92846
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#alterVersion)
|
|
91491
92847
|
*/
|
|
91492
92848
|
alterVersion(
|
|
91493
|
-
versionIdentifier:
|
|
92849
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
|
|
91494
92850
|
props: VersionManagementServiceAlterVersionProps
|
|
91495
92851
|
): Promise<boolean>;
|
|
91496
92852
|
/**
|
|
@@ -91498,13 +92854,13 @@ declare namespace __esri {
|
|
|
91498
92854
|
*
|
|
91499
92855
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#canRedo)
|
|
91500
92856
|
*/
|
|
91501
|
-
canRedo(versionIdentifier:
|
|
92857
|
+
canRedo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): boolean;
|
|
91502
92858
|
/**
|
|
91503
92859
|
* `canUndo` may be used to verify that an [undo](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#undo) operation is possible.
|
|
91504
92860
|
*
|
|
91505
92861
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#canUndo)
|
|
91506
92862
|
*/
|
|
91507
|
-
canUndo(versionIdentifier:
|
|
92863
|
+
canUndo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): boolean;
|
|
91508
92864
|
/**
|
|
91509
92865
|
* Method used to change a layer's version/moment or network's version/moment.
|
|
91510
92866
|
*
|
|
@@ -91512,8 +92868,8 @@ declare namespace __esri {
|
|
|
91512
92868
|
*/
|
|
91513
92869
|
changeVersion(
|
|
91514
92870
|
input: WebMap | Collection<FeatureLayer> | FeatureLayer[] | Network,
|
|
91515
|
-
fromVersion: Date |
|
|
91516
|
-
toVersion: Date |
|
|
92871
|
+
fromVersion: Date | versionManagementVersionManagementServiceVersionIdentifier,
|
|
92872
|
+
toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
|
|
91517
92873
|
): Promise<boolean>;
|
|
91518
92874
|
/**
|
|
91519
92875
|
* Method used to change a layer's version/moment or network's version/moment.
|
|
@@ -91522,8 +92878,8 @@ declare namespace __esri {
|
|
|
91522
92878
|
*/
|
|
91523
92879
|
changeVersionWithResult(
|
|
91524
92880
|
input: WebMap | Collection<VersionAdapter> | VersionManagementService[],
|
|
91525
|
-
fromVersion: Date |
|
|
91526
|
-
toVersion: Date |
|
|
92881
|
+
fromVersion: Date | versionManagementVersionManagementServiceVersionIdentifier,
|
|
92882
|
+
toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
|
|
91527
92883
|
): Promise<globalThis.Map<VersionAdapter, ServiceResult>>;
|
|
91528
92884
|
/**
|
|
91529
92885
|
* Creates a new version given the following parameters.
|
|
@@ -91538,32 +92894,32 @@ declare namespace __esri {
|
|
|
91538
92894
|
*
|
|
91539
92895
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#deleteVersion)
|
|
91540
92896
|
*/
|
|
91541
|
-
deleteVersion(versionIdentifier:
|
|
92897
|
+
deleteVersion(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
|
|
91542
92898
|
/**
|
|
91543
92899
|
* Returns the current client lock type on a given version.
|
|
91544
92900
|
*
|
|
91545
92901
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getLockType)
|
|
91546
92902
|
*/
|
|
91547
|
-
getLockType(versionIdentifier:
|
|
92903
|
+
getLockType(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): string;
|
|
91548
92904
|
/**
|
|
91549
92905
|
* This method will return the [versionIdentifier](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#versionIdentifier) given the guid of the version.
|
|
91550
92906
|
*
|
|
91551
92907
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionIdentifierFromGuid)
|
|
91552
92908
|
*/
|
|
91553
|
-
getVersionIdentifierFromGuid(guid: string):
|
|
92909
|
+
getVersionIdentifierFromGuid(guid: string): versionManagementVersionManagementServiceVersionIdentifier;
|
|
91554
92910
|
/**
|
|
91555
92911
|
* This method will return the [versionIdentifier](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#versionIdentifier) given the name of the version.
|
|
91556
92912
|
*
|
|
91557
92913
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionIdentifierFromName)
|
|
91558
92914
|
*/
|
|
91559
|
-
getVersionIdentifierFromName(name: string):
|
|
92915
|
+
getVersionIdentifierFromName(name: string): versionManagementVersionManagementServiceVersionIdentifier;
|
|
91560
92916
|
/**
|
|
91561
92917
|
* Method used to get extended information about a version.
|
|
91562
92918
|
*
|
|
91563
92919
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionInfoExtended)
|
|
91564
92920
|
*/
|
|
91565
92921
|
getVersionInfoExtended(
|
|
91566
|
-
versionIdentifier:
|
|
92922
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
|
|
91567
92923
|
): Promise<VersionManagementServiceVersionInfoExtendedJSON>;
|
|
91568
92924
|
/**
|
|
91569
92925
|
* Returns information about a version or versions.
|
|
@@ -91582,14 +92938,14 @@ declare namespace __esri {
|
|
|
91582
92938
|
*
|
|
91583
92939
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#post)
|
|
91584
92940
|
*/
|
|
91585
|
-
post(versionIdentifier:
|
|
92941
|
+
post(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<PostResult>;
|
|
91586
92942
|
/**
|
|
91587
92943
|
* Use the reconcile operation to reconcile a branch version with the default version.
|
|
91588
92944
|
*
|
|
91589
92945
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#reconcile)
|
|
91590
92946
|
*/
|
|
91591
92947
|
reconcile(
|
|
91592
|
-
versionIdentifier:
|
|
92948
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
|
|
91593
92949
|
props: VersionManagementServiceReconcileProps
|
|
91594
92950
|
): Promise<ReconcileResult>;
|
|
91595
92951
|
/**
|
|
@@ -91597,44 +92953,51 @@ declare namespace __esri {
|
|
|
91597
92953
|
*
|
|
91598
92954
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#redo)
|
|
91599
92955
|
*/
|
|
91600
|
-
redo(versionIdentifier:
|
|
92956
|
+
redo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): void;
|
|
91601
92957
|
/**
|
|
91602
92958
|
* Using the specified session ID an exclusive lock is obtained for the session on the version.
|
|
91603
92959
|
*
|
|
91604
92960
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startEditing)
|
|
91605
92961
|
*/
|
|
91606
|
-
startEditing(versionIdentifier:
|
|
92962
|
+
startEditing(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
|
|
91607
92963
|
/**
|
|
91608
92964
|
* Using the specified session ID an exclusive lock is obtained for the session on the version.
|
|
91609
92965
|
*
|
|
91610
92966
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startEditingWithResult)
|
|
91611
92967
|
*/
|
|
91612
|
-
startEditingWithResult(
|
|
92968
|
+
startEditingWithResult(
|
|
92969
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
|
|
92970
|
+
): Promise<ServiceResult>;
|
|
91613
92971
|
/**
|
|
91614
92972
|
* Using the specified client generated session ID, a shared lock is obtained for the session if the version is not already being edited by another user/session.
|
|
91615
92973
|
*
|
|
91616
92974
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startReading)
|
|
91617
92975
|
*/
|
|
91618
|
-
startReading(versionIdentifier:
|
|
92976
|
+
startReading(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
|
|
91619
92977
|
/**
|
|
91620
92978
|
* Using the specified client generated session ID, a shared lock is obtained for the session if the version is not already being edited by another user/session.
|
|
91621
92979
|
*
|
|
91622
92980
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startReadingWithResult)
|
|
91623
92981
|
*/
|
|
91624
|
-
startReadingWithResult(
|
|
92982
|
+
startReadingWithResult(
|
|
92983
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
|
|
92984
|
+
): Promise<ServiceResult>;
|
|
91625
92985
|
/**
|
|
91626
92986
|
* Using the specified session id, the exclusive lock for the version is downgraded to a shared lock.
|
|
91627
92987
|
*
|
|
91628
92988
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopEditing)
|
|
91629
92989
|
*/
|
|
91630
|
-
stopEditing(
|
|
92990
|
+
stopEditing(
|
|
92991
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
|
|
92992
|
+
saveEdits: boolean
|
|
92993
|
+
): Promise<boolean>;
|
|
91631
92994
|
/**
|
|
91632
92995
|
* Using the specified session id, the exclusive lock for the version is downgraded to a shared lock.
|
|
91633
92996
|
*
|
|
91634
92997
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopEditingWithResult)
|
|
91635
92998
|
*/
|
|
91636
92999
|
stopEditingWithResult(
|
|
91637
|
-
versionIdentifier:
|
|
93000
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
|
|
91638
93001
|
saveEdits: boolean
|
|
91639
93002
|
): Promise<ServiceResult>;
|
|
91640
93003
|
/**
|
|
@@ -91642,19 +93005,21 @@ declare namespace __esri {
|
|
|
91642
93005
|
*
|
|
91643
93006
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopReading)
|
|
91644
93007
|
*/
|
|
91645
|
-
stopReading(versionIdentifier:
|
|
93008
|
+
stopReading(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
|
|
91646
93009
|
/**
|
|
91647
93010
|
* The shared lock is released on the version.
|
|
91648
93011
|
*
|
|
91649
93012
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopReadingWithResult)
|
|
91650
93013
|
*/
|
|
91651
|
-
stopReadingWithResult(
|
|
93014
|
+
stopReadingWithResult(
|
|
93015
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
|
|
93016
|
+
): Promise<ServiceResult>;
|
|
91652
93017
|
/**
|
|
91653
93018
|
* This method undos the last edit made while in an edit session.
|
|
91654
93019
|
*
|
|
91655
93020
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#undo)
|
|
91656
93021
|
*/
|
|
91657
|
-
undo(versionIdentifier:
|
|
93022
|
+
undo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): void;
|
|
91658
93023
|
|
|
91659
93024
|
constructor(properties?: any);
|
|
91660
93025
|
}
|
|
@@ -91809,6 +93174,26 @@ declare namespace __esri {
|
|
|
91809
93174
|
guid: string;
|
|
91810
93175
|
}
|
|
91811
93176
|
|
|
93177
|
+
/**
|
|
93178
|
+
* Holds the name and guid of a version.
|
|
93179
|
+
*
|
|
93180
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
|
|
93181
|
+
*/
|
|
93182
|
+
export interface versionManagementVersionManagementServiceVersionIdentifier {
|
|
93183
|
+
/**
|
|
93184
|
+
* The version name.
|
|
93185
|
+
*
|
|
93186
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
|
|
93187
|
+
*/
|
|
93188
|
+
name: string;
|
|
93189
|
+
/**
|
|
93190
|
+
* The version GUID.
|
|
93191
|
+
*
|
|
93192
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
|
|
93193
|
+
*/
|
|
93194
|
+
guid: string;
|
|
93195
|
+
}
|
|
93196
|
+
|
|
91812
93197
|
/**
|
|
91813
93198
|
* This contains extended information about a given version.
|
|
91814
93199
|
*
|
|
@@ -92955,12 +94340,6 @@ declare namespace __esri {
|
|
|
92955
94340
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-analysis-DirectLineMeasurementAnalysisView3D.html#DirectLineMeasurementAnalysisResult)
|
|
92956
94341
|
*/
|
|
92957
94342
|
mode: "euclidean" | "geodesic";
|
|
92958
|
-
/**
|
|
92959
|
-
* DEPRECATED since 4.29: Use `directDistance` and `horizontalDistance` - Measured distance between the start and end points.
|
|
92960
|
-
*
|
|
92961
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-analysis-DirectLineMeasurementAnalysisView3D.html#DirectLineMeasurementAnalysisResult)
|
|
92962
|
-
*/
|
|
92963
|
-
distance: Length;
|
|
92964
94343
|
/**
|
|
92965
94344
|
* The 3D distance between the two points that is computed in a Euclidean manner.
|
|
92966
94345
|
*
|
|
@@ -95277,7 +96656,7 @@ declare namespace __esri {
|
|
|
95277
96656
|
*/
|
|
95278
96657
|
helpMessageIcon: string;
|
|
95279
96658
|
/**
|
|
95280
|
-
* Whether users can focus the tooltip and input
|
|
96659
|
+
* Whether users can focus the tooltip and input constraint values.
|
|
95281
96660
|
*
|
|
95282
96661
|
* @default true
|
|
95283
96662
|
*
|
|
@@ -95318,7 +96697,7 @@ declare namespace __esri {
|
|
|
95318
96697
|
*/
|
|
95319
96698
|
helpMessageIcon?: string;
|
|
95320
96699
|
/**
|
|
95321
|
-
* Whether users can focus the tooltip and input
|
|
96700
|
+
* Whether users can focus the tooltip and input constraint values.
|
|
95322
96701
|
*
|
|
95323
96702
|
* @default true
|
|
95324
96703
|
*
|
|
@@ -95606,6 +96985,14 @@ declare namespace __esri {
|
|
|
95606
96985
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#featureSources)
|
|
95607
96986
|
*/
|
|
95608
96987
|
featureSources: Collection<FeatureSnappingLayerSource>;
|
|
96988
|
+
/**
|
|
96989
|
+
* Turns the grid on or off.
|
|
96990
|
+
*
|
|
96991
|
+
* @default false
|
|
96992
|
+
*
|
|
96993
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#gridEnabled)
|
|
96994
|
+
*/
|
|
96995
|
+
gridEnabled: boolean;
|
|
95609
96996
|
/**
|
|
95610
96997
|
* Global configuration option to turn self snapping (within one feature while either drawing or reshaping) on or off.
|
|
95611
96998
|
*
|
|
@@ -95655,6 +97042,14 @@ declare namespace __esri {
|
|
|
95655
97042
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#featureSources)
|
|
95656
97043
|
*/
|
|
95657
97044
|
featureSources?: CollectionProperties<FeatureSnappingLayerSourceProperties>;
|
|
97045
|
+
/**
|
|
97046
|
+
* Turns the grid on or off.
|
|
97047
|
+
*
|
|
97048
|
+
* @default false
|
|
97049
|
+
*
|
|
97050
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#gridEnabled)
|
|
97051
|
+
*/
|
|
97052
|
+
gridEnabled?: boolean;
|
|
95658
97053
|
/**
|
|
95659
97054
|
* Global configuration option to turn self snapping (within one feature while either drawing or reshaping) on or off.
|
|
95660
97055
|
*
|
|
@@ -96037,7 +97432,7 @@ declare namespace __esri {
|
|
|
96037
97432
|
*/
|
|
96038
97433
|
readonly availableFields: string[];
|
|
96039
97434
|
/**
|
|
96040
|
-
* Indicates
|
|
97435
|
+
* Indicates whether the layer view is currently fetching new features.
|
|
96041
97436
|
*
|
|
96042
97437
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#dataUpdating)
|
|
96043
97438
|
*/
|
|
@@ -96061,7 +97456,7 @@ declare namespace __esri {
|
|
|
96061
97456
|
*/
|
|
96062
97457
|
readonly hasAllFeatures: boolean;
|
|
96063
97458
|
/**
|
|
96064
|
-
* Indicates whether the layer view has all
|
|
97459
|
+
* Indicates whether the layer view has successfully queried all of its features for the current view.
|
|
96065
97460
|
*
|
|
96066
97461
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#hasAllFeaturesInView)
|
|
96067
97462
|
*/
|
|
@@ -97053,6 +98448,32 @@ declare namespace __esri {
|
|
|
97053
98448
|
FeatureLayerViewMixinProperties,
|
|
97054
98449
|
HighlightLayerViewMixinProperties {}
|
|
97055
98450
|
|
|
98451
|
+
export class LinkChartView extends View2D {
|
|
98452
|
+
/**
|
|
98453
|
+
* LinkChartView is a [2D view](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html) that displays a [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html).
|
|
98454
|
+
*
|
|
98455
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html)
|
|
98456
|
+
*/
|
|
98457
|
+
|
|
98458
|
+
constructor(properties?: LinkChartViewProperties);
|
|
98459
|
+
|
|
98460
|
+
/**
|
|
98461
|
+
* The [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html) displayed in the view.
|
|
98462
|
+
*
|
|
98463
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
98464
|
+
*/
|
|
98465
|
+
map: WebLinkChart;
|
|
98466
|
+
}
|
|
98467
|
+
|
|
98468
|
+
interface LinkChartViewProperties extends View2DProperties {
|
|
98469
|
+
/**
|
|
98470
|
+
* The [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html) displayed in the view.
|
|
98471
|
+
*
|
|
98472
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
98473
|
+
*/
|
|
98474
|
+
map?: WebLinkChartProperties;
|
|
98475
|
+
}
|
|
98476
|
+
|
|
97056
98477
|
export class Magnifier extends Accessor {
|
|
97057
98478
|
/**
|
|
97058
98479
|
* The Magnifier allows end users to show a portion of the view as a magnified image.
|
|
@@ -97228,6 +98649,12 @@ declare namespace __esri {
|
|
|
97228
98649
|
}
|
|
97229
98650
|
|
|
97230
98651
|
export class MapView extends View2D {
|
|
98652
|
+
/**
|
|
98653
|
+
* A MapView displays a 2D view of a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) instance.
|
|
98654
|
+
*
|
|
98655
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html)
|
|
98656
|
+
*/
|
|
98657
|
+
|
|
97231
98658
|
constructor(properties?: MapViewProperties);
|
|
97232
98659
|
|
|
97233
98660
|
/**
|
|
@@ -99975,7 +101402,7 @@ declare namespace __esri {
|
|
|
99975
101402
|
|
|
99976
101403
|
export class View2D {
|
|
99977
101404
|
/**
|
|
99978
|
-
*
|
|
101405
|
+
* View2D is the base class for all 2D views.
|
|
99979
101406
|
*
|
|
99980
101407
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html)
|
|
99981
101408
|
*/
|
|
@@ -101456,6 +102883,12 @@ declare namespace __esri {
|
|
|
101456
102883
|
export interface WebDocument2D extends Map, corePromise {}
|
|
101457
102884
|
|
|
101458
102885
|
export class WebDocument2D {
|
|
102886
|
+
/**
|
|
102887
|
+
* WebDocument2D is the base class for all 2D web documents.
|
|
102888
|
+
*
|
|
102889
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html)
|
|
102890
|
+
*/
|
|
102891
|
+
|
|
101459
102892
|
constructor(properties?: WebDocument2DProperties);
|
|
101460
102893
|
|
|
101461
102894
|
/**
|
|
@@ -101549,6 +102982,12 @@ declare namespace __esri {
|
|
|
101549
102982
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#loadAll)
|
|
101550
102983
|
*/
|
|
101551
102984
|
loadAll(): Promise<WebMap>;
|
|
102985
|
+
/**
|
|
102986
|
+
* Update properties of the WebMap related to the view.
|
|
102987
|
+
*
|
|
102988
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
102989
|
+
*/
|
|
102990
|
+
updateFrom(view: MapView, options?: WebDocument2DUpdateFromOptions): Promise<any>;
|
|
101552
102991
|
}
|
|
101553
102992
|
|
|
101554
102993
|
interface WebDocument2DProperties extends MapProperties {
|
|
@@ -101608,7 +103047,79 @@ declare namespace __esri {
|
|
|
101608
103047
|
widgets?: Widgets;
|
|
101609
103048
|
}
|
|
101610
103049
|
|
|
103050
|
+
export interface WebDocument2DUpdateFromOptions {
|
|
103051
|
+
/**
|
|
103052
|
+
* When `true`, the view's background will not be updated for the webmap.
|
|
103053
|
+
*
|
|
103054
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103055
|
+
*/
|
|
103056
|
+
backgroundExcluded?: boolean;
|
|
103057
|
+
/**
|
|
103058
|
+
* When `true`, the initial [viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-webmap-InitialViewProperties.html#viewpoint) of the view will not be updated for the webmap.
|
|
103059
|
+
*
|
|
103060
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103061
|
+
*/
|
|
103062
|
+
viewpointExcluded?: boolean;
|
|
103063
|
+
/**
|
|
103064
|
+
* When `true`, the view's scale will be updated for the webmap.
|
|
103065
|
+
*
|
|
103066
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103067
|
+
*/
|
|
103068
|
+
scalePreserved?: boolean;
|
|
103069
|
+
/**
|
|
103070
|
+
* When `true`, the thumbnail will not be updated for the webmap.
|
|
103071
|
+
*
|
|
103072
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103073
|
+
*/
|
|
103074
|
+
thumbnailExcluded?: boolean;
|
|
103075
|
+
/**
|
|
103076
|
+
* The size of the thumbnail.
|
|
103077
|
+
*
|
|
103078
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103079
|
+
*/
|
|
103080
|
+
thumbnailSize?: WebDocument2DUpdateFromOptionsThumbnailSize;
|
|
103081
|
+
/**
|
|
103082
|
+
* When `true`, the webmap's [widgets](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#widgets) property will not be updated.
|
|
103083
|
+
*
|
|
103084
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103085
|
+
*/
|
|
103086
|
+
widgetsExcluded?: boolean;
|
|
103087
|
+
}
|
|
103088
|
+
|
|
103089
|
+
export interface WebDocument2DUpdateFromOptionsThumbnailSize {
|
|
103090
|
+
/**
|
|
103091
|
+
* The width of the thumbnail.
|
|
103092
|
+
*
|
|
103093
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103094
|
+
*/
|
|
103095
|
+
width: number;
|
|
103096
|
+
/**
|
|
103097
|
+
* The height of the thumbnail.
|
|
103098
|
+
*
|
|
103099
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
|
|
103100
|
+
*/
|
|
103101
|
+
height: number;
|
|
103102
|
+
}
|
|
103103
|
+
|
|
103104
|
+
export class WebLinkChart extends WebDocument2D {
|
|
103105
|
+
/**
|
|
103106
|
+
* The WebLinkChart class contains properties and methods for storing, managing, and overlaying layers in a link chart.
|
|
103107
|
+
*
|
|
103108
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html)
|
|
103109
|
+
*/
|
|
103110
|
+
|
|
103111
|
+
constructor(properties?: WebLinkChartProperties);
|
|
103112
|
+
}
|
|
103113
|
+
|
|
103114
|
+
interface WebLinkChartProperties extends WebDocument2DProperties {}
|
|
103115
|
+
|
|
101611
103116
|
export class WebMap extends WebDocument2D {
|
|
103117
|
+
/**
|
|
103118
|
+
* Loads a [WebMap](https://doc.arcgis.com/en/arcgis-online/create-maps/make-your-first-map.htm) from [ArcGIS Online](https://www.arcgis.com/home/) or [ArcGIS Enterprise portal](https://enterprise.arcgis.com/en/portal/latest/administer/windows/what-is-portal-for-arcgis-.htm) into a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html).
|
|
103119
|
+
*
|
|
103120
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html)
|
|
103121
|
+
*/
|
|
103122
|
+
|
|
101612
103123
|
constructor(properties?: WebMapProperties);
|
|
101613
103124
|
|
|
101614
103125
|
/**
|
|
@@ -101654,12 +103165,6 @@ declare namespace __esri {
|
|
|
101654
103165
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#saveAs)
|
|
101655
103166
|
*/
|
|
101656
103167
|
saveAs(portalItem: PortalItem | PortalItemProperties, options?: WebMapSaveAsOptions): Promise<PortalItem>;
|
|
101657
|
-
/**
|
|
101658
|
-
* Update properties of the WebMap related to the view.
|
|
101659
|
-
*
|
|
101660
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
101661
|
-
*/
|
|
101662
|
-
updateFrom(view: MapView, options?: WebMapUpdateFromOptions): Promise<any>;
|
|
101663
103168
|
|
|
101664
103169
|
/**
|
|
101665
103170
|
* Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product.
|
|
@@ -102007,60 +103512,6 @@ declare namespace __esri {
|
|
|
102007
103512
|
minor: number;
|
|
102008
103513
|
}
|
|
102009
103514
|
|
|
102010
|
-
export interface WebMapUpdateFromOptions {
|
|
102011
|
-
/**
|
|
102012
|
-
* When `true`, the view's background will not be updated for the webmap.
|
|
102013
|
-
*
|
|
102014
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102015
|
-
*/
|
|
102016
|
-
backgroundExcluded?: boolean;
|
|
102017
|
-
/**
|
|
102018
|
-
* When `true`, the initial [viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-webmap-InitialViewProperties.html#viewpoint) of the view will not be updated for the webmap.
|
|
102019
|
-
*
|
|
102020
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102021
|
-
*/
|
|
102022
|
-
viewpointExcluded?: boolean;
|
|
102023
|
-
/**
|
|
102024
|
-
* When `true`, the view's scale will be updated for the webmap.
|
|
102025
|
-
*
|
|
102026
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102027
|
-
*/
|
|
102028
|
-
scalePreserved?: boolean;
|
|
102029
|
-
/**
|
|
102030
|
-
* When `true`, the thumbnail will not be updated for the webmap.
|
|
102031
|
-
*
|
|
102032
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102033
|
-
*/
|
|
102034
|
-
thumbnailExcluded?: boolean;
|
|
102035
|
-
/**
|
|
102036
|
-
* The size of the thumbnail.
|
|
102037
|
-
*
|
|
102038
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102039
|
-
*/
|
|
102040
|
-
thumbnailSize?: WebMapUpdateFromOptionsThumbnailSize;
|
|
102041
|
-
/**
|
|
102042
|
-
* When `true`, the webmap's [widgets](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#widgets) property will not be updated.
|
|
102043
|
-
*
|
|
102044
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102045
|
-
*/
|
|
102046
|
-
widgetsExcluded?: boolean;
|
|
102047
|
-
}
|
|
102048
|
-
|
|
102049
|
-
export interface WebMapUpdateFromOptionsThumbnailSize {
|
|
102050
|
-
/**
|
|
102051
|
-
* The width of the thumbnail.
|
|
102052
|
-
*
|
|
102053
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102054
|
-
*/
|
|
102055
|
-
width: number;
|
|
102056
|
-
/**
|
|
102057
|
-
* The height of the thumbnail.
|
|
102058
|
-
*
|
|
102059
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
|
|
102060
|
-
*/
|
|
102061
|
-
height: number;
|
|
102062
|
-
}
|
|
102063
|
-
|
|
102064
103515
|
/**
|
|
102065
103516
|
* The widgets object contains widgets that are exposed to the user.
|
|
102066
103517
|
*
|
|
@@ -110670,19 +112121,23 @@ declare namespace __esri {
|
|
|
110670
112121
|
*/
|
|
110671
112122
|
layerListToggleLayersButton?: boolean;
|
|
110672
112123
|
/**
|
|
110673
|
-
*
|
|
112124
|
+
* _Since 4.30_.
|
|
110674
112125
|
*
|
|
110675
112126
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
|
|
110676
112127
|
*/
|
|
110677
|
-
|
|
112128
|
+
gridEnabledToggle?: boolean;
|
|
110678
112129
|
/**
|
|
110679
|
-
*
|
|
112130
|
+
* _Since 4.30_.
|
|
110680
112131
|
*
|
|
110681
112132
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
|
|
110682
112133
|
*/
|
|
110683
112134
|
gridControls?: boolean;
|
|
110684
|
-
|
|
110685
|
-
|
|
112135
|
+
/**
|
|
112136
|
+
* _Since 4.30_.
|
|
112137
|
+
*
|
|
112138
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
|
|
112139
|
+
*/
|
|
112140
|
+
gridControlsElements?: VisibleElementsSnappingControlsElementsGridControlsElements;
|
|
110686
112141
|
}
|
|
110687
112142
|
|
|
110688
112143
|
export interface VisibleElementsSnappingControlsElementsGridControlsElements {
|
|
@@ -113977,7 +115432,7 @@ declare namespace __esri {
|
|
|
113977
115432
|
*/
|
|
113978
115433
|
readonly activeSortOrders: ColumnSortOrder[];
|
|
113979
115434
|
/**
|
|
113980
|
-
* Indicates the table is displaying all related tables in
|
|
115435
|
+
* Indicates the table is displaying all related tables in `show all` mode.
|
|
113981
115436
|
*
|
|
113982
115437
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#allRelatedTablesVisible)
|
|
113983
115438
|
*/
|
|
@@ -113990,6 +115445,12 @@ declare namespace __esri {
|
|
|
113990
115445
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attachmentsEnabled)
|
|
113991
115446
|
*/
|
|
113992
115447
|
attachmentsEnabled: boolean;
|
|
115448
|
+
/**
|
|
115449
|
+
* Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
|
|
115450
|
+
*
|
|
115451
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attributeTableTemplate)
|
|
115452
|
+
*/
|
|
115453
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
113993
115454
|
/**
|
|
113994
115455
|
* Indicates whether the table should automatically refresh when the underlying data changes.
|
|
113995
115456
|
*
|
|
@@ -114081,19 +115542,19 @@ declare namespace __esri {
|
|
|
114081
115542
|
*/
|
|
114082
115543
|
highlightIds: Collection<number | string>;
|
|
114083
115544
|
/**
|
|
114084
|
-
*
|
|
115545
|
+
* The user-provided number of total features accessed from the data source.
|
|
114085
115546
|
*
|
|
114086
115547
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
|
|
114087
115548
|
*/
|
|
114088
115549
|
initialSize: number;
|
|
114089
115550
|
/**
|
|
114090
|
-
* Indicates if the table is querying or syncing data
|
|
115551
|
+
* Indicates if the table is querying or syncing data.
|
|
114091
115552
|
*
|
|
114092
115553
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isQueryingOrSyncing)
|
|
114093
115554
|
*/
|
|
114094
115555
|
readonly isQueryingOrSyncing: boolean;
|
|
114095
115556
|
/**
|
|
114096
|
-
*
|
|
115557
|
+
* Indicates if the table is syncing attachment edits.
|
|
114097
115558
|
*
|
|
114098
115559
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isSyncingAttachments)
|
|
114099
115560
|
*/
|
|
@@ -114113,7 +115574,7 @@ declare namespace __esri {
|
|
|
114113
115574
|
| SceneLayer
|
|
114114
115575
|
| WFSLayer;
|
|
114115
115576
|
/**
|
|
114116
|
-
*
|
|
115577
|
+
* An array of layers listed within the [dropdown component](https://developers.arcgis.com/calcite-design-system/components/dropdown/) of the table's header.
|
|
114117
115578
|
*
|
|
114118
115579
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#layers)
|
|
114119
115580
|
*/
|
|
@@ -114134,7 +115595,7 @@ declare namespace __esri {
|
|
|
114134
115595
|
*/
|
|
114135
115596
|
readonly layerView: LayerView;
|
|
114136
115597
|
/**
|
|
114137
|
-
* This property is
|
|
115598
|
+
* This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
|
|
114138
115599
|
*
|
|
114139
115600
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
|
|
114140
115601
|
*/
|
|
@@ -114174,13 +115635,13 @@ declare namespace __esri {
|
|
|
114174
115635
|
*/
|
|
114175
115636
|
outFields: string[];
|
|
114176
115637
|
/**
|
|
114177
|
-
* Number of pages of features to be displayed in the table, based on the total number of features and configured
|
|
115638
|
+
* Number of pages of features to be displayed in the table, based on the total [number of features](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#size) and configured [pageSize](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageSize).
|
|
114178
115639
|
*
|
|
114179
115640
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageCount)
|
|
114180
115641
|
*/
|
|
114181
115642
|
readonly pageCount: number;
|
|
114182
115643
|
/**
|
|
114183
|
-
* Represents the index of the page of feature currently being displayed.
|
|
115644
|
+
* Represents the index of the page of the feature currently being displayed.
|
|
114184
115645
|
*
|
|
114185
115646
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageIndex)
|
|
114186
115647
|
*/
|
|
@@ -114210,13 +115671,13 @@ declare namespace __esri {
|
|
|
114210
115671
|
*/
|
|
114211
115672
|
relatedRecordsEnabled: boolean;
|
|
114212
115673
|
/**
|
|
114213
|
-
*
|
|
115674
|
+
* A nested table instance which represents a relationship to another table.
|
|
114214
115675
|
*
|
|
114215
115676
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTable)
|
|
114216
115677
|
*/
|
|
114217
115678
|
relatedTable: FeatureTable;
|
|
114218
115679
|
/**
|
|
114219
|
-
*
|
|
115680
|
+
* A collection of nested table instances.
|
|
114220
115681
|
*
|
|
114221
115682
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTables)
|
|
114222
115683
|
*/
|
|
@@ -114238,7 +115699,7 @@ declare namespace __esri {
|
|
|
114238
115699
|
*/
|
|
114239
115700
|
returnMEnabled: boolean;
|
|
114240
115701
|
/**
|
|
114241
|
-
* Indicates whether
|
|
115702
|
+
* Indicates whether the fetched features' geometries contain Z values.
|
|
114242
115703
|
*
|
|
114243
115704
|
* @default false
|
|
114244
115705
|
*
|
|
@@ -114246,7 +115707,7 @@ declare namespace __esri {
|
|
|
114246
115707
|
*/
|
|
114247
115708
|
returnZEnabled: boolean;
|
|
114248
115709
|
/**
|
|
114249
|
-
* This property accepts and returns a collection of feature object IDs
|
|
115710
|
+
* This property accepts and returns a collection of feature object IDs.
|
|
114250
115711
|
*
|
|
114251
115712
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#rowHighlightIds)
|
|
114252
115713
|
*/
|
|
@@ -114268,13 +115729,13 @@ declare namespace __esri {
|
|
|
114268
115729
|
*/
|
|
114269
115730
|
readonly state: "disabled" | "loading" | "loaded" | "ready" | "error";
|
|
114270
115731
|
/**
|
|
114271
|
-
*
|
|
115732
|
+
* A reference to top-level controller table.
|
|
114272
115733
|
*
|
|
114273
115734
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableController)
|
|
114274
115735
|
*/
|
|
114275
115736
|
tableController: FeatureTable;
|
|
114276
115737
|
/**
|
|
114277
|
-
*
|
|
115738
|
+
* A reference to the instance of a table widget that is directly associated with this table.
|
|
114278
115739
|
*
|
|
114279
115740
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableParent)
|
|
114280
115741
|
*/
|
|
@@ -114343,7 +115804,7 @@ declare namespace __esri {
|
|
|
114343
115804
|
*/
|
|
114344
115805
|
exportSelectionToCSV(includeGeometry?: boolean): Promise<void>;
|
|
114345
115806
|
/**
|
|
114346
|
-
* Filters the table
|
|
115807
|
+
* Filters the table using the current row selection and displays only the selected table rows.
|
|
114347
115808
|
*
|
|
114348
115809
|
* @deprecated since version 4.30. Use [`filterBySelectionEnabled`](#filterBySelectionEnabled) or [`objectIds`](#objectIds) instead.
|
|
114349
115810
|
*
|
|
@@ -114387,7 +115848,7 @@ declare namespace __esri {
|
|
|
114387
115848
|
*/
|
|
114388
115849
|
refresh(): Promise<void>;
|
|
114389
115850
|
/**
|
|
114390
|
-
*
|
|
115851
|
+
* Re-renders the cell's content.
|
|
114391
115852
|
*
|
|
114392
115853
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#refreshCellContent)
|
|
114393
115854
|
*/
|
|
@@ -114411,7 +115872,7 @@ declare namespace __esri {
|
|
|
114411
115872
|
*/
|
|
114412
115873
|
scrollToIndex(index: number): void;
|
|
114413
115874
|
/**
|
|
114414
|
-
* Scrolls the table to a row based on a specified object
|
|
115875
|
+
* Scrolls the table to a row based on a specified object ID.
|
|
114415
115876
|
*
|
|
114416
115877
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#scrollToRow)
|
|
114417
115878
|
*/
|
|
@@ -114455,6 +115916,8 @@ declare namespace __esri {
|
|
|
114455
115916
|
|
|
114456
115917
|
on(name: "cell-click", eventHandler: FeatureTableCellClickEventHandler): IHandle;
|
|
114457
115918
|
|
|
115919
|
+
on(name: "cell-dblclick", eventHandler: FeatureTableCellDblclickEventHandler): IHandle;
|
|
115920
|
+
|
|
114458
115921
|
on(name: "cell-pointerout", eventHandler: FeatureTableCellPointeroutEventHandler): IHandle;
|
|
114459
115922
|
|
|
114460
115923
|
on(name: "cell-pointerover", eventHandler: FeatureTableCellPointeroverEventHandler): IHandle;
|
|
@@ -114479,6 +115942,12 @@ declare namespace __esri {
|
|
|
114479
115942
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attachmentsEnabled)
|
|
114480
115943
|
*/
|
|
114481
115944
|
attachmentsEnabled?: boolean;
|
|
115945
|
+
/**
|
|
115946
|
+
* Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
|
|
115947
|
+
*
|
|
115948
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attributeTableTemplate)
|
|
115949
|
+
*/
|
|
115950
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
114482
115951
|
/**
|
|
114483
115952
|
* Indicates whether the table should automatically refresh when the underlying data changes.
|
|
114484
115953
|
*
|
|
@@ -114556,7 +116025,7 @@ declare namespace __esri {
|
|
|
114556
116025
|
*/
|
|
114557
116026
|
highlightIds?: CollectionProperties<number | string>;
|
|
114558
116027
|
/**
|
|
114559
|
-
*
|
|
116028
|
+
* The user-provided number of total features accessed from the data source.
|
|
114560
116029
|
*
|
|
114561
116030
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
|
|
114562
116031
|
*/
|
|
@@ -114576,7 +116045,7 @@ declare namespace __esri {
|
|
|
114576
116045
|
| (SceneLayerProperties & { type: "scene" })
|
|
114577
116046
|
| (WFSLayerProperties & { type: "wfs" });
|
|
114578
116047
|
/**
|
|
114579
|
-
* This property is
|
|
116048
|
+
* This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
|
|
114580
116049
|
*
|
|
114581
116050
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
|
|
114582
116051
|
*/
|
|
@@ -114616,7 +116085,7 @@ declare namespace __esri {
|
|
|
114616
116085
|
*/
|
|
114617
116086
|
outFields?: string[];
|
|
114618
116087
|
/**
|
|
114619
|
-
* Represents the index of the page of feature currently being displayed.
|
|
116088
|
+
* Represents the index of the page of the feature currently being displayed.
|
|
114620
116089
|
*
|
|
114621
116090
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageIndex)
|
|
114622
116091
|
*/
|
|
@@ -114646,13 +116115,13 @@ declare namespace __esri {
|
|
|
114646
116115
|
*/
|
|
114647
116116
|
relatedRecordsEnabled?: boolean;
|
|
114648
116117
|
/**
|
|
114649
|
-
*
|
|
116118
|
+
* A nested table instance which represents a relationship to another table.
|
|
114650
116119
|
*
|
|
114651
116120
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTable)
|
|
114652
116121
|
*/
|
|
114653
116122
|
relatedTable?: FeatureTableProperties;
|
|
114654
116123
|
/**
|
|
114655
|
-
*
|
|
116124
|
+
* A collection of nested table instances.
|
|
114656
116125
|
*
|
|
114657
116126
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTables)
|
|
114658
116127
|
*/
|
|
@@ -114674,7 +116143,7 @@ declare namespace __esri {
|
|
|
114674
116143
|
*/
|
|
114675
116144
|
returnMEnabled?: boolean;
|
|
114676
116145
|
/**
|
|
114677
|
-
* Indicates whether
|
|
116146
|
+
* Indicates whether the fetched features' geometries contain Z values.
|
|
114678
116147
|
*
|
|
114679
116148
|
* @default false
|
|
114680
116149
|
*
|
|
@@ -114682,19 +116151,19 @@ declare namespace __esri {
|
|
|
114682
116151
|
*/
|
|
114683
116152
|
returnZEnabled?: boolean;
|
|
114684
116153
|
/**
|
|
114685
|
-
* This property accepts and returns a collection of feature object IDs
|
|
116154
|
+
* This property accepts and returns a collection of feature object IDs.
|
|
114686
116155
|
*
|
|
114687
116156
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#rowHighlightIds)
|
|
114688
116157
|
*/
|
|
114689
116158
|
rowHighlightIds?: CollectionProperties<number | string>;
|
|
114690
116159
|
/**
|
|
114691
|
-
*
|
|
116160
|
+
* A reference to top-level controller table.
|
|
114692
116161
|
*
|
|
114693
116162
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableController)
|
|
114694
116163
|
*/
|
|
114695
116164
|
tableController?: FeatureTableProperties;
|
|
114696
116165
|
/**
|
|
114697
|
-
*
|
|
116166
|
+
* A reference to the instance of a table widget that is directly associated with this table.
|
|
114698
116167
|
*
|
|
114699
116168
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableParent)
|
|
114700
116169
|
*/
|
|
@@ -114975,7 +116444,7 @@ declare namespace __esri {
|
|
|
114975
116444
|
*/
|
|
114976
116445
|
readonly activeSortOrders: ColumnSortOrder[];
|
|
114977
116446
|
/**
|
|
114978
|
-
* Indicates the table is displaying all related tables in
|
|
116447
|
+
* Indicates the table is displaying all related tables in `show all` mode.
|
|
114979
116448
|
*
|
|
114980
116449
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#allRelatedTablesVisible)
|
|
114981
116450
|
*/
|
|
@@ -114988,6 +116457,12 @@ declare namespace __esri {
|
|
|
114988
116457
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attachmentsEnabled)
|
|
114989
116458
|
*/
|
|
114990
116459
|
attachmentsEnabled: boolean;
|
|
116460
|
+
/**
|
|
116461
|
+
* Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
|
|
116462
|
+
*
|
|
116463
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attributeTableTemplate)
|
|
116464
|
+
*/
|
|
116465
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
114991
116466
|
/**
|
|
114992
116467
|
* Indicates whether the table should automatically refresh when the underlying data changes.
|
|
114993
116468
|
*
|
|
@@ -115057,19 +116532,19 @@ declare namespace __esri {
|
|
|
115057
116532
|
*/
|
|
115058
116533
|
highlightIds: Collection<number | string>;
|
|
115059
116534
|
/**
|
|
115060
|
-
*
|
|
116535
|
+
* The user-provided number of total features accessed from the data source.
|
|
115061
116536
|
*
|
|
115062
116537
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
|
|
115063
116538
|
*/
|
|
115064
116539
|
initialSize: number;
|
|
115065
116540
|
/**
|
|
115066
|
-
* Indicates if the table is querying or syncing data
|
|
116541
|
+
* Indicates if the table is querying or syncing data.
|
|
115067
116542
|
*
|
|
115068
116543
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isQueryingOrSyncing)
|
|
115069
116544
|
*/
|
|
115070
116545
|
readonly isQueryingOrSyncing: boolean;
|
|
115071
116546
|
/**
|
|
115072
|
-
*
|
|
116547
|
+
* Indicates if the table is syncing attachment edits.
|
|
115073
116548
|
*
|
|
115074
116549
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isSyncingAttachments)
|
|
115075
116550
|
*/
|
|
@@ -115095,7 +116570,7 @@ declare namespace __esri {
|
|
|
115095
116570
|
*/
|
|
115096
116571
|
readonly layerView: LayerView;
|
|
115097
116572
|
/**
|
|
115098
|
-
* This property is
|
|
116573
|
+
* This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
|
|
115099
116574
|
*
|
|
115100
116575
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
|
|
115101
116576
|
*/
|
|
@@ -115123,19 +116598,19 @@ declare namespace __esri {
|
|
|
115123
116598
|
*/
|
|
115124
116599
|
objectIds: Collection<number | string>;
|
|
115125
116600
|
/**
|
|
115126
|
-
*
|
|
116601
|
+
* An array of field names from the table's data source to include when the table requests data.
|
|
115127
116602
|
*
|
|
115128
116603
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#outFields)
|
|
115129
116604
|
*/
|
|
115130
116605
|
outFields: string[];
|
|
115131
116606
|
/**
|
|
115132
|
-
* Number of pages of features to be displayed in the table, based on the total number of features and configured
|
|
116607
|
+
* Number of pages of features to be displayed in the table, based on the total [number of features](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#size) and configured [pageSize](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageSize).
|
|
115133
116608
|
*
|
|
115134
116609
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageCount)
|
|
115135
116610
|
*/
|
|
115136
116611
|
readonly pageCount: number;
|
|
115137
116612
|
/**
|
|
115138
|
-
* Represents the index of the page of feature currently being displayed.
|
|
116613
|
+
* Represents the index of the page of the feature currently being displayed.
|
|
115139
116614
|
*
|
|
115140
116615
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageIndex)
|
|
115141
116616
|
*/
|
|
@@ -115157,7 +116632,7 @@ declare namespace __esri {
|
|
|
115157
116632
|
*/
|
|
115158
116633
|
paginationEnabled: boolean;
|
|
115159
116634
|
/**
|
|
115160
|
-
* Indicates whether to display any related records associated with
|
|
116635
|
+
* Indicates whether to display any related records associated with rows within the table.
|
|
115161
116636
|
*
|
|
115162
116637
|
* @default false
|
|
115163
116638
|
*
|
|
@@ -115165,19 +116640,19 @@ declare namespace __esri {
|
|
|
115165
116640
|
*/
|
|
115166
116641
|
relatedRecordsEnabled: boolean;
|
|
115167
116642
|
/**
|
|
115168
|
-
*
|
|
116643
|
+
* A nested table instance which represents a relationship to another table.
|
|
115169
116644
|
*
|
|
115170
116645
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
|
|
115171
116646
|
*/
|
|
115172
116647
|
relatedTable: FeatureTable;
|
|
115173
116648
|
/**
|
|
115174
|
-
*
|
|
116649
|
+
* A collection of nested table instances.
|
|
115175
116650
|
*
|
|
115176
116651
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
|
|
115177
116652
|
*/
|
|
115178
116653
|
relatedTables: Collection<FeatureTable>;
|
|
115179
116654
|
/**
|
|
115180
|
-
*
|
|
116655
|
+
* An array of relationships that exist on the [layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#layer).
|
|
115181
116656
|
*
|
|
115182
116657
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relationships)
|
|
115183
116658
|
*/
|
|
@@ -115199,7 +116674,7 @@ declare namespace __esri {
|
|
|
115199
116674
|
*/
|
|
115200
116675
|
returnMEnabled: boolean;
|
|
115201
116676
|
/**
|
|
115202
|
-
* Indicates whether
|
|
116677
|
+
* Indicates whether the fetched features' geometries contain Z values.
|
|
115203
116678
|
*
|
|
115204
116679
|
* @default false
|
|
115205
116680
|
*
|
|
@@ -115207,7 +116682,7 @@ declare namespace __esri {
|
|
|
115207
116682
|
*/
|
|
115208
116683
|
returnZEnabled: boolean;
|
|
115209
116684
|
/**
|
|
115210
|
-
*
|
|
116685
|
+
* This property accepts and returns a collection of feature object IDs.
|
|
115211
116686
|
*
|
|
115212
116687
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#rowHighlightIds)
|
|
115213
116688
|
*/
|
|
@@ -115390,7 +116865,7 @@ declare namespace __esri {
|
|
|
115390
116865
|
*/
|
|
115391
116866
|
scrollToIndex(index: number): void;
|
|
115392
116867
|
/**
|
|
115393
|
-
* Scrolls the table to a row based on a specified object
|
|
116868
|
+
* Scrolls the table to a row based on a specified object ID.
|
|
115394
116869
|
*
|
|
115395
116870
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#scrollToRow)
|
|
115396
116871
|
*/
|
|
@@ -115414,15 +116889,17 @@ declare namespace __esri {
|
|
|
115414
116889
|
*/
|
|
115415
116890
|
zoomToSelection(): void;
|
|
115416
116891
|
|
|
115417
|
-
on(name: "cell-dblclick", eventHandler: FeatureTableViewModelCellDblclickEventHandler): IHandle;
|
|
115418
|
-
|
|
115419
116892
|
on(name: "cell-click", eventHandler: FeatureTableViewModelCellClickEventHandler): IHandle;
|
|
115420
116893
|
|
|
116894
|
+
on(name: "cell-dblclick", eventHandler: FeatureTableViewModelCellDblclickEventHandler): IHandle;
|
|
116895
|
+
|
|
115421
116896
|
on(name: "cell-pointerout", eventHandler: FeatureTableViewModelCellPointeroutEventHandler): IHandle;
|
|
115422
116897
|
|
|
115423
116898
|
on(name: "cell-pointerover", eventHandler: FeatureTableViewModelCellPointeroverEventHandler): IHandle;
|
|
115424
116899
|
|
|
115425
116900
|
on(name: "cell-keydown", eventHandler: FeatureTableViewModelCellKeydownEventHandler): IHandle;
|
|
116901
|
+
|
|
116902
|
+
on(name: "column-reorder", eventHandler: FeatureTableViewModelColumnReorderEventHandler): IHandle;
|
|
115426
116903
|
}
|
|
115427
116904
|
|
|
115428
116905
|
interface FeatureTableViewModelProperties {
|
|
@@ -115440,6 +116917,12 @@ declare namespace __esri {
|
|
|
115440
116917
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attachmentsEnabled)
|
|
115441
116918
|
*/
|
|
115442
116919
|
attachmentsEnabled?: boolean;
|
|
116920
|
+
/**
|
|
116921
|
+
* Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
|
|
116922
|
+
*
|
|
116923
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attributeTableTemplate)
|
|
116924
|
+
*/
|
|
116925
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
115443
116926
|
/**
|
|
115444
116927
|
* Indicates whether the table should automatically refresh when the underlying data changes.
|
|
115445
116928
|
*
|
|
@@ -115495,7 +116978,7 @@ declare namespace __esri {
|
|
|
115495
116978
|
*/
|
|
115496
116979
|
highlightIds?: CollectionProperties<number | string>;
|
|
115497
116980
|
/**
|
|
115498
|
-
*
|
|
116981
|
+
* The user-provided number of total features accessed from the data source.
|
|
115499
116982
|
*
|
|
115500
116983
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
|
|
115501
116984
|
*/
|
|
@@ -115515,7 +116998,7 @@ declare namespace __esri {
|
|
|
115515
116998
|
| (SceneLayerProperties & { type: "scene" })
|
|
115516
116999
|
| (WFSLayerProperties & { type: "wfs" });
|
|
115517
117000
|
/**
|
|
115518
|
-
* This property is
|
|
117001
|
+
* This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
|
|
115519
117002
|
*
|
|
115520
117003
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
|
|
115521
117004
|
*/
|
|
@@ -115543,13 +117026,13 @@ declare namespace __esri {
|
|
|
115543
117026
|
*/
|
|
115544
117027
|
objectIds?: CollectionProperties<number | string>;
|
|
115545
117028
|
/**
|
|
115546
|
-
*
|
|
117029
|
+
* An array of field names from the table's data source to include when the table requests data.
|
|
115547
117030
|
*
|
|
115548
117031
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#outFields)
|
|
115549
117032
|
*/
|
|
115550
117033
|
outFields?: string[];
|
|
115551
117034
|
/**
|
|
115552
|
-
* Represents the index of the page of feature currently being displayed.
|
|
117035
|
+
* Represents the index of the page of the feature currently being displayed.
|
|
115553
117036
|
*
|
|
115554
117037
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageIndex)
|
|
115555
117038
|
*/
|
|
@@ -115571,7 +117054,7 @@ declare namespace __esri {
|
|
|
115571
117054
|
*/
|
|
115572
117055
|
paginationEnabled?: boolean;
|
|
115573
117056
|
/**
|
|
115574
|
-
* Indicates whether to display any related records associated with
|
|
117057
|
+
* Indicates whether to display any related records associated with rows within the table.
|
|
115575
117058
|
*
|
|
115576
117059
|
* @default false
|
|
115577
117060
|
*
|
|
@@ -115579,19 +117062,19 @@ declare namespace __esri {
|
|
|
115579
117062
|
*/
|
|
115580
117063
|
relatedRecordsEnabled?: boolean;
|
|
115581
117064
|
/**
|
|
115582
|
-
*
|
|
117065
|
+
* A nested table instance which represents a relationship to another table.
|
|
115583
117066
|
*
|
|
115584
117067
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
|
|
115585
117068
|
*/
|
|
115586
117069
|
relatedTable?: FeatureTableProperties;
|
|
115587
117070
|
/**
|
|
115588
|
-
*
|
|
117071
|
+
* A collection of nested table instances.
|
|
115589
117072
|
*
|
|
115590
117073
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
|
|
115591
117074
|
*/
|
|
115592
117075
|
relatedTables?: CollectionProperties<FeatureTableProperties>;
|
|
115593
117076
|
/**
|
|
115594
|
-
*
|
|
117077
|
+
* An array of relationships that exist on the [layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#layer).
|
|
115595
117078
|
*
|
|
115596
117079
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relationships)
|
|
115597
117080
|
*/
|
|
@@ -115613,7 +117096,7 @@ declare namespace __esri {
|
|
|
115613
117096
|
*/
|
|
115614
117097
|
returnMEnabled?: boolean;
|
|
115615
117098
|
/**
|
|
115616
|
-
* Indicates whether
|
|
117099
|
+
* Indicates whether the fetched features' geometries contain Z values.
|
|
115617
117100
|
*
|
|
115618
117101
|
* @default false
|
|
115619
117102
|
*
|
|
@@ -115621,7 +117104,7 @@ declare namespace __esri {
|
|
|
115621
117104
|
*/
|
|
115622
117105
|
returnZEnabled?: boolean;
|
|
115623
117106
|
/**
|
|
115624
|
-
*
|
|
117107
|
+
* This property accepts and returns a collection of feature object IDs.
|
|
115625
117108
|
*
|
|
115626
117109
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#rowHighlightIds)
|
|
115627
117110
|
*/
|
|
@@ -115697,7 +117180,7 @@ declare namespace __esri {
|
|
|
115697
117180
|
|
|
115698
117181
|
index: number;
|
|
115699
117182
|
|
|
115700
|
-
native: MouseEvent;
|
|
117183
|
+
native: MouseEvent | any | any;
|
|
115701
117184
|
|
|
115702
117185
|
objectId: number | string;
|
|
115703
117186
|
|
|
@@ -115711,7 +117194,7 @@ declare namespace __esri {
|
|
|
115711
117194
|
|
|
115712
117195
|
index: number;
|
|
115713
117196
|
|
|
115714
|
-
native: MouseEvent;
|
|
117197
|
+
native: MouseEvent | any | any;
|
|
115715
117198
|
|
|
115716
117199
|
objectId: number | string;
|
|
115717
117200
|
|
|
@@ -115725,7 +117208,7 @@ declare namespace __esri {
|
|
|
115725
117208
|
|
|
115726
117209
|
index: number;
|
|
115727
117210
|
|
|
115728
|
-
native: any;
|
|
117211
|
+
native: MouseEvent | any | any;
|
|
115729
117212
|
|
|
115730
117213
|
objectId: number | string;
|
|
115731
117214
|
|
|
@@ -115739,7 +117222,7 @@ declare namespace __esri {
|
|
|
115739
117222
|
|
|
115740
117223
|
index: number;
|
|
115741
117224
|
|
|
115742
|
-
native: any;
|
|
117225
|
+
native: MouseEvent | any | any;
|
|
115743
117226
|
|
|
115744
117227
|
objectId: number | string;
|
|
115745
117228
|
|
|
@@ -115753,13 +117236,17 @@ declare namespace __esri {
|
|
|
115753
117236
|
|
|
115754
117237
|
index: number;
|
|
115755
117238
|
|
|
115756
|
-
native: any;
|
|
117239
|
+
native: MouseEvent | any | any;
|
|
115757
117240
|
|
|
115758
117241
|
objectId: number | string;
|
|
115759
117242
|
|
|
115760
117243
|
type: "cell-pointerover";
|
|
115761
117244
|
}
|
|
115762
117245
|
|
|
117246
|
+
export interface FeatureTableViewModelColumnReorderEvent {
|
|
117247
|
+
type: "column-reorder";
|
|
117248
|
+
}
|
|
117249
|
+
|
|
115763
117250
|
/**
|
|
115764
117251
|
* An array of objects containing a column's name and sort direction.
|
|
115765
117252
|
*
|
|
@@ -116008,7 +117495,7 @@ declare namespace __esri {
|
|
|
116008
117495
|
*/
|
|
116009
117496
|
direction: "asc" | "desc";
|
|
116010
117497
|
/**
|
|
116011
|
-
* The sanitized
|
|
117498
|
+
* The sanitized [description](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#description) string, describing the purpose of each column.
|
|
116012
117499
|
*
|
|
116013
117500
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#effectiveDescription)
|
|
116014
117501
|
*/
|
|
@@ -116094,7 +117581,7 @@ declare namespace __esri {
|
|
|
116094
117581
|
*/
|
|
116095
117582
|
readonly menuConfig: ColumnTableMenuConfig;
|
|
116096
117583
|
/**
|
|
116097
|
-
* Indicates whether the
|
|
117584
|
+
* Indicates whether the column's menu is currently open.
|
|
116098
117585
|
*
|
|
116099
117586
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#menuIsOpen)
|
|
116100
117587
|
*/
|
|
@@ -116122,7 +117609,7 @@ declare namespace __esri {
|
|
|
116122
117609
|
*/
|
|
116123
117610
|
sortable: boolean;
|
|
116124
117611
|
/**
|
|
116125
|
-
*
|
|
117612
|
+
* The [timeZone](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#timeZone) of the parent table widget.
|
|
116126
117613
|
*
|
|
116127
117614
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#tableTimeZone)
|
|
116128
117615
|
*/
|
|
@@ -116206,7 +117693,7 @@ declare namespace __esri {
|
|
|
116206
117693
|
*/
|
|
116207
117694
|
direction?: "asc" | "desc";
|
|
116208
117695
|
/**
|
|
116209
|
-
* The sanitized
|
|
117696
|
+
* The sanitized [description](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#description) string, describing the purpose of each column.
|
|
116210
117697
|
*
|
|
116211
117698
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#effectiveDescription)
|
|
116212
117699
|
*/
|
|
@@ -116282,7 +117769,7 @@ declare namespace __esri {
|
|
|
116282
117769
|
*/
|
|
116283
117770
|
sortable?: boolean;
|
|
116284
117771
|
/**
|
|
116285
|
-
*
|
|
117772
|
+
* The [timeZone](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#timeZone) of the parent table widget.
|
|
116286
117773
|
*
|
|
116287
117774
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#tableTimeZone)
|
|
116288
117775
|
*/
|
|
@@ -116360,6 +117847,26 @@ declare namespace __esri {
|
|
|
116360
117847
|
|
|
116361
117848
|
export type FormatFunction = (params: any) => string | number | HTMLElement;
|
|
116362
117849
|
|
|
117850
|
+
/**
|
|
117851
|
+
* The related records for the associated feature used in the [Columns's](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#formatFunction) and [FieldColumn's](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FieldColumn.html#FieldValueFormatFunction) `formatFunction`.
|
|
117852
|
+
*
|
|
117853
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
|
|
117854
|
+
*/
|
|
117855
|
+
export interface RelatedRecordInfo {
|
|
117856
|
+
/**
|
|
117857
|
+
* The ID of the relationship defined in the data source.
|
|
117858
|
+
*
|
|
117859
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
|
|
117860
|
+
*/
|
|
117861
|
+
relationshipId?: string;
|
|
117862
|
+
/**
|
|
117863
|
+
* The number of related records associated with the feature.
|
|
117864
|
+
*
|
|
117865
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
|
|
117866
|
+
*/
|
|
117867
|
+
count?: number;
|
|
117868
|
+
}
|
|
117869
|
+
|
|
116363
117870
|
export interface GroupColumn extends Accessor, Column {}
|
|
116364
117871
|
|
|
116365
117872
|
export class GroupColumn {
|
|
@@ -116743,7 +118250,7 @@ declare namespace __esri {
|
|
|
116743
118250
|
*/
|
|
116744
118251
|
required: boolean;
|
|
116745
118252
|
/**
|
|
116746
|
-
* The
|
|
118253
|
+
* The type of column that the template represents.
|
|
116747
118254
|
*
|
|
116748
118255
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplate.html#type)
|
|
116749
118256
|
*/
|
|
@@ -116903,13 +118410,13 @@ declare namespace __esri {
|
|
|
116903
118410
|
*/
|
|
116904
118411
|
textWrap: boolean;
|
|
116905
118412
|
/**
|
|
116906
|
-
*
|
|
118413
|
+
* The time zone of the specific column.
|
|
116907
118414
|
*
|
|
116908
118415
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#timeZone)
|
|
116909
118416
|
*/
|
|
116910
118417
|
timeZone: string;
|
|
116911
118418
|
/**
|
|
116912
|
-
* The
|
|
118419
|
+
* The type of column that the template represents.
|
|
116913
118420
|
*
|
|
116914
118421
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#type)
|
|
116915
118422
|
*/
|
|
@@ -117058,7 +118565,7 @@ declare namespace __esri {
|
|
|
117058
118565
|
*/
|
|
117059
118566
|
textWrap?: boolean;
|
|
117060
118567
|
/**
|
|
117061
|
-
*
|
|
118568
|
+
* The time zone of the specific column.
|
|
117062
118569
|
*
|
|
117063
118570
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#timeZone)
|
|
117064
118571
|
*/
|
|
@@ -117117,7 +118624,7 @@ declare namespace __esri {
|
|
|
117117
118624
|
*/
|
|
117118
118625
|
required: boolean;
|
|
117119
118626
|
/**
|
|
117120
|
-
* The
|
|
118627
|
+
* The type of column that the template represents.
|
|
117121
118628
|
*
|
|
117122
118629
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-FieldColumnTemplate.html#type)
|
|
117123
118630
|
*/
|
|
@@ -117173,7 +118680,7 @@ declare namespace __esri {
|
|
|
117173
118680
|
*/
|
|
117174
118681
|
columnTemplates: (FieldColumnTemplate | GroupColumnTemplate)[];
|
|
117175
118682
|
/**
|
|
117176
|
-
* The
|
|
118683
|
+
* The type of column that the template represents.
|
|
117177
118684
|
*
|
|
117178
118685
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#type)
|
|
117179
118686
|
*/
|
|
@@ -117242,13 +118749,27 @@ declare namespace __esri {
|
|
|
117242
118749
|
|
|
117243
118750
|
index: number;
|
|
117244
118751
|
|
|
117245
|
-
native: MouseEvent;
|
|
118752
|
+
native: MouseEvent | any | any;
|
|
117246
118753
|
|
|
117247
118754
|
objectId: number | string;
|
|
117248
118755
|
|
|
117249
118756
|
type: "cell-click";
|
|
117250
118757
|
}
|
|
117251
118758
|
|
|
118759
|
+
export interface FeatureTableCellDblclickEvent {
|
|
118760
|
+
feature: Graphic;
|
|
118761
|
+
|
|
118762
|
+
fieldName: string;
|
|
118763
|
+
|
|
118764
|
+
index: number;
|
|
118765
|
+
|
|
118766
|
+
native: MouseEvent | any | any;
|
|
118767
|
+
|
|
118768
|
+
objectId: number | string;
|
|
118769
|
+
|
|
118770
|
+
type: "cell-dblclick";
|
|
118771
|
+
}
|
|
118772
|
+
|
|
117252
118773
|
export interface FeatureTableCellKeydownEvent {
|
|
117253
118774
|
feature: Graphic;
|
|
117254
118775
|
|
|
@@ -117256,7 +118777,7 @@ declare namespace __esri {
|
|
|
117256
118777
|
|
|
117257
118778
|
index: number;
|
|
117258
118779
|
|
|
117259
|
-
native: any;
|
|
118780
|
+
native: MouseEvent | any | any;
|
|
117260
118781
|
|
|
117261
118782
|
objectId: number | string;
|
|
117262
118783
|
|
|
@@ -117270,7 +118791,7 @@ declare namespace __esri {
|
|
|
117270
118791
|
|
|
117271
118792
|
index: number;
|
|
117272
118793
|
|
|
117273
|
-
native: any;
|
|
118794
|
+
native: MouseEvent | any | any;
|
|
117274
118795
|
|
|
117275
118796
|
objectId: number | string;
|
|
117276
118797
|
|
|
@@ -117284,7 +118805,7 @@ declare namespace __esri {
|
|
|
117284
118805
|
|
|
117285
118806
|
index: number;
|
|
117286
118807
|
|
|
117287
|
-
native: any;
|
|
118808
|
+
native: MouseEvent | any | any;
|
|
117288
118809
|
|
|
117289
118810
|
objectId: number | string;
|
|
117290
118811
|
|
|
@@ -117403,7 +118924,7 @@ declare namespace __esri {
|
|
|
117403
118924
|
*/
|
|
117404
118925
|
header?: boolean;
|
|
117405
118926
|
/**
|
|
117406
|
-
* Indicates whether to display the feature table's layer switch drop down menu.
|
|
118927
|
+
* _(Since 4.30)_ Indicates whether to display the feature table's layer switch drop down menu.
|
|
117407
118928
|
*
|
|
117408
118929
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#VisibleElements)
|
|
117409
118930
|
*/
|
|
@@ -123384,6 +124905,12 @@ declare namespace __esri {
|
|
|
123384
124905
|
*/
|
|
123385
124906
|
view: MapView;
|
|
123386
124907
|
|
|
124908
|
+
/**
|
|
124909
|
+
* Returns a CustomTemplate with the specified `id`.
|
|
124910
|
+
*
|
|
124911
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#getLayoutTemplateById)
|
|
124912
|
+
*/
|
|
124913
|
+
getLayoutTemplateById(id: string): CustomTemplate;
|
|
123387
124914
|
/**
|
|
123388
124915
|
* This method should be called to load the view model's printing resources.
|
|
123389
124916
|
*
|
|
@@ -128357,19 +129884,23 @@ declare namespace __esri {
|
|
|
128357
129884
|
*/
|
|
128358
129885
|
layerListToggleLayersButton?: boolean;
|
|
128359
129886
|
/**
|
|
128360
|
-
*
|
|
129887
|
+
* _Since 4.30_.
|
|
128361
129888
|
*
|
|
128362
129889
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
|
|
128363
129890
|
*/
|
|
128364
|
-
|
|
129891
|
+
gridEnabledToggle?: boolean;
|
|
128365
129892
|
/**
|
|
128366
|
-
*
|
|
129893
|
+
* _Since 4.30_.
|
|
128367
129894
|
*
|
|
128368
129895
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
|
|
128369
129896
|
*/
|
|
128370
129897
|
gridControls?: boolean;
|
|
128371
|
-
|
|
128372
|
-
|
|
129898
|
+
/**
|
|
129899
|
+
* _Since 4.30_.
|
|
129900
|
+
*
|
|
129901
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
|
|
129902
|
+
*/
|
|
129903
|
+
gridControlsElements?: SketchVisibleElementsSnappingControlsElementsGridControlsElements;
|
|
128373
129904
|
}
|
|
128374
129905
|
|
|
128375
129906
|
export interface SketchVisibleElementsSnappingControlsElementsGridControlsElements {
|
|
@@ -131190,7 +132721,7 @@ declare namespace __esri {
|
|
|
131190
132721
|
|
|
131191
132722
|
export class GridControls extends Widget {
|
|
131192
132723
|
/**
|
|
131193
|
-
* GridControls
|
|
132724
|
+
* The `GridControls` can be configured using the [visibleElements](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#visibleElements) below.
|
|
131194
132725
|
*
|
|
131195
132726
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html)
|
|
131196
132727
|
*/
|
|
@@ -131280,7 +132811,7 @@ declare namespace __esri {
|
|
|
131280
132811
|
|
|
131281
132812
|
export class GridControlsViewModel extends Accessor {
|
|
131282
132813
|
/**
|
|
131283
|
-
* Provides the logic for the [GridControls](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html)
|
|
132814
|
+
* Provides the logic for the [GridControls](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html).
|
|
131284
132815
|
*
|
|
131285
132816
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html)
|
|
131286
132817
|
*/
|
|
@@ -131292,13 +132823,19 @@ declare namespace __esri {
|
|
|
131292
132823
|
*
|
|
131293
132824
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#displayEnabled)
|
|
131294
132825
|
*/
|
|
131295
|
-
displayEnabled: boolean;
|
|
132826
|
+
readonly displayEnabled: boolean;
|
|
131296
132827
|
/**
|
|
131297
132828
|
* Returns `true` if the grid is set to scale dynamically.
|
|
131298
132829
|
*
|
|
131299
132830
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling)
|
|
131300
132831
|
*/
|
|
131301
132832
|
dynamicScaling: boolean;
|
|
132833
|
+
/**
|
|
132834
|
+
* Returns the effective spacing of grid lines after applying the [dynamicScaling](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling) setting at the current view scale.
|
|
132835
|
+
*
|
|
132836
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#effectiveSpacingAfterDynamicScaling)
|
|
132837
|
+
*/
|
|
132838
|
+
readonly effectiveSpacingAfterDynamicScaling: number;
|
|
131302
132839
|
/**
|
|
131303
132840
|
* Sets the color used for grid display.
|
|
131304
132841
|
*
|
|
@@ -131310,7 +132847,13 @@ declare namespace __esri {
|
|
|
131310
132847
|
*
|
|
131311
132848
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridControlsEnabled)
|
|
131312
132849
|
*/
|
|
131313
|
-
gridControlsEnabled: boolean;
|
|
132850
|
+
readonly gridControlsEnabled: boolean;
|
|
132851
|
+
/**
|
|
132852
|
+
* True if the grid is currently not displayed (and therefore also not a valid snap target), because [dynamicScaling](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling) is off and the grid cells are too small to render at the current scale.
|
|
132853
|
+
*
|
|
132854
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridOutOfScale)
|
|
132855
|
+
*/
|
|
132856
|
+
readonly gridOutOfScale: boolean;
|
|
131314
132857
|
/**
|
|
131315
132858
|
* Sets the interactive placement state, either starting or ending a draw operation that implicitly adjusts the grid.
|
|
131316
132859
|
*
|
|
@@ -131325,6 +132868,12 @@ declare namespace __esri {
|
|
|
131325
132868
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#majorLineInterval)
|
|
131326
132869
|
*/
|
|
131327
132870
|
majorLineInterval: number;
|
|
132871
|
+
/**
|
|
132872
|
+
* True if the spacing input should be shown for the current view.
|
|
132873
|
+
*
|
|
132874
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#numericSpacingInputShouldBeVisible)
|
|
132875
|
+
*/
|
|
132876
|
+
readonly numericSpacingInputShouldBeVisible: boolean;
|
|
131328
132877
|
/**
|
|
131329
132878
|
* Determines the behavior of the grid when the map's viewpoint is rotated.
|
|
131330
132879
|
*
|
|
@@ -131383,12 +132932,6 @@ declare namespace __esri {
|
|
|
131383
132932
|
}
|
|
131384
132933
|
|
|
131385
132934
|
interface GridControlsViewModelProperties {
|
|
131386
|
-
/**
|
|
131387
|
-
* Returns `true` if the grid is enabled for display.
|
|
131388
|
-
*
|
|
131389
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#displayEnabled)
|
|
131390
|
-
*/
|
|
131391
|
-
displayEnabled?: boolean;
|
|
131392
132935
|
/**
|
|
131393
132936
|
* Returns `true` if the grid is set to scale dynamically.
|
|
131394
132937
|
*
|
|
@@ -131401,12 +132944,6 @@ declare namespace __esri {
|
|
|
131401
132944
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridColor)
|
|
131402
132945
|
*/
|
|
131403
132946
|
gridColor?: Color;
|
|
131404
|
-
/**
|
|
131405
|
-
* Returns `true` if the grid is in a valid state for manually setting grid properties or starting an interactive placement.
|
|
131406
|
-
*
|
|
131407
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridControlsEnabled)
|
|
131408
|
-
*/
|
|
131409
|
-
gridControlsEnabled?: boolean;
|
|
131410
132947
|
/**
|
|
131411
132948
|
* Sets the interactive placement state, either starting or ending a draw operation that implicitly adjusts the grid.
|
|
131412
132949
|
*
|
|
@@ -131489,7 +133026,7 @@ declare namespace __esri {
|
|
|
131489
133026
|
*/
|
|
131490
133027
|
export interface GridControlsVisibleElements {
|
|
131491
133028
|
/**
|
|
131492
|
-
*
|
|
133029
|
+
* Indicates whether to display the buttons to change the color of the grid.
|
|
131493
133030
|
*
|
|
131494
133031
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
|
|
131495
133032
|
*/
|
|
@@ -131507,25 +133044,25 @@ declare namespace __esri {
|
|
|
131507
133044
|
*/
|
|
131508
133045
|
gridEnabledToggle?: boolean;
|
|
131509
133046
|
/**
|
|
131510
|
-
* Indicates whether to display the `
|
|
133047
|
+
* Indicates whether to display the `numericInputs`.
|
|
131511
133048
|
*
|
|
131512
133049
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
|
|
131513
133050
|
*/
|
|
131514
|
-
|
|
133051
|
+
numericInputs?: boolean;
|
|
131515
133052
|
/**
|
|
131516
|
-
* Indicates whether to display the `
|
|
133053
|
+
* Indicates whether to display the `gridSnapEnabledToggle`.
|
|
131517
133054
|
*
|
|
131518
133055
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
|
|
131519
133056
|
*/
|
|
131520
133057
|
gridSnapEnabledToggle?: boolean;
|
|
131521
133058
|
/**
|
|
131522
|
-
* Indicates whether to display the `
|
|
133059
|
+
* Indicates whether to display the `lineIntervalInput`.
|
|
131523
133060
|
*
|
|
131524
133061
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
|
|
131525
133062
|
*/
|
|
131526
133063
|
lineIntervalInput?: boolean;
|
|
131527
133064
|
/**
|
|
131528
|
-
*
|
|
133065
|
+
* Indicates whether to display a notice when the grid is not visible because it is out of scale and dynamic scaling is turned off.
|
|
131529
133066
|
*
|
|
131530
133067
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
|
|
131531
133068
|
*/
|
|
@@ -131670,6 +133207,24 @@ declare namespace __esri {
|
|
|
131670
133207
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
|
|
131671
133208
|
*/
|
|
131672
133209
|
featureEnabledToggle?: boolean;
|
|
133210
|
+
/**
|
|
133211
|
+
* _Since 4.30_.
|
|
133212
|
+
*
|
|
133213
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
|
|
133214
|
+
*/
|
|
133215
|
+
gridControls?: boolean;
|
|
133216
|
+
/**
|
|
133217
|
+
* _Since 4.30_.
|
|
133218
|
+
*
|
|
133219
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
|
|
133220
|
+
*/
|
|
133221
|
+
gridControlsElements?: GridControlsVisibleElements;
|
|
133222
|
+
/**
|
|
133223
|
+
* _Since 4.30_.
|
|
133224
|
+
*
|
|
133225
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
|
|
133226
|
+
*/
|
|
133227
|
+
gridEnabledToggle?: boolean;
|
|
131673
133228
|
/**
|
|
131674
133229
|
* Indicates whether to display the header.
|
|
131675
133230
|
*
|
|
@@ -135097,6 +136652,74 @@ declare namespace __esri {
|
|
|
135097
136652
|
graphic: Graphic;
|
|
135098
136653
|
}
|
|
135099
136654
|
|
|
136655
|
+
export class UtilityNetworkTraceAnalysisViewModel {
|
|
136656
|
+
/**
|
|
136657
|
+
* Displays execution errors.
|
|
136658
|
+
*
|
|
136659
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#executionError)
|
|
136660
|
+
*/
|
|
136661
|
+
readonly executionError: "trace-error";
|
|
136662
|
+
/**
|
|
136663
|
+
* Displays an error if loading fails.
|
|
136664
|
+
*
|
|
136665
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#loadError)
|
|
136666
|
+
*/
|
|
136667
|
+
readonly loadError: "no-utility-network" | "no-view" | "sceneView-not-supported";
|
|
136668
|
+
/**
|
|
136669
|
+
* The viewModel's state.
|
|
136670
|
+
*
|
|
136671
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#state)
|
|
136672
|
+
*/
|
|
136673
|
+
readonly state: "disabled" | "executing" | "failed" | "loading" | "ready";
|
|
136674
|
+
/**
|
|
136675
|
+
* Determines the utility network to use.
|
|
136676
|
+
*
|
|
136677
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#utilityNetwork)
|
|
136678
|
+
*/
|
|
136679
|
+
utilityNetwork: UtilityNetwork;
|
|
136680
|
+
/**
|
|
136681
|
+
* The view from which the widget will operate.
|
|
136682
|
+
*
|
|
136683
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#view)
|
|
136684
|
+
*/
|
|
136685
|
+
view: MapView;
|
|
136686
|
+
|
|
136687
|
+
/**
|
|
136688
|
+
* Method used to execute a trace using a named trace configuration.
|
|
136689
|
+
*
|
|
136690
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#executeNamedTraceConfiguration)
|
|
136691
|
+
*/
|
|
136692
|
+
executeNamedTraceConfiguration(parameters: NamedTraceConfigurationParameters): Promise<TraceResult>;
|
|
136693
|
+
|
|
136694
|
+
constructor(properties?: any);
|
|
136695
|
+
}
|
|
136696
|
+
|
|
136697
|
+
/**
|
|
136698
|
+
* Object used to execute a trace using a named trace configuration.
|
|
136699
|
+
*
|
|
136700
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
|
|
136701
|
+
*/
|
|
136702
|
+
export interface NamedTraceConfigurationParameters {
|
|
136703
|
+
/**
|
|
136704
|
+
* The globalId of the named trace configuration.
|
|
136705
|
+
*
|
|
136706
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
|
|
136707
|
+
*/
|
|
136708
|
+
namedTraceConfigurationGlobalId: string;
|
|
136709
|
+
/**
|
|
136710
|
+
* The desired out [SpatialReference](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-SpatialReference.html) of the trace.
|
|
136711
|
+
*
|
|
136712
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
|
|
136713
|
+
*/
|
|
136714
|
+
outSpatialReference?: SpatialReference;
|
|
136715
|
+
/**
|
|
136716
|
+
* To perform the trace analytic, users can optionally supply a list of locations in forms of globalIds (UUID) and terminals.
|
|
136717
|
+
*
|
|
136718
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
|
|
136719
|
+
*/
|
|
136720
|
+
traceLocations?: TraceLocation[];
|
|
136721
|
+
}
|
|
136722
|
+
|
|
135100
136723
|
export class UtilityNetworkValidateTopology extends Widget {
|
|
135101
136724
|
/**
|
|
135102
136725
|
* The UtilityNetworkValidateTopology widget class, functioning as a part of the ArcGIS Maps SDK for JavaScript, simplifies the process of validating a DirtyArea within a utility network.
|
|
@@ -135724,7 +137347,7 @@ declare namespace __esri {
|
|
|
135724
137347
|
*
|
|
135725
137348
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionIdentifierLookup)
|
|
135726
137349
|
*/
|
|
135727
|
-
versionIdentifierLookup: globalThis.Map<string,
|
|
137350
|
+
versionIdentifierLookup: globalThis.Map<string, versionManagementVersionManagementServiceVersionIdentifier>;
|
|
135728
137351
|
/**
|
|
135729
137352
|
* Contains information about versions contained in version management service such as name, guid, etc.
|
|
135730
137353
|
*
|
|
@@ -135836,7 +137459,7 @@ declare namespace __esri {
|
|
|
135836
137459
|
*
|
|
135837
137460
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionIdentifierLookup)
|
|
135838
137461
|
*/
|
|
135839
|
-
versionIdentifierLookup?: globalThis.Map<string,
|
|
137462
|
+
versionIdentifierLookup?: globalThis.Map<string, versionManagementVersionManagementServiceVersionIdentifier>;
|
|
135840
137463
|
/**
|
|
135841
137464
|
* Contains information about versions contained in version management service such as name, guid, etc.
|
|
135842
137465
|
*
|
|
@@ -135886,7 +137509,7 @@ declare namespace __esri {
|
|
|
135886
137509
|
*
|
|
135887
137510
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#AlterVersionParameters)
|
|
135888
137511
|
*/
|
|
135889
|
-
versionIdentifier:
|
|
137512
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
|
|
135890
137513
|
/**
|
|
135891
137514
|
* The new owner name of the version.
|
|
135892
137515
|
*
|
|
@@ -135982,7 +137605,7 @@ declare namespace __esri {
|
|
|
135982
137605
|
*
|
|
135983
137606
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#VersionInfo)
|
|
135984
137607
|
*/
|
|
135985
|
-
versionIdentifier:
|
|
137608
|
+
versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
|
|
135986
137609
|
/**
|
|
135987
137610
|
* Description of the version.
|
|
135988
137611
|
*
|
|
@@ -136630,13 +138253,6 @@ declare namespace __esri {
|
|
|
136630
138253
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#when)
|
|
136631
138254
|
*/
|
|
136632
138255
|
when(callback?: Function, errback?: Function): Promise<any>;
|
|
136633
|
-
|
|
136634
|
-
/**
|
|
136635
|
-
* By default, widgets are rendered into a `div` element and, because of that, the root node returned by the `render` method needs to be a `div`.
|
|
136636
|
-
*
|
|
136637
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#vnodeSelector)
|
|
136638
|
-
*/
|
|
136639
|
-
static vnodeSelector: void;
|
|
136640
138256
|
}
|
|
136641
138257
|
|
|
136642
138258
|
interface WidgetProperties {
|
|
@@ -140808,6 +142424,11 @@ declare module "esri/layers/LineOfSightLayer" {
|
|
|
140808
142424
|
export = LineOfSightLayer;
|
|
140809
142425
|
}
|
|
140810
142426
|
|
|
142427
|
+
declare module "esri/layers/LinkChartLayer" {
|
|
142428
|
+
import LinkChartLayer = __esri.LinkChartLayer;
|
|
142429
|
+
export = LinkChartLayer;
|
|
142430
|
+
}
|
|
142431
|
+
|
|
140811
142432
|
declare module "esri/layers/MapImageLayer" {
|
|
140812
142433
|
import MapImageLayer = __esri.MapImageLayer;
|
|
140813
142434
|
export = MapImageLayer;
|
|
@@ -141058,11 +142679,6 @@ declare module "esri/layers/support/PublishingInfo" {
|
|
|
141058
142679
|
export = PublishingInfo;
|
|
141059
142680
|
}
|
|
141060
142681
|
|
|
141061
|
-
declare module "esri/layers/support/SceneFilter" {
|
|
141062
|
-
import SceneFilter = __esri.SceneFilter;
|
|
141063
|
-
export = SceneFilter;
|
|
141064
|
-
}
|
|
141065
|
-
|
|
141066
142682
|
declare module "esri/layers/support/RangeDomain" {
|
|
141067
142683
|
import RangeDomain = __esri.RangeDomain;
|
|
141068
142684
|
export = RangeDomain;
|
|
@@ -141103,6 +142719,11 @@ declare module "esri/layers/support/RouteSymbols" {
|
|
|
141103
142719
|
export = RouteSymbols;
|
|
141104
142720
|
}
|
|
141105
142721
|
|
|
142722
|
+
declare module "esri/layers/support/SceneFilter" {
|
|
142723
|
+
import SceneFilter = __esri.SceneFilter;
|
|
142724
|
+
export = SceneFilter;
|
|
142725
|
+
}
|
|
142726
|
+
|
|
141106
142727
|
declare module "esri/layers/support/SceneModification" {
|
|
141107
142728
|
import SceneModification = __esri.SceneModification;
|
|
141108
142729
|
export = SceneModification;
|
|
@@ -141228,16 +142849,16 @@ declare module "esri/layers/UnsupportedLayer" {
|
|
|
141228
142849
|
export = UnsupportedLayer;
|
|
141229
142850
|
}
|
|
141230
142851
|
|
|
141231
|
-
declare module "esri/layers/VideoLayer" {
|
|
141232
|
-
import VideoLayer = __esri.VideoLayer;
|
|
141233
|
-
export = VideoLayer;
|
|
141234
|
-
}
|
|
141235
|
-
|
|
141236
142852
|
declare module "esri/layers/VectorTileLayer" {
|
|
141237
142853
|
import VectorTileLayer = __esri.VectorTileLayer;
|
|
141238
142854
|
export = VectorTileLayer;
|
|
141239
142855
|
}
|
|
141240
142856
|
|
|
142857
|
+
declare module "esri/layers/VideoLayer" {
|
|
142858
|
+
import VideoLayer = __esri.VideoLayer;
|
|
142859
|
+
export = VideoLayer;
|
|
142860
|
+
}
|
|
142861
|
+
|
|
141241
142862
|
declare module "esri/layers/VoxelLayer" {
|
|
141242
142863
|
import VoxelLayer = __esri.VoxelLayer;
|
|
141243
142864
|
export = VoxelLayer;
|
|
@@ -142048,26 +143669,6 @@ declare module "esri/rest/support/ImageBoundaryResult" {
|
|
|
142048
143669
|
export = ImageBoundaryResult;
|
|
142049
143670
|
}
|
|
142050
143671
|
|
|
142051
|
-
declare module "esri/rest/support/ImageHistogramParameters" {
|
|
142052
|
-
import ImageHistogramParameters = __esri.ImageHistogramParameters;
|
|
142053
|
-
export = ImageHistogramParameters;
|
|
142054
|
-
}
|
|
142055
|
-
|
|
142056
|
-
declare module "esri/rest/support/ImageIdentifyParameters" {
|
|
142057
|
-
import ImageIdentifyParameters = __esri.ImageIdentifyParameters;
|
|
142058
|
-
export = ImageIdentifyParameters;
|
|
142059
|
-
}
|
|
142060
|
-
|
|
142061
|
-
declare module "esri/rest/support/ImageIdentifyResult" {
|
|
142062
|
-
import ImageIdentifyResult = __esri.ImageIdentifyResult;
|
|
142063
|
-
export = ImageIdentifyResult;
|
|
142064
|
-
}
|
|
142065
|
-
|
|
142066
|
-
declare module "esri/rest/support/ImageInspectionInfo" {
|
|
142067
|
-
import ImageInspectionInfo = __esri.ImageInspectionInfo;
|
|
142068
|
-
export = ImageInspectionInfo;
|
|
142069
|
-
}
|
|
142070
|
-
|
|
142071
143672
|
declare module "esri/rest/support/ImageDistanceParameters" {
|
|
142072
143673
|
import ImageDistanceParameters = __esri.ImageDistanceParameters;
|
|
142073
143674
|
export = ImageDistanceParameters;
|
|
@@ -142103,6 +143704,26 @@ declare module "esri/rest/support/ImageHeightResult" {
|
|
|
142103
143704
|
export = ImageHeightResult;
|
|
142104
143705
|
}
|
|
142105
143706
|
|
|
143707
|
+
declare module "esri/rest/support/ImageHistogramParameters" {
|
|
143708
|
+
import ImageHistogramParameters = __esri.ImageHistogramParameters;
|
|
143709
|
+
export = ImageHistogramParameters;
|
|
143710
|
+
}
|
|
143711
|
+
|
|
143712
|
+
declare module "esri/rest/support/ImageIdentifyParameters" {
|
|
143713
|
+
import ImageIdentifyParameters = __esri.ImageIdentifyParameters;
|
|
143714
|
+
export = ImageIdentifyParameters;
|
|
143715
|
+
}
|
|
143716
|
+
|
|
143717
|
+
declare module "esri/rest/support/ImageIdentifyResult" {
|
|
143718
|
+
import ImageIdentifyResult = __esri.ImageIdentifyResult;
|
|
143719
|
+
export = ImageIdentifyResult;
|
|
143720
|
+
}
|
|
143721
|
+
|
|
143722
|
+
declare module "esri/rest/support/ImageInspectionInfo" {
|
|
143723
|
+
import ImageInspectionInfo = __esri.ImageInspectionInfo;
|
|
143724
|
+
export = ImageInspectionInfo;
|
|
143725
|
+
}
|
|
143726
|
+
|
|
142106
143727
|
declare module "esri/rest/support/ImageParameters" {
|
|
142107
143728
|
import ImageParameters = __esri.ImageParameters;
|
|
142108
143729
|
export = ImageParameters;
|
|
@@ -142143,16 +143764,16 @@ declare module "esri/rest/support/ImageSampleResult" {
|
|
|
142143
143764
|
export = ImageSampleResult;
|
|
142144
143765
|
}
|
|
142145
143766
|
|
|
142146
|
-
declare module "esri/rest/support/ImageToMapParameters" {
|
|
142147
|
-
import ImageToMapParameters = __esri.ImageToMapParameters;
|
|
142148
|
-
export = ImageToMapParameters;
|
|
142149
|
-
}
|
|
142150
|
-
|
|
142151
143767
|
declare module "esri/rest/support/ImageToMapMultirayParameters" {
|
|
142152
143768
|
import ImageToMapMultirayParameters = __esri.ImageToMapMultirayParameters;
|
|
142153
143769
|
export = ImageToMapMultirayParameters;
|
|
142154
143770
|
}
|
|
142155
143771
|
|
|
143772
|
+
declare module "esri/rest/support/ImageToMapParameters" {
|
|
143773
|
+
import ImageToMapParameters = __esri.ImageToMapParameters;
|
|
143774
|
+
export = ImageToMapParameters;
|
|
143775
|
+
}
|
|
143776
|
+
|
|
142156
143777
|
declare module "esri/rest/support/ImageUrlParameters" {
|
|
142157
143778
|
import ImageUrlParameters = __esri.ImageUrlParameters;
|
|
142158
143779
|
export = ImageUrlParameters;
|
|
@@ -142193,16 +143814,16 @@ declare module "esri/rest/support/MeasureAreaFromImageResult" {
|
|
|
142193
143814
|
export = MeasureAreaFromImageResult;
|
|
142194
143815
|
}
|
|
142195
143816
|
|
|
142196
|
-
declare module "esri/rest/support/MeasureLengthFromImageResult" {
|
|
142197
|
-
import MeasureLengthFromImageResult = __esri.MeasureLengthFromImageResult;
|
|
142198
|
-
export = MeasureLengthFromImageResult;
|
|
142199
|
-
}
|
|
142200
|
-
|
|
142201
143817
|
declare module "esri/rest/support/MeasureFromImageParameters" {
|
|
142202
143818
|
import MeasureFromImageParameters = __esri.MeasureFromImageParameters;
|
|
142203
143819
|
export = MeasureFromImageParameters;
|
|
142204
143820
|
}
|
|
142205
143821
|
|
|
143822
|
+
declare module "esri/rest/support/MeasureLengthFromImageResult" {
|
|
143823
|
+
import MeasureLengthFromImageResult = __esri.MeasureLengthFromImageResult;
|
|
143824
|
+
export = MeasureLengthFromImageResult;
|
|
143825
|
+
}
|
|
143826
|
+
|
|
142206
143827
|
declare module "esri/rest/support/MultipartColorRamp" {
|
|
142207
143828
|
import MultipartColorRamp = __esri.MultipartColorRamp;
|
|
142208
143829
|
export = MultipartColorRamp;
|
|
@@ -142943,6 +144564,11 @@ declare module "esri/views/layers/WFSLayerView" {
|
|
|
142943
144564
|
export = WFSLayerView;
|
|
142944
144565
|
}
|
|
142945
144566
|
|
|
144567
|
+
declare module "esri/views/LinkChartView" {
|
|
144568
|
+
import LinkChartView = __esri.LinkChartView;
|
|
144569
|
+
export = LinkChartView;
|
|
144570
|
+
}
|
|
144571
|
+
|
|
142946
144572
|
declare module "esri/views/Magnifier" {
|
|
142947
144573
|
import Magnifier = __esri.Magnifier;
|
|
142948
144574
|
export = Magnifier;
|
|
@@ -143093,6 +144719,11 @@ declare module "esri/WebDocument2D" {
|
|
|
143093
144719
|
export = WebDocument2D;
|
|
143094
144720
|
}
|
|
143095
144721
|
|
|
144722
|
+
declare module "esri/WebLinkChart" {
|
|
144723
|
+
import WebLinkChart = __esri.WebLinkChart;
|
|
144724
|
+
export = WebLinkChart;
|
|
144725
|
+
}
|
|
144726
|
+
|
|
143096
144727
|
declare module "esri/WebMap" {
|
|
143097
144728
|
import WebMap = __esri.WebMap;
|
|
143098
144729
|
export = WebMap;
|
|
@@ -144063,6 +145694,11 @@ declare module "esri/widgets/UtilityNetworkTrace" {
|
|
|
144063
145694
|
export = UtilityNetworkTrace;
|
|
144064
145695
|
}
|
|
144065
145696
|
|
|
145697
|
+
declare module "esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel" {
|
|
145698
|
+
import UtilityNetworkTraceAnalysisViewModel = __esri.UtilityNetworkTraceAnalysisViewModel;
|
|
145699
|
+
export = UtilityNetworkTraceAnalysisViewModel;
|
|
145700
|
+
}
|
|
145701
|
+
|
|
144066
145702
|
declare module "esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel" {
|
|
144067
145703
|
import UtilityNetworkTraceViewModel = __esri.UtilityNetworkTraceViewModel;
|
|
144068
145704
|
export = UtilityNetworkTraceViewModel;
|
|
@@ -144208,16 +145844,16 @@ declare module "esri/layers/mixins/CustomParametersMixin" {
|
|
|
144208
145844
|
export = CustomParametersMixin;
|
|
144209
145845
|
}
|
|
144210
145846
|
|
|
144211
|
-
declare module "esri/layers/mixins/FeatureLayerBase" {
|
|
144212
|
-
import FeatureLayerBase = __esri.FeatureLayerBase;
|
|
144213
|
-
export = FeatureLayerBase;
|
|
144214
|
-
}
|
|
144215
|
-
|
|
144216
145847
|
declare module "esri/layers/mixins/FeatureEffectLayer" {
|
|
144217
145848
|
import FeatureEffectLayer = __esri.FeatureEffectLayer;
|
|
144218
145849
|
export = FeatureEffectLayer;
|
|
144219
145850
|
}
|
|
144220
145851
|
|
|
145852
|
+
declare module "esri/layers/mixins/FeatureLayerBase" {
|
|
145853
|
+
import FeatureLayerBase = __esri.FeatureLayerBase;
|
|
145854
|
+
export = FeatureLayerBase;
|
|
145855
|
+
}
|
|
145856
|
+
|
|
144221
145857
|
declare module "esri/layers/mixins/FeatureReductionLayer" {
|
|
144222
145858
|
import FeatureReductionLayer = __esri.FeatureReductionLayer;
|
|
144223
145859
|
export = FeatureReductionLayer;
|
|
@@ -144303,16 +145939,16 @@ declare module "esri/renderers/mixins/VisualVariablesMixin" {
|
|
|
144303
145939
|
export = VisualVariablesMixin;
|
|
144304
145940
|
}
|
|
144305
145941
|
|
|
144306
|
-
declare module "esri/rest/support/BaseImageMeasureResult" {
|
|
144307
|
-
import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
|
|
144308
|
-
export = BaseImageMeasureResult;
|
|
144309
|
-
}
|
|
144310
|
-
|
|
144311
145942
|
declare module "esri/rest/support/BaseImageMeasureParameters" {
|
|
144312
145943
|
import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
|
|
144313
145944
|
export = BaseImageMeasureParameters;
|
|
144314
145945
|
}
|
|
144315
145946
|
|
|
145947
|
+
declare module "esri/rest/support/BaseImageMeasureResult" {
|
|
145948
|
+
import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
|
|
145949
|
+
export = BaseImageMeasureResult;
|
|
145950
|
+
}
|
|
145951
|
+
|
|
144316
145952
|
declare module "esri/rest/support/QueryMixin" {
|
|
144317
145953
|
type QueryMixin = __esri.QueryMixin;
|
|
144318
145954
|
export = QueryMixin;
|
|
@@ -144343,16 +145979,16 @@ declare module "esri/views/PopupView" {
|
|
|
144343
145979
|
export = PopupView;
|
|
144344
145980
|
}
|
|
144345
145981
|
|
|
144346
|
-
declare module "esri/views/layers/HighlightLayerViewMixin" {
|
|
144347
|
-
type HighlightLayerViewMixin = __esri.HighlightLayerViewMixin;
|
|
144348
|
-
export = HighlightLayerViewMixin;
|
|
144349
|
-
}
|
|
144350
|
-
|
|
144351
145982
|
declare module "esri/views/layers/FeatureLayerViewMixin" {
|
|
144352
145983
|
type FeatureLayerViewMixin = __esri.FeatureLayerViewMixin;
|
|
144353
145984
|
export = FeatureLayerViewMixin;
|
|
144354
145985
|
}
|
|
144355
145986
|
|
|
145987
|
+
declare module "esri/views/layers/HighlightLayerViewMixin" {
|
|
145988
|
+
type HighlightLayerViewMixin = __esri.HighlightLayerViewMixin;
|
|
145989
|
+
export = HighlightLayerViewMixin;
|
|
145990
|
+
}
|
|
145991
|
+
|
|
144356
145992
|
declare module "esri/widgets/FeatureForm/EditableInput" {
|
|
144357
145993
|
import EditableInput = __esri.EditableInput;
|
|
144358
145994
|
export = EditableInput;
|
|
@@ -144483,11 +146119,26 @@ declare module "esri/geometry/operators/affineTransformOperator" {
|
|
|
144483
146119
|
export = affineTransformOperator;
|
|
144484
146120
|
}
|
|
144485
146121
|
|
|
146122
|
+
declare module "esri/geometry/operators/alphaShapeOperator" {
|
|
146123
|
+
import alphaShapeOperator = __esri.alphaShapeOperator;
|
|
146124
|
+
export = alphaShapeOperator;
|
|
146125
|
+
}
|
|
146126
|
+
|
|
144486
146127
|
declare module "esri/geometry/operators/areaOperator" {
|
|
144487
146128
|
import areaOperator = __esri.areaOperator;
|
|
144488
146129
|
export = areaOperator;
|
|
144489
146130
|
}
|
|
144490
146131
|
|
|
146132
|
+
declare module "esri/geometry/operators/autoCompleteOperator" {
|
|
146133
|
+
import autoCompleteOperator = __esri.autoCompleteOperator;
|
|
146134
|
+
export = autoCompleteOperator;
|
|
146135
|
+
}
|
|
146136
|
+
|
|
146137
|
+
declare module "esri/geometry/operators/boundaryOperator" {
|
|
146138
|
+
import boundaryOperator = __esri.boundaryOperator;
|
|
146139
|
+
export = boundaryOperator;
|
|
146140
|
+
}
|
|
146141
|
+
|
|
144491
146142
|
declare module "esri/geometry/operators/bufferOperator" {
|
|
144492
146143
|
import bufferOperator = __esri.bufferOperator;
|
|
144493
146144
|
export = bufferOperator;
|
|
@@ -144533,16 +146184,16 @@ declare module "esri/geometry/operators/differenceOperator" {
|
|
|
144533
146184
|
export = differenceOperator;
|
|
144534
146185
|
}
|
|
144535
146186
|
|
|
144536
|
-
declare module "esri/geometry/operators/distanceOperator" {
|
|
144537
|
-
import distanceOperator = __esri.distanceOperator;
|
|
144538
|
-
export = distanceOperator;
|
|
144539
|
-
}
|
|
144540
|
-
|
|
144541
146187
|
declare module "esri/geometry/operators/disjointOperator" {
|
|
144542
146188
|
import disjointOperator = __esri.disjointOperator;
|
|
144543
146189
|
export = disjointOperator;
|
|
144544
146190
|
}
|
|
144545
146191
|
|
|
146192
|
+
declare module "esri/geometry/operators/distanceOperator" {
|
|
146193
|
+
import distanceOperator = __esri.distanceOperator;
|
|
146194
|
+
export = distanceOperator;
|
|
146195
|
+
}
|
|
146196
|
+
|
|
144546
146197
|
declare module "esri/geometry/operators/equalsOperator" {
|
|
144547
146198
|
import equalsOperator = __esri.equalsOperator;
|
|
144548
146199
|
export = equalsOperator;
|
|
@@ -144553,11 +146204,21 @@ declare module "esri/geometry/operators/extendOperator" {
|
|
|
144553
146204
|
export = extendOperator;
|
|
144554
146205
|
}
|
|
144555
146206
|
|
|
146207
|
+
declare module "esri/geometry/operators/generalizeOperator" {
|
|
146208
|
+
import generalizeOperator = __esri.generalizeOperator;
|
|
146209
|
+
export = generalizeOperator;
|
|
146210
|
+
}
|
|
146211
|
+
|
|
144556
146212
|
declare module "esri/geometry/operators/geodesicBufferOperator" {
|
|
144557
146213
|
import geodesicBufferOperator = __esri.geodesicBufferOperator;
|
|
144558
146214
|
export = geodesicBufferOperator;
|
|
144559
146215
|
}
|
|
144560
146216
|
|
|
146217
|
+
declare module "esri/geometry/operators/geodesicProximityOperator" {
|
|
146218
|
+
import geodesicProximityOperator = __esri.geodesicProximityOperator;
|
|
146219
|
+
export = geodesicProximityOperator;
|
|
146220
|
+
}
|
|
146221
|
+
|
|
144561
146222
|
declare module "esri/geometry/operators/geodeticAreaOperator" {
|
|
144562
146223
|
import geodeticAreaOperator = __esri.geodeticAreaOperator;
|
|
144563
146224
|
export = geodeticAreaOperator;
|
|
@@ -144578,16 +146239,16 @@ declare module "esri/geometry/operators/geodeticLengthOperator" {
|
|
|
144578
146239
|
export = geodeticLengthOperator;
|
|
144579
146240
|
}
|
|
144580
146241
|
|
|
144581
|
-
declare module "esri/geometry/operators/generalizeOperator" {
|
|
144582
|
-
import generalizeOperator = __esri.generalizeOperator;
|
|
144583
|
-
export = generalizeOperator;
|
|
144584
|
-
}
|
|
144585
|
-
|
|
144586
146242
|
declare module "esri/geometry/operators/graphicBufferOperator" {
|
|
144587
146243
|
import graphicBufferOperator = __esri.graphicBufferOperator;
|
|
144588
146244
|
export = graphicBufferOperator;
|
|
144589
146245
|
}
|
|
144590
146246
|
|
|
146247
|
+
declare module "esri/geometry/operators/integrateOperator" {
|
|
146248
|
+
import integrateOperator = __esri.integrateOperator;
|
|
146249
|
+
export = integrateOperator;
|
|
146250
|
+
}
|
|
146251
|
+
|
|
144591
146252
|
declare module "esri/geometry/operators/intersectionOperator" {
|
|
144592
146253
|
import intersectionOperator = __esri.intersectionOperator;
|
|
144593
146254
|
export = intersectionOperator;
|
|
@@ -144598,11 +146259,41 @@ declare module "esri/geometry/operators/intersectsOperator" {
|
|
|
144598
146259
|
export = intersectsOperator;
|
|
144599
146260
|
}
|
|
144600
146261
|
|
|
146262
|
+
declare module "esri/geometry/operators/isNearOperator" {
|
|
146263
|
+
import isNearOperator = __esri.isNearOperator;
|
|
146264
|
+
export = isNearOperator;
|
|
146265
|
+
}
|
|
146266
|
+
|
|
146267
|
+
declare module "esri/geometry/operators/labelPointOperator" {
|
|
146268
|
+
import labelPointOperator = __esri.labelPointOperator;
|
|
146269
|
+
export = labelPointOperator;
|
|
146270
|
+
}
|
|
146271
|
+
|
|
144601
146272
|
declare module "esri/geometry/operators/lengthOperator" {
|
|
144602
146273
|
import lengthOperator = __esri.lengthOperator;
|
|
144603
146274
|
export = lengthOperator;
|
|
144604
146275
|
}
|
|
144605
146276
|
|
|
146277
|
+
declare module "esri/geometry/operators/linesToPolygonsOperator" {
|
|
146278
|
+
import linesToPolygonsOperator = __esri.linesToPolygonsOperator;
|
|
146279
|
+
export = linesToPolygonsOperator;
|
|
146280
|
+
}
|
|
146281
|
+
|
|
146282
|
+
declare module "esri/geometry/operators/locateBetweenOperator" {
|
|
146283
|
+
import locateBetweenOperator = __esri.locateBetweenOperator;
|
|
146284
|
+
export = locateBetweenOperator;
|
|
146285
|
+
}
|
|
146286
|
+
|
|
146287
|
+
declare module "esri/geometry/operators/minimumBoundingCircleOperator" {
|
|
146288
|
+
import minimumBoundingCircleOperator = __esri.minimumBoundingCircleOperator;
|
|
146289
|
+
export = minimumBoundingCircleOperator;
|
|
146290
|
+
}
|
|
146291
|
+
|
|
146292
|
+
declare module "esri/geometry/operators/multiPartToSinglePartOperator" {
|
|
146293
|
+
import multiPartToSinglePartOperator = __esri.multiPartToSinglePartOperator;
|
|
146294
|
+
export = multiPartToSinglePartOperator;
|
|
146295
|
+
}
|
|
146296
|
+
|
|
144606
146297
|
declare module "esri/geometry/operators/offsetOperator" {
|
|
144607
146298
|
import offsetOperator = __esri.offsetOperator;
|
|
144608
146299
|
export = offsetOperator;
|
|
@@ -144613,6 +146304,16 @@ declare module "esri/geometry/operators/overlapsOperator" {
|
|
|
144613
146304
|
export = overlapsOperator;
|
|
144614
146305
|
}
|
|
144615
146306
|
|
|
146307
|
+
declare module "esri/geometry/operators/polygonOverlayOperator" {
|
|
146308
|
+
import polygonOverlayOperator = __esri.polygonOverlayOperator;
|
|
146309
|
+
export = polygonOverlayOperator;
|
|
146310
|
+
}
|
|
146311
|
+
|
|
146312
|
+
declare module "esri/geometry/operators/polygonSlicerOperator" {
|
|
146313
|
+
import polygonSlicerOperator = __esri.polygonSlicerOperator;
|
|
146314
|
+
export = polygonSlicerOperator;
|
|
146315
|
+
}
|
|
146316
|
+
|
|
144616
146317
|
declare module "esri/geometry/operators/proximityOperator" {
|
|
144617
146318
|
import proximityOperator = __esri.proximityOperator;
|
|
144618
146319
|
export = proximityOperator;
|
|
@@ -144623,6 +146324,11 @@ declare module "esri/geometry/operators/relateOperator" {
|
|
|
144623
146324
|
export = relateOperator;
|
|
144624
146325
|
}
|
|
144625
146326
|
|
|
146327
|
+
declare module "esri/geometry/operators/reshapeOperator" {
|
|
146328
|
+
import reshapeOperator = __esri.reshapeOperator;
|
|
146329
|
+
export = reshapeOperator;
|
|
146330
|
+
}
|
|
146331
|
+
|
|
144626
146332
|
declare module "esri/geometry/operators/simplifyOperator" {
|
|
144627
146333
|
import simplifyOperator = __esri.simplifyOperator;
|
|
144628
146334
|
export = simplifyOperator;
|
|
@@ -144698,6 +146404,16 @@ declare module "esri/layers/ogc/wcsUtils" {
|
|
|
144698
146404
|
export = wcsUtils;
|
|
144699
146405
|
}
|
|
144700
146406
|
|
|
146407
|
+
declare module "esri/layers/orientedImagery/transformations/worldToImage" {
|
|
146408
|
+
import worldToImage = __esri.worldToImage;
|
|
146409
|
+
export = worldToImage;
|
|
146410
|
+
}
|
|
146411
|
+
|
|
146412
|
+
declare module "esri/layers/orientedImagery/transformations/imageToWorld" {
|
|
146413
|
+
import imageToWorld = __esri.imageToWorld;
|
|
146414
|
+
export = imageToWorld;
|
|
146415
|
+
}
|
|
146416
|
+
|
|
144701
146417
|
declare module "esri/layers/support/arcadeUtils" {
|
|
144702
146418
|
import arcadeUtils = __esri.arcadeUtils;
|
|
144703
146419
|
export = arcadeUtils;
|
|
@@ -145018,6 +146734,11 @@ declare module "esri/smartMapping/renderers/univariateColorSize" {
|
|
|
145018
146734
|
export = univariateColorSize;
|
|
145019
146735
|
}
|
|
145020
146736
|
|
|
146737
|
+
declare module "esri/smartMapping/renderers/support/rendererUtils" {
|
|
146738
|
+
import rendererUtils = __esri.rendererUtils;
|
|
146739
|
+
export = rendererUtils;
|
|
146740
|
+
}
|
|
146741
|
+
|
|
145021
146742
|
declare module "esri/smartMapping/statistics/classBreaks" {
|
|
145022
146743
|
import statisticsClassBreaks = __esri.statisticsClassBreaks;
|
|
145023
146744
|
export = statisticsClassBreaks;
|
|
@@ -145228,11 +146949,21 @@ declare module "esri/applications/Components/basemapUtils" {
|
|
|
145228
146949
|
export = basemapUtils;
|
|
145229
146950
|
}
|
|
145230
146951
|
|
|
146952
|
+
declare module "esri/applications/Components/CollectionFlattener" {
|
|
146953
|
+
import CollectionFlattener = __esri.CollectionFlattener;
|
|
146954
|
+
export = CollectionFlattener;
|
|
146955
|
+
}
|
|
146956
|
+
|
|
145231
146957
|
declare module "esri/applications/Components/drawUtils" {
|
|
145232
146958
|
import drawUtils = __esri.drawUtils;
|
|
145233
146959
|
export = drawUtils;
|
|
145234
146960
|
}
|
|
145235
146961
|
|
|
146962
|
+
declare module "esri/applications/Components/fontUtils" {
|
|
146963
|
+
import fontUtils = __esri.fontUtils;
|
|
146964
|
+
export = fontUtils;
|
|
146965
|
+
}
|
|
146966
|
+
|
|
145236
146967
|
declare module "esri/applications/Components/getDefaultUnits" {
|
|
145237
146968
|
import getDefaultUnits = __esri.getDefaultUnits;
|
|
145238
146969
|
export = getDefaultUnits;
|
|
@@ -145288,6 +147019,11 @@ declare module "esri/applications/MapViewer/mediaUtils" {
|
|
|
145288
147019
|
export = mediaUtils;
|
|
145289
147020
|
}
|
|
145290
147021
|
|
|
147022
|
+
declare module "esri/applications/MapViewer/templateUtils" {
|
|
147023
|
+
import templateUtils = __esri.templateUtils;
|
|
147024
|
+
export = templateUtils;
|
|
147025
|
+
}
|
|
147026
|
+
|
|
145291
147027
|
declare module "esri/applications/SceneViewer/colorUtils" {
|
|
145292
147028
|
import SceneViewerColorUtils = __esri.SceneViewerColorUtils;
|
|
145293
147029
|
export = SceneViewerColorUtils;
|