@arcgis/core-adapter 4.34.0-next.99 → 5.0.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +2 -14
- package/dist/index.cjs +209 -398
- package/dist/index.d.cts +40 -70
- package/dist/index.d.ts +40 -70
- package/dist/index.js +209 -398
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -225,28 +225,6 @@ async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
|
225
225
|
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
226
|
return new ModConstructor(properties);
|
|
227
227
|
}
|
|
228
|
-
async function importAnalysisElevationProfileElevationProfileGroundLine() {
|
|
229
|
-
if (isAMD) {
|
|
230
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileGroundLine");
|
|
231
|
-
}
|
|
232
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileGroundLine.js");
|
|
233
|
-
return isDefaultModule(module) ? module.default : module;
|
|
234
|
-
}
|
|
235
|
-
async function newAnalysisElevationProfileElevationProfileGroundLine(properties) {
|
|
236
|
-
const ModConstructor = await importAnalysisElevationProfileElevationProfileGroundLine();
|
|
237
|
-
return new ModConstructor(properties);
|
|
238
|
-
}
|
|
239
|
-
async function importAnalysisElevationProfileElevationProfileInputLine() {
|
|
240
|
-
if (isAMD) {
|
|
241
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileInputLine");
|
|
242
|
-
}
|
|
243
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileInputLine.js");
|
|
244
|
-
return isDefaultModule(module) ? module.default : module;
|
|
245
|
-
}
|
|
246
|
-
async function newAnalysisElevationProfileElevationProfileInputLine(properties) {
|
|
247
|
-
const ModConstructor = await importAnalysisElevationProfileElevationProfileInputLine();
|
|
248
|
-
return new ModConstructor(properties);
|
|
249
|
-
}
|
|
250
228
|
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
251
229
|
if (isAMD) {
|
|
252
230
|
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
@@ -269,48 +247,59 @@ async function newAnalysisElevationProfileElevationProfileLineChartOptions(prope
|
|
|
269
247
|
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
270
248
|
return new ModConstructor(properties);
|
|
271
249
|
}
|
|
272
|
-
async function
|
|
250
|
+
async function importAnalysisElevationProfileElevationProfileLineGround() {
|
|
273
251
|
if (isAMD) {
|
|
274
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineGround");
|
|
275
253
|
}
|
|
276
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineGround.js");
|
|
277
255
|
return isDefaultModule(module) ? module.default : module;
|
|
278
256
|
}
|
|
279
|
-
async function
|
|
280
|
-
const ModConstructor = await
|
|
257
|
+
async function newAnalysisElevationProfileElevationProfileLineGround(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineGround();
|
|
281
259
|
return new ModConstructor(properties);
|
|
282
260
|
}
|
|
283
|
-
async function
|
|
261
|
+
async function importAnalysisElevationProfileElevationProfileLineInput() {
|
|
284
262
|
if (isAMD) {
|
|
285
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineInput");
|
|
286
264
|
}
|
|
287
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineInput.js");
|
|
288
266
|
return isDefaultModule(module) ? module.default : module;
|
|
289
267
|
}
|
|
290
|
-
async function
|
|
291
|
-
const ModConstructor = await
|
|
268
|
+
async function newAnalysisElevationProfileElevationProfileLineInput(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineInput();
|
|
292
270
|
return new ModConstructor(properties);
|
|
293
271
|
}
|
|
294
|
-
async function
|
|
272
|
+
async function importAnalysisElevationProfileElevationProfileLineQuery() {
|
|
295
273
|
if (isAMD) {
|
|
296
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineQuery");
|
|
297
275
|
}
|
|
298
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineQuery.js");
|
|
299
277
|
return isDefaultModule(module) ? module.default : module;
|
|
300
278
|
}
|
|
301
|
-
async function
|
|
302
|
-
const ModConstructor = await
|
|
279
|
+
async function newAnalysisElevationProfileElevationProfileLineQuery(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineQuery();
|
|
303
281
|
return new ModConstructor(properties);
|
|
304
282
|
}
|
|
305
|
-
async function
|
|
283
|
+
async function importAnalysisElevationProfileElevationProfileLineScene() {
|
|
306
284
|
if (isAMD) {
|
|
307
|
-
return await window.$arcgis.import("esri/analysis/ElevationProfile/
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineScene");
|
|
308
286
|
}
|
|
309
|
-
const module = await import("@arcgis/core/analysis/ElevationProfile/
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineScene.js");
|
|
310
288
|
return isDefaultModule(module) ? module.default : module;
|
|
311
289
|
}
|
|
312
|
-
async function
|
|
313
|
-
const ModConstructor = await
|
|
290
|
+
async function newAnalysisElevationProfileElevationProfileLineScene(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineScene();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
314
303
|
return new ModConstructor(properties);
|
|
315
304
|
}
|
|
316
305
|
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
@@ -346,6 +335,28 @@ async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(prope
|
|
|
346
335
|
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
347
336
|
return new ModConstructor(properties);
|
|
348
337
|
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
347
|
+
return new ModConstructor(properties);
|
|
348
|
+
}
|
|
349
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
349
360
|
async function importCoreAccessor() {
|
|
350
361
|
if (isAMD) {
|
|
351
362
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -973,215 +984,6 @@ async function newGraphicGraphicOrigin() {
|
|
|
973
984
|
const ModConstructor = await importGraphicGraphicOrigin();
|
|
974
985
|
return new ModConstructor();
|
|
975
986
|
}
|
|
976
|
-
async function importGraphicBuildingGraphicOrigin() {
|
|
977
|
-
if (isAMD) {
|
|
978
|
-
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
979
|
-
}
|
|
980
|
-
const module = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
981
|
-
return isDefaultModule(module) ? module.default : module;
|
|
982
|
-
}
|
|
983
|
-
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
984
|
-
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
985
|
-
return new ModConstructor(sublayer);
|
|
986
|
-
}
|
|
987
|
-
async function importGraphicCatalogGraphicOrigin() {
|
|
988
|
-
if (isAMD) {
|
|
989
|
-
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
990
|
-
}
|
|
991
|
-
const module = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
992
|
-
return isDefaultModule(module) ? module.default : module;
|
|
993
|
-
}
|
|
994
|
-
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
995
|
-
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
996
|
-
return new ModConstructor(layer);
|
|
997
|
-
}
|
|
998
|
-
async function importGraphicCSVGraphicOrigin() {
|
|
999
|
-
if (isAMD) {
|
|
1000
|
-
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1001
|
-
}
|
|
1002
|
-
const module = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1003
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
-
}
|
|
1005
|
-
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1006
|
-
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1007
|
-
return new ModConstructor(layer);
|
|
1008
|
-
}
|
|
1009
|
-
async function importGraphicFeatureGraphicOrigin() {
|
|
1010
|
-
if (isAMD) {
|
|
1011
|
-
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1012
|
-
}
|
|
1013
|
-
const module = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1014
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1015
|
-
}
|
|
1016
|
-
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1017
|
-
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1018
|
-
return new ModConstructor(layer);
|
|
1019
|
-
}
|
|
1020
|
-
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1021
|
-
if (isAMD) {
|
|
1022
|
-
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1023
|
-
}
|
|
1024
|
-
const module = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1025
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1026
|
-
}
|
|
1027
|
-
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1028
|
-
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1029
|
-
return new ModConstructor(layer);
|
|
1030
|
-
}
|
|
1031
|
-
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1032
|
-
if (isAMD) {
|
|
1033
|
-
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1034
|
-
}
|
|
1035
|
-
const module = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1036
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1037
|
-
}
|
|
1038
|
-
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1039
|
-
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1040
|
-
return new ModConstructor(layer);
|
|
1041
|
-
}
|
|
1042
|
-
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
1043
|
-
if (isAMD) {
|
|
1044
|
-
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
1045
|
-
}
|
|
1046
|
-
const module = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
1047
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1048
|
-
}
|
|
1049
|
-
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
1050
|
-
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
1051
|
-
return new ModConstructor(layer);
|
|
1052
|
-
}
|
|
1053
|
-
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
1054
|
-
if (isAMD) {
|
|
1055
|
-
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
1056
|
-
}
|
|
1057
|
-
const module = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
1058
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1059
|
-
}
|
|
1060
|
-
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
1061
|
-
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
1062
|
-
return new ModConstructor(layer);
|
|
1063
|
-
}
|
|
1064
|
-
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1065
|
-
if (isAMD) {
|
|
1066
|
-
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1067
|
-
}
|
|
1068
|
-
const module = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1069
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1070
|
-
}
|
|
1071
|
-
async function newGraphicKnowledgeGraphGraphicOrigin(layer, sublayer) {
|
|
1072
|
-
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1073
|
-
return new ModConstructor(layer, sublayer);
|
|
1074
|
-
}
|
|
1075
|
-
async function importGraphicMapImageGraphicOrigin() {
|
|
1076
|
-
if (isAMD) {
|
|
1077
|
-
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1078
|
-
}
|
|
1079
|
-
const module = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1080
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1081
|
-
}
|
|
1082
|
-
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1083
|
-
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1084
|
-
return new ModConstructor(layer, sublayer);
|
|
1085
|
-
}
|
|
1086
|
-
async function importGraphicMapNotesGraphicOrigin() {
|
|
1087
|
-
if (isAMD) {
|
|
1088
|
-
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1089
|
-
}
|
|
1090
|
-
const module = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1091
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1092
|
-
}
|
|
1093
|
-
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1094
|
-
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1095
|
-
return new ModConstructor(layer, sublayer);
|
|
1096
|
-
}
|
|
1097
|
-
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1098
|
-
if (isAMD) {
|
|
1099
|
-
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1100
|
-
}
|
|
1101
|
-
const module = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1102
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1103
|
-
}
|
|
1104
|
-
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1105
|
-
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1106
|
-
return new ModConstructor(layer);
|
|
1107
|
-
}
|
|
1108
|
-
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1109
|
-
if (isAMD) {
|
|
1110
|
-
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1111
|
-
}
|
|
1112
|
-
const module = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1113
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1114
|
-
}
|
|
1115
|
-
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1116
|
-
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1117
|
-
return new ModConstructor(layer);
|
|
1118
|
-
}
|
|
1119
|
-
async function importGraphicParquetGraphicOrigin() {
|
|
1120
|
-
if (isAMD) {
|
|
1121
|
-
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1122
|
-
}
|
|
1123
|
-
const module = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1124
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1125
|
-
}
|
|
1126
|
-
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1127
|
-
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1128
|
-
return new ModConstructor(layer);
|
|
1129
|
-
}
|
|
1130
|
-
async function importGraphicPointCloudGraphicOrigin() {
|
|
1131
|
-
if (isAMD) {
|
|
1132
|
-
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1133
|
-
}
|
|
1134
|
-
const module = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1135
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1136
|
-
}
|
|
1137
|
-
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1138
|
-
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1139
|
-
return new ModConstructor(layer);
|
|
1140
|
-
}
|
|
1141
|
-
async function importGraphicSceneGraphicOrigin() {
|
|
1142
|
-
if (isAMD) {
|
|
1143
|
-
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1144
|
-
}
|
|
1145
|
-
const module = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1146
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1147
|
-
}
|
|
1148
|
-
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1149
|
-
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1150
|
-
return new ModConstructor(layer);
|
|
1151
|
-
}
|
|
1152
|
-
async function importGraphicStreamGraphicOrigin() {
|
|
1153
|
-
if (isAMD) {
|
|
1154
|
-
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1155
|
-
}
|
|
1156
|
-
const module = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1157
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1158
|
-
}
|
|
1159
|
-
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1160
|
-
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1161
|
-
return new ModConstructor(layer);
|
|
1162
|
-
}
|
|
1163
|
-
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1164
|
-
if (isAMD) {
|
|
1165
|
-
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1166
|
-
}
|
|
1167
|
-
const module = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1168
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1169
|
-
}
|
|
1170
|
-
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1171
|
-
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1172
|
-
return new ModConstructor(sublayer);
|
|
1173
|
-
}
|
|
1174
|
-
async function importGraphicTileGraphicOrigin() {
|
|
1175
|
-
if (isAMD) {
|
|
1176
|
-
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1177
|
-
}
|
|
1178
|
-
const module = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1179
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1180
|
-
}
|
|
1181
|
-
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1182
|
-
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1183
|
-
return new ModConstructor(layer, sublayer);
|
|
1184
|
-
}
|
|
1185
987
|
async function importGraphicVectorTileGraphicOrigin() {
|
|
1186
988
|
if (isAMD) {
|
|
1187
989
|
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
@@ -1193,28 +995,6 @@ async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
|
1193
995
|
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1194
996
|
return new ModConstructor(layer, layerId, layerIndex);
|
|
1195
997
|
}
|
|
1196
|
-
async function importGraphicVoxelGraphicOrigin() {
|
|
1197
|
-
if (isAMD) {
|
|
1198
|
-
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1199
|
-
}
|
|
1200
|
-
const module = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1201
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1202
|
-
}
|
|
1203
|
-
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1204
|
-
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1205
|
-
return new ModConstructor(layer);
|
|
1206
|
-
}
|
|
1207
|
-
async function importGraphicWFSGraphicOrigin() {
|
|
1208
|
-
if (isAMD) {
|
|
1209
|
-
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1210
|
-
}
|
|
1211
|
-
const module = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1212
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1213
|
-
}
|
|
1214
|
-
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1215
|
-
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1216
|
-
return new ModConstructor(layer);
|
|
1217
|
-
}
|
|
1218
998
|
async function importAttributeBinsGraphic() {
|
|
1219
999
|
if (isAMD) {
|
|
1220
1000
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1842,6 +1622,17 @@ async function newLayersSupportCornersGeoreference(properties) {
|
|
|
1842
1622
|
const ModConstructor = await importLayersSupportCornersGeoreference();
|
|
1843
1623
|
return new ModConstructor(properties);
|
|
1844
1624
|
}
|
|
1625
|
+
async function importLayersSupportDateTimeFieldFormat() {
|
|
1626
|
+
if (isAMD) {
|
|
1627
|
+
return await window.$arcgis.import("esri/layers/support/DateTimeFieldFormat");
|
|
1628
|
+
}
|
|
1629
|
+
const module = await import("@arcgis/core/layers/support/DateTimeFieldFormat.js");
|
|
1630
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1631
|
+
}
|
|
1632
|
+
async function newLayersSupportDateTimeFieldFormat(properties) {
|
|
1633
|
+
const ModConstructor = await importLayersSupportDateTimeFieldFormat();
|
|
1634
|
+
return new ModConstructor(properties);
|
|
1635
|
+
}
|
|
1845
1636
|
async function importLayersSupportDimensionalDefinition() {
|
|
1846
1637
|
if (isAMD) {
|
|
1847
1638
|
return await window.$arcgis.import("esri/layers/support/DimensionalDefinition");
|
|
@@ -2018,6 +1809,17 @@ async function newLayersSupportField(properties) {
|
|
|
2018
1809
|
const ModConstructor = await importLayersSupportField();
|
|
2019
1810
|
return new ModConstructor(properties);
|
|
2020
1811
|
}
|
|
1812
|
+
async function importLayersSupportFieldConfiguration() {
|
|
1813
|
+
if (isAMD) {
|
|
1814
|
+
return await window.$arcgis.import("esri/layers/support/FieldConfiguration");
|
|
1815
|
+
}
|
|
1816
|
+
const module = await import("@arcgis/core/layers/support/FieldConfiguration.js");
|
|
1817
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1818
|
+
}
|
|
1819
|
+
async function newLayersSupportFieldConfiguration(properties) {
|
|
1820
|
+
const ModConstructor = await importLayersSupportFieldConfiguration();
|
|
1821
|
+
return new ModConstructor(properties);
|
|
1822
|
+
}
|
|
2021
1823
|
async function importLayersSupportFieldsIndex() {
|
|
2022
1824
|
if (isAMD) {
|
|
2023
1825
|
return await window.$arcgis.import("esri/layers/support/FieldsIndex");
|
|
@@ -2161,6 +1963,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
2161
1963
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
2162
1964
|
return new ModConstructor(properties);
|
|
2163
1965
|
}
|
|
1966
|
+
async function importLayersSupportNumberFieldFormat() {
|
|
1967
|
+
if (isAMD) {
|
|
1968
|
+
return await window.$arcgis.import("esri/layers/support/NumberFieldFormat");
|
|
1969
|
+
}
|
|
1970
|
+
const module = await import("@arcgis/core/layers/support/NumberFieldFormat.js");
|
|
1971
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1972
|
+
}
|
|
1973
|
+
async function newLayersSupportNumberFieldFormat(properties) {
|
|
1974
|
+
const ModConstructor = await importLayersSupportNumberFieldFormat();
|
|
1975
|
+
return new ModConstructor(properties);
|
|
1976
|
+
}
|
|
2164
1977
|
async function importLayersSupportOrderByInfo() {
|
|
2165
1978
|
if (isAMD) {
|
|
2166
1979
|
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
@@ -5098,6 +4911,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
5098
4911
|
const ModConstructor = await importRestSupportJobInfo();
|
|
5099
4912
|
return new ModConstructor(properties);
|
|
5100
4913
|
}
|
|
4914
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4915
|
+
if (isAMD) {
|
|
4916
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4917
|
+
}
|
|
4918
|
+
const module = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4919
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4920
|
+
}
|
|
4921
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4922
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4923
|
+
return new ModConstructor(properties);
|
|
4924
|
+
}
|
|
5101
4925
|
async function importRestSupportLegendLayer() {
|
|
5102
4926
|
if (isAMD) {
|
|
5103
4927
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -6121,28 +5945,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
6121
5945
|
const ModConstructor = await importTimeTimeInterval();
|
|
6122
5946
|
return new ModConstructor(properties);
|
|
6123
5947
|
}
|
|
6124
|
-
async function importTimeExtent() {
|
|
6125
|
-
if (isAMD) {
|
|
6126
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
6127
|
-
}
|
|
6128
|
-
const module = await import("@arcgis/core/TimeExtent.js");
|
|
6129
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
-
}
|
|
6131
|
-
async function newTimeExtent(properties) {
|
|
6132
|
-
const ModConstructor = await importTimeExtent();
|
|
6133
|
-
return new ModConstructor(properties);
|
|
6134
|
-
}
|
|
6135
|
-
async function importTimeInterval() {
|
|
6136
|
-
if (isAMD) {
|
|
6137
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
6138
|
-
}
|
|
6139
|
-
const module = await import("@arcgis/core/TimeInterval.js");
|
|
6140
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
-
}
|
|
6142
|
-
async function newTimeInterval(properties) {
|
|
6143
|
-
const ModConstructor = await importTimeInterval();
|
|
6144
|
-
return new ModConstructor(properties);
|
|
6145
|
-
}
|
|
6146
5948
|
async function importVersionManagementVersioningState() {
|
|
6147
5949
|
if (isAMD) {
|
|
6148
5950
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -6209,6 +6011,17 @@ async function newViews2dViewState(properties) {
|
|
|
6209
6011
|
const ModConstructor = await importViews2dViewState();
|
|
6210
6012
|
return new ModConstructor(properties);
|
|
6211
6013
|
}
|
|
6014
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6015
|
+
if (isAMD) {
|
|
6016
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
6017
|
+
}
|
|
6018
|
+
const module = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
6019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
+
}
|
|
6021
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6022
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6023
|
+
return new ModConstructor(properties);
|
|
6024
|
+
}
|
|
6212
6025
|
async function importViews2dLayersBaseLayerView2D() {
|
|
6213
6026
|
if (isAMD) {
|
|
6214
6027
|
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
@@ -6330,6 +6143,28 @@ async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
|
6330
6143
|
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6331
6144
|
return new ModConstructor(properties);
|
|
6332
6145
|
}
|
|
6146
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementError() {
|
|
6147
|
+
if (isAMD) {
|
|
6148
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError");
|
|
6149
|
+
}
|
|
6150
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.js");
|
|
6151
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6152
|
+
}
|
|
6153
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementError(name, message, details) {
|
|
6154
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementError();
|
|
6155
|
+
return new ModConstructor(name, message, details);
|
|
6156
|
+
}
|
|
6157
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6158
|
+
if (isAMD) {
|
|
6159
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6160
|
+
}
|
|
6161
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6162
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6163
|
+
}
|
|
6164
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6165
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6166
|
+
return new ModConstructor(properties);
|
|
6167
|
+
}
|
|
6333
6168
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
6334
6169
|
if (isAMD) {
|
|
6335
6170
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -7980,6 +7815,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7980
7815
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7981
7816
|
return new ModConstructor(properties);
|
|
7982
7817
|
}
|
|
7818
|
+
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7819
|
+
if (isAMD) {
|
|
7820
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
7821
|
+
}
|
|
7822
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflow.js");
|
|
7823
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7824
|
+
}
|
|
7825
|
+
async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
7826
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7827
|
+
return new ModConstructor(properties);
|
|
7828
|
+
}
|
|
7983
7829
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7984
7830
|
if (isAMD) {
|
|
7985
7831
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -8343,39 +8189,6 @@ async function newWidgetsFeatureTableGridGroupColumn(properties) {
|
|
|
8343
8189
|
const ModConstructor = await importWidgetsFeatureTableGridGroupColumn();
|
|
8344
8190
|
return new ModConstructor(properties);
|
|
8345
8191
|
}
|
|
8346
|
-
async function importWidgetsFeatureTableGridSupportButtonMenu() {
|
|
8347
|
-
if (isAMD) {
|
|
8348
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenu");
|
|
8349
|
-
}
|
|
8350
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenu.js");
|
|
8351
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8352
|
-
}
|
|
8353
|
-
async function newWidgetsFeatureTableGridSupportButtonMenu(properties) {
|
|
8354
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenu();
|
|
8355
|
-
return new ModConstructor(properties);
|
|
8356
|
-
}
|
|
8357
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuItem() {
|
|
8358
|
-
if (isAMD) {
|
|
8359
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuItem");
|
|
8360
|
-
}
|
|
8361
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuItem.js");
|
|
8362
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8363
|
-
}
|
|
8364
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuItem(properties) {
|
|
8365
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuItem();
|
|
8366
|
-
return new ModConstructor(properties);
|
|
8367
|
-
}
|
|
8368
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuViewModel() {
|
|
8369
|
-
if (isAMD) {
|
|
8370
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuViewModel");
|
|
8371
|
-
}
|
|
8372
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuViewModel.js");
|
|
8373
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8374
|
-
}
|
|
8375
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties) {
|
|
8376
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
8377
|
-
return new ModConstructor(properties);
|
|
8378
|
-
}
|
|
8379
8192
|
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
8380
8193
|
if (isAMD) {
|
|
8381
8194
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
@@ -10044,6 +9857,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
10044
9857
|
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10045
9858
|
return isDefaultModule(module) ? module.default : module;
|
|
10046
9859
|
}
|
|
9860
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9861
|
+
if (isAMD) {
|
|
9862
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9863
|
+
}
|
|
9864
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9865
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9866
|
+
}
|
|
10047
9867
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
10048
9868
|
if (isAMD) {
|
|
10049
9869
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10268,13 +10088,6 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
10268
10088
|
const module = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
10269
10089
|
return isDefaultModule(module) ? module.default : module;
|
|
10270
10090
|
}
|
|
10271
|
-
async function importGraphicGraphicOrigins() {
|
|
10272
|
-
if (isAMD) {
|
|
10273
|
-
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10274
|
-
}
|
|
10275
|
-
const module = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10276
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10277
|
-
}
|
|
10278
10091
|
async function importIntl() {
|
|
10279
10092
|
if (isAMD) {
|
|
10280
10093
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10499,6 +10312,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10499
10312
|
const module = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10500
10313
|
return isDefaultModule(module) ? module.default : module;
|
|
10501
10314
|
}
|
|
10315
|
+
async function importRestLastMileDelivery() {
|
|
10316
|
+
if (isAMD) {
|
|
10317
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10318
|
+
}
|
|
10319
|
+
const module = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10320
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10321
|
+
}
|
|
10502
10322
|
async function importRestLocator() {
|
|
10503
10323
|
if (isAMD) {
|
|
10504
10324
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -11052,6 +10872,13 @@ async function importViewsSupportColorUtils() {
|
|
|
11052
10872
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
11053
10873
|
return isDefaultModule(module) ? module.default : module;
|
|
11054
10874
|
}
|
|
10875
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10876
|
+
if (isAMD) {
|
|
10877
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10878
|
+
}
|
|
10879
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10880
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10881
|
+
}
|
|
11055
10882
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
11056
10883
|
if (isAMD) {
|
|
11057
10884
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11066,6 +10893,13 @@ async function importWidgetsSupportWidget() {
|
|
|
11066
10893
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
11067
10894
|
return isDefaultModule(module) ? module.default : module;
|
|
11068
10895
|
}
|
|
10896
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10897
|
+
if (isAMD) {
|
|
10898
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10899
|
+
}
|
|
10900
|
+
const module = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10901
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10902
|
+
}
|
|
11069
10903
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
11070
10904
|
if (isAMD) {
|
|
11071
10905
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -11073,6 +10907,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
11073
10907
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
11074
10908
|
return isDefaultModule(module) ? module.default : module;
|
|
11075
10909
|
}
|
|
10910
|
+
async function importApplicationsComponentsArcadeEditorUtils() {
|
|
10911
|
+
if (isAMD) {
|
|
10912
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeEditorUtils");
|
|
10913
|
+
}
|
|
10914
|
+
const module = await import("@arcgis/core/applications/Components/arcadeEditorUtils.js");
|
|
10915
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10916
|
+
}
|
|
11076
10917
|
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
11077
10918
|
if (isAMD) {
|
|
11078
10919
|
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
@@ -11255,14 +11096,13 @@ export {
|
|
|
11255
11096
|
importAnalysisDimensionSimpleStyle,
|
|
11256
11097
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11257
11098
|
importAnalysisElevationProfileAnalysis,
|
|
11258
|
-
importAnalysisElevationProfileElevationProfileGroundLine,
|
|
11259
|
-
importAnalysisElevationProfileElevationProfileInputLine,
|
|
11260
11099
|
importAnalysisElevationProfileElevationProfileLine,
|
|
11261
11100
|
importAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
11101
|
+
importAnalysisElevationProfileElevationProfileLineGround,
|
|
11102
|
+
importAnalysisElevationProfileElevationProfileLineInput,
|
|
11103
|
+
importAnalysisElevationProfileElevationProfileLineQuery,
|
|
11104
|
+
importAnalysisElevationProfileElevationProfileLineScene,
|
|
11262
11105
|
importAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
11263
|
-
importAnalysisElevationProfileElevationProfileQueryLine,
|
|
11264
|
-
importAnalysisElevationProfileElevationProfileSceneLine,
|
|
11265
|
-
importAnalysisElevationProfileElevationProfileUnits,
|
|
11266
11106
|
importAnalysisElevationProfileElevationProfileViewOptions,
|
|
11267
11107
|
importAnalysisLengthDimension,
|
|
11268
11108
|
importAnalysisLineOfSightAnalysis,
|
|
@@ -11275,7 +11115,11 @@ export {
|
|
|
11275
11115
|
importAnalysisViewshedAnalysis,
|
|
11276
11116
|
importAnalysisVolumeMeasurementAnalysis,
|
|
11277
11117
|
importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
11118
|
+
importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
11119
|
+
importAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11120
|
+
importApplicationsComponentsActionUtils,
|
|
11278
11121
|
importApplicationsComponentsAnalysisUtils,
|
|
11122
|
+
importApplicationsComponentsArcadeEditorUtils,
|
|
11279
11123
|
importApplicationsComponentsArcadeFeatureUtils,
|
|
11280
11124
|
importApplicationsComponentsBasemapUtils,
|
|
11281
11125
|
importApplicationsComponentsDrawUtils,
|
|
@@ -11389,6 +11233,7 @@ export {
|
|
|
11389
11233
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
11390
11234
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
11391
11235
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
11236
|
+
importGeometryOperatorsGeodeticUtilsOperator,
|
|
11392
11237
|
importGeometryOperatorsGraphicBufferOperator,
|
|
11393
11238
|
importGeometryOperatorsIntegrateOperator,
|
|
11394
11239
|
importGeometryOperatorsIntersectionOperator,
|
|
@@ -11440,30 +11285,8 @@ export {
|
|
|
11440
11285
|
importGeometrySupportNormalizeUtils,
|
|
11441
11286
|
importGeometrySupportWebMercatorUtils,
|
|
11442
11287
|
importGraphic,
|
|
11443
|
-
importGraphicBuildingGraphicOrigin,
|
|
11444
|
-
importGraphicCSVGraphicOrigin,
|
|
11445
|
-
importGraphicCatalogGraphicOrigin,
|
|
11446
|
-
importGraphicFeatureGraphicOrigin,
|
|
11447
|
-
importGraphicGeoJSONGraphicOrigin,
|
|
11448
|
-
importGraphicGeoRSSGraphicOrigin,
|
|
11449
11288
|
importGraphicGraphicOrigin,
|
|
11450
|
-
importGraphicGraphicOrigins,
|
|
11451
|
-
importGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
11452
|
-
importGraphicIntegratedMeshGraphicOrigin,
|
|
11453
|
-
importGraphicKnowledgeGraphGraphicOrigin,
|
|
11454
|
-
importGraphicMapImageGraphicOrigin,
|
|
11455
|
-
importGraphicMapNotesGraphicOrigin,
|
|
11456
|
-
importGraphicOGCFeatureGraphicOrigin,
|
|
11457
|
-
importGraphicOrientedImageryGraphicOrigin,
|
|
11458
|
-
importGraphicParquetGraphicOrigin,
|
|
11459
|
-
importGraphicPointCloudGraphicOrigin,
|
|
11460
|
-
importGraphicSceneGraphicOrigin,
|
|
11461
|
-
importGraphicStreamGraphicOrigin,
|
|
11462
|
-
importGraphicSubtypeGroupGraphicOrigin,
|
|
11463
|
-
importGraphicTileGraphicOrigin,
|
|
11464
11289
|
importGraphicVectorTileGraphicOrigin,
|
|
11465
|
-
importGraphicVoxelGraphicOrigin,
|
|
11466
|
-
importGraphicWFSGraphicOrigin,
|
|
11467
11290
|
importGround,
|
|
11468
11291
|
importIdentityCredential,
|
|
11469
11292
|
importIdentityIdentityManager,
|
|
@@ -11529,6 +11352,7 @@ export {
|
|
|
11529
11352
|
importLayersSupportControlPointsGeoreference,
|
|
11530
11353
|
importLayersSupportCornersGeoreference,
|
|
11531
11354
|
importLayersSupportCsvUtils,
|
|
11355
|
+
importLayersSupportDateTimeFieldFormat,
|
|
11532
11356
|
importLayersSupportDimensionalDefinition,
|
|
11533
11357
|
importLayersSupportDisplayFilter,
|
|
11534
11358
|
importLayersSupportDisplayFilterInfo,
|
|
@@ -11545,6 +11369,7 @@ export {
|
|
|
11545
11369
|
importLayersSupportFeatureTemplate,
|
|
11546
11370
|
importLayersSupportFeatureType,
|
|
11547
11371
|
importLayersSupportField,
|
|
11372
|
+
importLayersSupportFieldConfiguration,
|
|
11548
11373
|
importLayersSupportFieldUtils,
|
|
11549
11374
|
importLayersSupportFieldsIndex,
|
|
11550
11375
|
importLayersSupportGeometryFieldsInfo,
|
|
@@ -11559,6 +11384,7 @@ export {
|
|
|
11559
11384
|
importLayersSupportMapImage,
|
|
11560
11385
|
importLayersSupportMosaicRule,
|
|
11561
11386
|
importLayersSupportMultidimensionalSubset,
|
|
11387
|
+
importLayersSupportNumberFieldFormat,
|
|
11562
11388
|
importLayersSupportOrderByInfo,
|
|
11563
11389
|
importLayersSupportParquetEncodingLocation,
|
|
11564
11390
|
importLayersSupportParquetEncodingWkb,
|
|
@@ -11763,6 +11589,7 @@ export {
|
|
|
11763
11589
|
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11764
11590
|
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11765
11591
|
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
11592
|
+
importRestLastMileDelivery,
|
|
11766
11593
|
importRestLocator,
|
|
11767
11594
|
importRestNetworkService,
|
|
11768
11595
|
importRestNetworksQueryAssociations,
|
|
@@ -11859,6 +11686,7 @@ export {
|
|
|
11859
11686
|
importRestSupportImageVolumeParameters,
|
|
11860
11687
|
importRestSupportImageVolumeResult,
|
|
11861
11688
|
importRestSupportJobInfo,
|
|
11689
|
+
importRestSupportLastMileDeliveryParameters,
|
|
11862
11690
|
importRestSupportLegendLayer,
|
|
11863
11691
|
importRestSupportLengthsParameters,
|
|
11864
11692
|
importRestSupportLinearUnit,
|
|
@@ -12009,8 +11837,6 @@ export {
|
|
|
12009
11837
|
importTablesElementsAttributeTableFieldElement,
|
|
12010
11838
|
importTablesElementsAttributeTableGroupElement,
|
|
12011
11839
|
importTablesElementsAttributeTableRelationshipElement,
|
|
12012
|
-
importTimeExtent,
|
|
12013
|
-
importTimeInterval,
|
|
12014
11840
|
importTimeTimeExtent,
|
|
12015
11841
|
importTimeTimeInterval,
|
|
12016
11842
|
importVersionManagementUtils,
|
|
@@ -12018,6 +11844,7 @@ export {
|
|
|
12018
11844
|
importVersionManagementVersionManagementService,
|
|
12019
11845
|
importVersionManagementVersioningState,
|
|
12020
11846
|
importViewpoint,
|
|
11847
|
+
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12021
11848
|
importViews2dLayersBaseLayerView2D,
|
|
12022
11849
|
importViews2dLayersBaseLayerViewGL2D,
|
|
12023
11850
|
importViews2dViewState,
|
|
@@ -12030,6 +11857,8 @@ export {
|
|
|
12030
11857
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
12031
11858
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
12032
11859
|
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11860
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
11861
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
12033
11862
|
importViews3dEnvironmentCloudyWeather,
|
|
12034
11863
|
importViews3dEnvironmentFoggyWeather,
|
|
12035
11864
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -12189,6 +12018,8 @@ export {
|
|
|
12189
12018
|
importWidgetsEditorCreateFeaturesWorkflowData,
|
|
12190
12019
|
importWidgetsEditorEditorViewModel,
|
|
12191
12020
|
importWidgetsEditorEdits,
|
|
12021
|
+
importWidgetsEditorSplitFeatureWorkflow,
|
|
12022
|
+
importWidgetsEditorSplitFeatureWorkflowData,
|
|
12192
12023
|
importWidgetsEditorSupportEditorItem,
|
|
12193
12024
|
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12194
12025
|
importWidgetsEditorUpdateWorkflow,
|
|
@@ -12219,9 +12050,6 @@ export {
|
|
|
12219
12050
|
importWidgetsFeatureTableFieldColumn,
|
|
12220
12051
|
importWidgetsFeatureTableGridColumn,
|
|
12221
12052
|
importWidgetsFeatureTableGridGroupColumn,
|
|
12222
|
-
importWidgetsFeatureTableGridSupportButtonMenu,
|
|
12223
|
-
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
12224
|
-
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
12225
12053
|
importWidgetsFeatureTableRelationshipColumn,
|
|
12226
12054
|
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
12227
12055
|
importWidgetsFeatureTableSupportAttachmentsViewOptions,
|
|
@@ -12357,14 +12185,13 @@ export {
|
|
|
12357
12185
|
newAnalysisDimensionSimpleStyle,
|
|
12358
12186
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12359
12187
|
newAnalysisElevationProfileAnalysis,
|
|
12360
|
-
newAnalysisElevationProfileElevationProfileGroundLine,
|
|
12361
|
-
newAnalysisElevationProfileElevationProfileInputLine,
|
|
12362
12188
|
newAnalysisElevationProfileElevationProfileLine,
|
|
12363
12189
|
newAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
12190
|
+
newAnalysisElevationProfileElevationProfileLineGround,
|
|
12191
|
+
newAnalysisElevationProfileElevationProfileLineInput,
|
|
12192
|
+
newAnalysisElevationProfileElevationProfileLineQuery,
|
|
12193
|
+
newAnalysisElevationProfileElevationProfileLineScene,
|
|
12364
12194
|
newAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
12365
|
-
newAnalysisElevationProfileElevationProfileQueryLine,
|
|
12366
|
-
newAnalysisElevationProfileElevationProfileSceneLine,
|
|
12367
|
-
newAnalysisElevationProfileElevationProfileUnits,
|
|
12368
12195
|
newAnalysisElevationProfileElevationProfileViewOptions,
|
|
12369
12196
|
newAnalysisLengthDimension,
|
|
12370
12197
|
newAnalysisLineOfSightAnalysis,
|
|
@@ -12377,6 +12204,8 @@ export {
|
|
|
12377
12204
|
newAnalysisViewshedAnalysis,
|
|
12378
12205
|
newAnalysisVolumeMeasurementAnalysis,
|
|
12379
12206
|
newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
12207
|
+
newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
12208
|
+
newAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
12380
12209
|
newAttributeBinsGraphic,
|
|
12381
12210
|
newBasemap,
|
|
12382
12211
|
newCamera,
|
|
@@ -12439,29 +12268,8 @@ export {
|
|
|
12439
12268
|
newGeometrySupportMeshTextureTransform,
|
|
12440
12269
|
newGeometrySupportMeshTransform,
|
|
12441
12270
|
newGraphic,
|
|
12442
|
-
newGraphicBuildingGraphicOrigin,
|
|
12443
|
-
newGraphicCSVGraphicOrigin,
|
|
12444
|
-
newGraphicCatalogGraphicOrigin,
|
|
12445
|
-
newGraphicFeatureGraphicOrigin,
|
|
12446
|
-
newGraphicGeoJSONGraphicOrigin,
|
|
12447
|
-
newGraphicGeoRSSGraphicOrigin,
|
|
12448
12271
|
newGraphicGraphicOrigin,
|
|
12449
|
-
newGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
12450
|
-
newGraphicIntegratedMeshGraphicOrigin,
|
|
12451
|
-
newGraphicKnowledgeGraphGraphicOrigin,
|
|
12452
|
-
newGraphicMapImageGraphicOrigin,
|
|
12453
|
-
newGraphicMapNotesGraphicOrigin,
|
|
12454
|
-
newGraphicOGCFeatureGraphicOrigin,
|
|
12455
|
-
newGraphicOrientedImageryGraphicOrigin,
|
|
12456
|
-
newGraphicParquetGraphicOrigin,
|
|
12457
|
-
newGraphicPointCloudGraphicOrigin,
|
|
12458
|
-
newGraphicSceneGraphicOrigin,
|
|
12459
|
-
newGraphicStreamGraphicOrigin,
|
|
12460
|
-
newGraphicSubtypeGroupGraphicOrigin,
|
|
12461
|
-
newGraphicTileGraphicOrigin,
|
|
12462
12272
|
newGraphicVectorTileGraphicOrigin,
|
|
12463
|
-
newGraphicVoxelGraphicOrigin,
|
|
12464
|
-
newGraphicWFSGraphicOrigin,
|
|
12465
12273
|
newGround,
|
|
12466
12274
|
newIdentityCredential,
|
|
12467
12275
|
newIdentityOAuthInfo,
|
|
@@ -12517,6 +12325,7 @@ export {
|
|
|
12517
12325
|
newLayersSupportCodedValueDomain,
|
|
12518
12326
|
newLayersSupportControlPointsGeoreference,
|
|
12519
12327
|
newLayersSupportCornersGeoreference,
|
|
12328
|
+
newLayersSupportDateTimeFieldFormat,
|
|
12520
12329
|
newLayersSupportDimensionalDefinition,
|
|
12521
12330
|
newLayersSupportDisplayFilter,
|
|
12522
12331
|
newLayersSupportDisplayFilterInfo,
|
|
@@ -12533,6 +12342,7 @@ export {
|
|
|
12533
12342
|
newLayersSupportFeatureTemplate,
|
|
12534
12343
|
newLayersSupportFeatureType,
|
|
12535
12344
|
newLayersSupportField,
|
|
12345
|
+
newLayersSupportFieldConfiguration,
|
|
12536
12346
|
newLayersSupportFieldsIndex,
|
|
12537
12347
|
newLayersSupportGeometryFieldsInfo,
|
|
12538
12348
|
newLayersSupportImageElement,
|
|
@@ -12546,6 +12356,7 @@ export {
|
|
|
12546
12356
|
newLayersSupportMapImage,
|
|
12547
12357
|
newLayersSupportMosaicRule,
|
|
12548
12358
|
newLayersSupportMultidimensionalSubset,
|
|
12359
|
+
newLayersSupportNumberFieldFormat,
|
|
12549
12360
|
newLayersSupportOrderByInfo,
|
|
12550
12361
|
newLayersSupportParquetEncodingLocation,
|
|
12551
12362
|
newLayersSupportParquetEncodingWkb,
|
|
@@ -12813,6 +12624,7 @@ export {
|
|
|
12813
12624
|
newRestSupportImageVolumeParameters,
|
|
12814
12625
|
newRestSupportImageVolumeResult,
|
|
12815
12626
|
newRestSupportJobInfo,
|
|
12627
|
+
newRestSupportLastMileDeliveryParameters,
|
|
12816
12628
|
newRestSupportLegendLayer,
|
|
12817
12629
|
newRestSupportLengthsParameters,
|
|
12818
12630
|
newRestSupportLinearUnit,
|
|
@@ -12904,13 +12716,12 @@ export {
|
|
|
12904
12716
|
newTablesElementsAttributeTableFieldElement,
|
|
12905
12717
|
newTablesElementsAttributeTableGroupElement,
|
|
12906
12718
|
newTablesElementsAttributeTableRelationshipElement,
|
|
12907
|
-
newTimeExtent,
|
|
12908
|
-
newTimeInterval,
|
|
12909
12719
|
newTimeTimeExtent,
|
|
12910
12720
|
newTimeTimeInterval,
|
|
12911
12721
|
newVersionManagementVersionManagementService,
|
|
12912
12722
|
newVersionManagementVersioningState,
|
|
12913
12723
|
newViewpoint,
|
|
12724
|
+
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12914
12725
|
newViews2dLayersBaseLayerView2D,
|
|
12915
12726
|
newViews2dLayersBaseLayerViewGL2D,
|
|
12916
12727
|
newViews2dViewState,
|
|
@@ -12923,6 +12734,8 @@ export {
|
|
|
12923
12734
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12924
12735
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12925
12736
|
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12737
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
12738
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
12926
12739
|
newViews3dEnvironmentCloudyWeather,
|
|
12927
12740
|
newViews3dEnvironmentFoggyWeather,
|
|
12928
12741
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -13075,6 +12888,7 @@ export {
|
|
|
13075
12888
|
newWidgetsEditorCreateFeaturesWorkflowData,
|
|
13076
12889
|
newWidgetsEditorEditorViewModel,
|
|
13077
12890
|
newWidgetsEditorEdits,
|
|
12891
|
+
newWidgetsEditorSplitFeatureWorkflow,
|
|
13078
12892
|
newWidgetsEditorSupportEditorItem,
|
|
13079
12893
|
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
13080
12894
|
newWidgetsEditorUpdateWorkflow,
|
|
@@ -13105,9 +12919,6 @@ export {
|
|
|
13105
12919
|
newWidgetsFeatureTableFieldColumn,
|
|
13106
12920
|
newWidgetsFeatureTableGridColumn,
|
|
13107
12921
|
newWidgetsFeatureTableGridGroupColumn,
|
|
13108
|
-
newWidgetsFeatureTableGridSupportButtonMenu,
|
|
13109
|
-
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
13110
|
-
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
13111
12922
|
newWidgetsFeatureTableRelationshipColumn,
|
|
13112
12923
|
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
13113
12924
|
newWidgetsFeatureTableSupportAttachmentsViewOptions,
|