@arcgis/core-adapter 4.34.0-next.8 → 4.34.0-next.80
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/dist/index.cjs +813 -136
- package/dist/index.d.cts +131 -28
- package/dist/index.d.ts +131 -28
- package/dist/index.js +813 -136
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -139,6 +139,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
139
139
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
140
140
|
return new ModConstructor(properties);
|
|
141
141
|
}
|
|
142
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
143
|
+
if (isAMD) {
|
|
144
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
145
|
+
}
|
|
146
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
147
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
148
|
+
}
|
|
149
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
150
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
151
|
+
return new ModConstructor(properties);
|
|
152
|
+
}
|
|
142
153
|
async function importAnalysisLengthDimension() {
|
|
143
154
|
if (isAMD) {
|
|
144
155
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -227,6 +238,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
238
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
239
|
return new ModConstructor(properties);
|
|
229
240
|
}
|
|
241
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
242
|
+
if (isAMD) {
|
|
243
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
244
|
+
}
|
|
245
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
246
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
247
|
+
}
|
|
248
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
249
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
250
|
+
return new ModConstructor(properties);
|
|
251
|
+
}
|
|
252
|
+
async function importAnalysisElevationProfileGroundLine() {
|
|
253
|
+
if (isAMD) {
|
|
254
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/GroundLine");
|
|
255
|
+
}
|
|
256
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/GroundLine.js");
|
|
257
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
258
|
+
}
|
|
259
|
+
async function newAnalysisElevationProfileGroundLine(properties) {
|
|
260
|
+
const ModConstructor = await importAnalysisElevationProfileGroundLine();
|
|
261
|
+
return new ModConstructor(properties);
|
|
262
|
+
}
|
|
263
|
+
async function importAnalysisElevationProfileInputLine() {
|
|
264
|
+
if (isAMD) {
|
|
265
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/InputLine");
|
|
266
|
+
}
|
|
267
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/InputLine.js");
|
|
268
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
269
|
+
}
|
|
270
|
+
async function newAnalysisElevationProfileInputLine(properties) {
|
|
271
|
+
const ModConstructor = await importAnalysisElevationProfileInputLine();
|
|
272
|
+
return new ModConstructor(properties);
|
|
273
|
+
}
|
|
274
|
+
async function importAnalysisElevationProfileLine() {
|
|
275
|
+
if (isAMD) {
|
|
276
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Line");
|
|
277
|
+
}
|
|
278
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/Line.js");
|
|
279
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
280
|
+
}
|
|
281
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
282
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
283
|
+
return new ModConstructor(properties);
|
|
284
|
+
}
|
|
285
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
286
|
+
if (isAMD) {
|
|
287
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineChartOptions");
|
|
288
|
+
}
|
|
289
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/LineChartOptions.js");
|
|
290
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
291
|
+
}
|
|
292
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
293
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
294
|
+
return new ModConstructor(properties);
|
|
295
|
+
}
|
|
296
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
297
|
+
if (isAMD) {
|
|
298
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineViewOptions");
|
|
299
|
+
}
|
|
300
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/LineViewOptions.js");
|
|
301
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
302
|
+
}
|
|
303
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
304
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
305
|
+
return new ModConstructor(properties);
|
|
306
|
+
}
|
|
307
|
+
async function importAnalysisElevationProfileQueryLine() {
|
|
308
|
+
if (isAMD) {
|
|
309
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/QueryLine");
|
|
310
|
+
}
|
|
311
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/QueryLine.js");
|
|
312
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
|
+
}
|
|
314
|
+
async function newAnalysisElevationProfileQueryLine(properties) {
|
|
315
|
+
const ModConstructor = await importAnalysisElevationProfileQueryLine();
|
|
316
|
+
return new ModConstructor(properties);
|
|
317
|
+
}
|
|
318
|
+
async function importAnalysisElevationProfileSceneLine() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/SceneLine");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/SceneLine.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newAnalysisElevationProfileSceneLine(properties) {
|
|
326
|
+
const ModConstructor = await importAnalysisElevationProfileSceneLine();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
329
|
+
async function importAnalysisElevationProfileUnits() {
|
|
330
|
+
if (isAMD) {
|
|
331
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Units");
|
|
332
|
+
}
|
|
333
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/Units.js");
|
|
334
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
|
+
}
|
|
336
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
337
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
338
|
+
return new ModConstructor(properties);
|
|
339
|
+
}
|
|
340
|
+
async function importAnalysisElevationProfileViewOptions() {
|
|
341
|
+
if (isAMD) {
|
|
342
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ViewOptions");
|
|
343
|
+
}
|
|
344
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ViewOptions.js");
|
|
345
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
346
|
+
}
|
|
347
|
+
async function newAnalysisElevationProfileViewOptions(properties) {
|
|
348
|
+
const ModConstructor = await importAnalysisElevationProfileViewOptions();
|
|
349
|
+
return new ModConstructor(properties);
|
|
350
|
+
}
|
|
230
351
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
352
|
if (isAMD) {
|
|
232
353
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -238,6 +359,17 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
238
359
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
239
360
|
return new ModConstructor(properties);
|
|
240
361
|
}
|
|
362
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
363
|
+
if (isAMD) {
|
|
364
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
365
|
+
}
|
|
366
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
367
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
368
|
+
}
|
|
369
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
370
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
371
|
+
return new ModConstructor(properties);
|
|
372
|
+
}
|
|
241
373
|
async function importCoreAccessor() {
|
|
242
374
|
if (isAMD) {
|
|
243
375
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -293,6 +425,39 @@ async function newCoreWorkersConnection() {
|
|
|
293
425
|
const ModConstructor = await importCoreWorkersConnection();
|
|
294
426
|
return new ModConstructor();
|
|
295
427
|
}
|
|
428
|
+
async function importEffectsFocusAreas() {
|
|
429
|
+
if (isAMD) {
|
|
430
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
431
|
+
}
|
|
432
|
+
const module2 = await import("@arcgis/core/effects/FocusAreas.js");
|
|
433
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
434
|
+
}
|
|
435
|
+
async function newEffectsFocusAreas(properties) {
|
|
436
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
437
|
+
return new ModConstructor(properties);
|
|
438
|
+
}
|
|
439
|
+
async function importEffectsFocusArea() {
|
|
440
|
+
if (isAMD) {
|
|
441
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
442
|
+
}
|
|
443
|
+
const module2 = await import("@arcgis/core/effects/FocusArea.js");
|
|
444
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
445
|
+
}
|
|
446
|
+
async function newEffectsFocusArea(properties) {
|
|
447
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
448
|
+
return new ModConstructor(properties);
|
|
449
|
+
}
|
|
450
|
+
async function importEffectsFocusAreaOutline() {
|
|
451
|
+
if (isAMD) {
|
|
452
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
453
|
+
}
|
|
454
|
+
const module2 = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
455
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
456
|
+
}
|
|
457
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
458
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
459
|
+
return new ModConstructor(properties);
|
|
460
|
+
}
|
|
296
461
|
async function importFormElementsAttachmentElement() {
|
|
297
462
|
if (isAMD) {
|
|
298
463
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -821,6 +986,259 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
821
986
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
822
987
|
return new ModConstructor(properties);
|
|
823
988
|
}
|
|
989
|
+
async function importGraphicGraphicOrigin() {
|
|
990
|
+
if (isAMD) {
|
|
991
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
992
|
+
}
|
|
993
|
+
const module2 = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
994
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
995
|
+
}
|
|
996
|
+
async function newGraphicGraphicOrigin() {
|
|
997
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
998
|
+
return new ModConstructor();
|
|
999
|
+
}
|
|
1000
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
1008
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(sublayer);
|
|
1010
|
+
}
|
|
1011
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
1012
|
+
if (isAMD) {
|
|
1013
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
1014
|
+
}
|
|
1015
|
+
const module2 = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
1016
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1017
|
+
}
|
|
1018
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
1019
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
1020
|
+
return new ModConstructor(layer);
|
|
1021
|
+
}
|
|
1022
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
1023
|
+
if (isAMD) {
|
|
1024
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1025
|
+
}
|
|
1026
|
+
const module2 = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1027
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1028
|
+
}
|
|
1029
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1030
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1031
|
+
return new ModConstructor(layer);
|
|
1032
|
+
}
|
|
1033
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
1034
|
+
if (isAMD) {
|
|
1035
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1036
|
+
}
|
|
1037
|
+
const module2 = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1038
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1039
|
+
}
|
|
1040
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1041
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1042
|
+
return new ModConstructor(layer);
|
|
1043
|
+
}
|
|
1044
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1045
|
+
if (isAMD) {
|
|
1046
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1047
|
+
}
|
|
1048
|
+
const module2 = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1049
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1050
|
+
}
|
|
1051
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1052
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1053
|
+
return new ModConstructor(layer);
|
|
1054
|
+
}
|
|
1055
|
+
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1056
|
+
if (isAMD) {
|
|
1057
|
+
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1058
|
+
}
|
|
1059
|
+
const module2 = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1060
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1061
|
+
}
|
|
1062
|
+
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1063
|
+
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1064
|
+
return new ModConstructor(layer);
|
|
1065
|
+
}
|
|
1066
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
1067
|
+
if (isAMD) {
|
|
1068
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
1069
|
+
}
|
|
1070
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
1071
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1072
|
+
}
|
|
1073
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
1074
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
1075
|
+
return new ModConstructor(layer);
|
|
1076
|
+
}
|
|
1077
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
1078
|
+
if (isAMD) {
|
|
1079
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
1080
|
+
}
|
|
1081
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
1082
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1083
|
+
}
|
|
1084
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
1085
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
1086
|
+
return new ModConstructor(layer);
|
|
1087
|
+
}
|
|
1088
|
+
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1089
|
+
if (isAMD) {
|
|
1090
|
+
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1091
|
+
}
|
|
1092
|
+
const module2 = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1093
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1094
|
+
}
|
|
1095
|
+
async function newGraphicKnowledgeGraphGraphicOrigin(sublayer) {
|
|
1096
|
+
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1097
|
+
return new ModConstructor(sublayer);
|
|
1098
|
+
}
|
|
1099
|
+
async function importGraphicMapImageGraphicOrigin() {
|
|
1100
|
+
if (isAMD) {
|
|
1101
|
+
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1102
|
+
}
|
|
1103
|
+
const module2 = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1104
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1105
|
+
}
|
|
1106
|
+
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1107
|
+
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1108
|
+
return new ModConstructor(layer, sublayer);
|
|
1109
|
+
}
|
|
1110
|
+
async function importGraphicMapNotesGraphicOrigin() {
|
|
1111
|
+
if (isAMD) {
|
|
1112
|
+
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1113
|
+
}
|
|
1114
|
+
const module2 = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1115
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1116
|
+
}
|
|
1117
|
+
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1118
|
+
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1119
|
+
return new ModConstructor(layer, sublayer);
|
|
1120
|
+
}
|
|
1121
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1122
|
+
if (isAMD) {
|
|
1123
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1124
|
+
}
|
|
1125
|
+
const module2 = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1126
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1127
|
+
}
|
|
1128
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1129
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1130
|
+
return new ModConstructor(layer);
|
|
1131
|
+
}
|
|
1132
|
+
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1133
|
+
if (isAMD) {
|
|
1134
|
+
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1135
|
+
}
|
|
1136
|
+
const module2 = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1137
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1138
|
+
}
|
|
1139
|
+
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1140
|
+
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1141
|
+
return new ModConstructor(layer);
|
|
1142
|
+
}
|
|
1143
|
+
async function importGraphicParquetGraphicOrigin() {
|
|
1144
|
+
if (isAMD) {
|
|
1145
|
+
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1146
|
+
}
|
|
1147
|
+
const module2 = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1148
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1149
|
+
}
|
|
1150
|
+
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1151
|
+
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1152
|
+
return new ModConstructor(layer);
|
|
1153
|
+
}
|
|
1154
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
1155
|
+
if (isAMD) {
|
|
1156
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1157
|
+
}
|
|
1158
|
+
const module2 = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1159
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1160
|
+
}
|
|
1161
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1162
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1163
|
+
return new ModConstructor(layer);
|
|
1164
|
+
}
|
|
1165
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
1166
|
+
if (isAMD) {
|
|
1167
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1168
|
+
}
|
|
1169
|
+
const module2 = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1170
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1171
|
+
}
|
|
1172
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1173
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1174
|
+
return new ModConstructor(layer);
|
|
1175
|
+
}
|
|
1176
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1177
|
+
if (isAMD) {
|
|
1178
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1179
|
+
}
|
|
1180
|
+
const module2 = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1181
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1182
|
+
}
|
|
1183
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1184
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1185
|
+
return new ModConstructor(layer);
|
|
1186
|
+
}
|
|
1187
|
+
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1188
|
+
if (isAMD) {
|
|
1189
|
+
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1190
|
+
}
|
|
1191
|
+
const module2 = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1192
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1193
|
+
}
|
|
1194
|
+
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1195
|
+
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1196
|
+
return new ModConstructor(sublayer);
|
|
1197
|
+
}
|
|
1198
|
+
async function importGraphicTileGraphicOrigin() {
|
|
1199
|
+
if (isAMD) {
|
|
1200
|
+
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1201
|
+
}
|
|
1202
|
+
const module2 = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1203
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1204
|
+
}
|
|
1205
|
+
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1206
|
+
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1207
|
+
return new ModConstructor(layer, sublayer);
|
|
1208
|
+
}
|
|
1209
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1210
|
+
if (isAMD) {
|
|
1211
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1212
|
+
}
|
|
1213
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1214
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1215
|
+
}
|
|
1216
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1217
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1218
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1219
|
+
}
|
|
1220
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1221
|
+
if (isAMD) {
|
|
1222
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1223
|
+
}
|
|
1224
|
+
const module2 = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1225
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1226
|
+
}
|
|
1227
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1228
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1229
|
+
return new ModConstructor(layer);
|
|
1230
|
+
}
|
|
1231
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1232
|
+
if (isAMD) {
|
|
1233
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1234
|
+
}
|
|
1235
|
+
const module2 = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1236
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1237
|
+
}
|
|
1238
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1239
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1240
|
+
return new ModConstructor(layer);
|
|
1241
|
+
}
|
|
824
1242
|
async function importAttributeBinsGraphic() {
|
|
825
1243
|
if (isAMD) {
|
|
826
1244
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1811,6 +2229,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1811
2229
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1812
2230
|
return new ModConstructor(properties);
|
|
1813
2231
|
}
|
|
2232
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2233
|
+
if (isAMD) {
|
|
2234
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2235
|
+
}
|
|
2236
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2237
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2238
|
+
}
|
|
2239
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2240
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2241
|
+
return new ModConstructor(properties);
|
|
2242
|
+
}
|
|
1814
2243
|
async function importLayersSupportPublishingInfo() {
|
|
1815
2244
|
if (isAMD) {
|
|
1816
2245
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3362,6 +3791,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3362
3791
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3363
3792
|
return new ModConstructor(properties);
|
|
3364
3793
|
}
|
|
3794
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3795
|
+
if (isAMD) {
|
|
3796
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3797
|
+
}
|
|
3798
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3799
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3800
|
+
}
|
|
3801
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3802
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3803
|
+
return new ModConstructor(properties);
|
|
3804
|
+
}
|
|
3805
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3806
|
+
if (isAMD) {
|
|
3807
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3808
|
+
}
|
|
3809
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3810
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3811
|
+
}
|
|
3812
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3813
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3814
|
+
return new ModConstructor(properties);
|
|
3815
|
+
}
|
|
3365
3816
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3366
3817
|
if (isAMD) {
|
|
3367
3818
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3384,6 +3835,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3384
3835
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3385
3836
|
return new ModConstructor(properties);
|
|
3386
3837
|
}
|
|
3838
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3839
|
+
if (isAMD) {
|
|
3840
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3841
|
+
}
|
|
3842
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3843
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3844
|
+
}
|
|
3845
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3846
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3847
|
+
return new ModConstructor(properties);
|
|
3848
|
+
}
|
|
3849
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3850
|
+
if (isAMD) {
|
|
3851
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3852
|
+
}
|
|
3853
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3854
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3855
|
+
}
|
|
3856
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3857
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3858
|
+
return new ModConstructor(properties);
|
|
3859
|
+
}
|
|
3387
3860
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3388
3861
|
if (isAMD) {
|
|
3389
3862
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3395,6 +3868,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3395
3868
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3396
3869
|
return new ModConstructor(properties);
|
|
3397
3870
|
}
|
|
3871
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3872
|
+
if (isAMD) {
|
|
3873
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3874
|
+
}
|
|
3875
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3876
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3877
|
+
}
|
|
3878
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3879
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3880
|
+
return new ModConstructor(properties);
|
|
3881
|
+
}
|
|
3398
3882
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3399
3883
|
if (isAMD) {
|
|
3400
3884
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3516,6 +4000,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3516
4000
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3517
4001
|
return new ModConstructor(properties);
|
|
3518
4002
|
}
|
|
4003
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
4004
|
+
if (isAMD) {
|
|
4005
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
4006
|
+
}
|
|
4007
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
4008
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4009
|
+
}
|
|
4010
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
4011
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
4012
|
+
return new ModConstructor(properties);
|
|
4013
|
+
}
|
|
4014
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
4015
|
+
if (isAMD) {
|
|
4016
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
4017
|
+
}
|
|
4018
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
4019
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4020
|
+
}
|
|
4021
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
4022
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
4023
|
+
return new ModConstructor(properties);
|
|
4024
|
+
}
|
|
4025
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
4026
|
+
if (isAMD) {
|
|
4027
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
4028
|
+
}
|
|
4029
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
4030
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4031
|
+
}
|
|
4032
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
4033
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
4034
|
+
return new ModConstructor(properties);
|
|
4035
|
+
}
|
|
3519
4036
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3520
4037
|
if (isAMD) {
|
|
3521
4038
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5419,6 +5936,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5419
5936
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5420
5937
|
return new ModConstructor(properties);
|
|
5421
5938
|
}
|
|
5939
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5940
|
+
if (isAMD) {
|
|
5941
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5942
|
+
}
|
|
5943
|
+
const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5944
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5945
|
+
}
|
|
5946
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5947
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5948
|
+
return new ModConstructor(properties);
|
|
5949
|
+
}
|
|
5950
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5951
|
+
if (isAMD) {
|
|
5952
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5953
|
+
}
|
|
5954
|
+
const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5955
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5956
|
+
}
|
|
5957
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5958
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5959
|
+
return new ModConstructor(properties);
|
|
5960
|
+
}
|
|
5422
5961
|
async function importSymbolsSupportStyleOrigin() {
|
|
5423
5962
|
if (isAMD) {
|
|
5424
5963
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5661,26 +6200,26 @@ async function newViewpoint(properties) {
|
|
|
5661
6200
|
const ModConstructor = await importViewpoint();
|
|
5662
6201
|
return new ModConstructor(properties);
|
|
5663
6202
|
}
|
|
5664
|
-
async function
|
|
6203
|
+
async function importViewsBasemapView() {
|
|
5665
6204
|
if (isAMD) {
|
|
5666
|
-
return await window.$arcgis.import("esri/views/
|
|
6205
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5667
6206
|
}
|
|
5668
|
-
const module2 = await import("@arcgis/core/views/
|
|
6207
|
+
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
5669
6208
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5670
6209
|
}
|
|
5671
|
-
async function
|
|
5672
|
-
const ModConstructor = await
|
|
6210
|
+
async function newViewsBasemapView(properties) {
|
|
6211
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5673
6212
|
return new ModConstructor(properties);
|
|
5674
6213
|
}
|
|
5675
|
-
async function
|
|
6214
|
+
async function importViewsGroundView() {
|
|
5676
6215
|
if (isAMD) {
|
|
5677
|
-
return await window.$arcgis.import("esri/views/
|
|
6216
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5678
6217
|
}
|
|
5679
|
-
const module2 = await import("@arcgis/core/views/
|
|
6218
|
+
const module2 = await import("@arcgis/core/views/GroundView.js");
|
|
5680
6219
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5681
6220
|
}
|
|
5682
|
-
async function
|
|
5683
|
-
const ModConstructor = await
|
|
6221
|
+
async function newViewsGroundView(properties) {
|
|
6222
|
+
const ModConstructor = await importViewsGroundView();
|
|
5684
6223
|
return new ModConstructor(properties);
|
|
5685
6224
|
}
|
|
5686
6225
|
async function importViews2dViewState() {
|
|
@@ -5694,6 +6233,28 @@ async function newViews2dViewState(properties) {
|
|
|
5694
6233
|
const ModConstructor = await importViews2dViewState();
|
|
5695
6234
|
return new ModConstructor(properties);
|
|
5696
6235
|
}
|
|
6236
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6237
|
+
if (isAMD) {
|
|
6238
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6239
|
+
}
|
|
6240
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6241
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6242
|
+
}
|
|
6243
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6244
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6245
|
+
return new ModConstructor(properties);
|
|
6246
|
+
}
|
|
6247
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6248
|
+
if (isAMD) {
|
|
6249
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6250
|
+
}
|
|
6251
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6252
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6253
|
+
}
|
|
6254
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6255
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6256
|
+
return new ModConstructor(properties);
|
|
6257
|
+
}
|
|
5697
6258
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5698
6259
|
if (isAMD) {
|
|
5699
6260
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5727,6 +6288,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5727
6288
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5728
6289
|
return new ModConstructor(properties);
|
|
5729
6290
|
}
|
|
6291
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6292
|
+
if (isAMD) {
|
|
6293
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6294
|
+
}
|
|
6295
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6296
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6297
|
+
}
|
|
6298
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6299
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6300
|
+
return new ModConstructor(properties);
|
|
6301
|
+
}
|
|
5730
6302
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5731
6303
|
if (isAMD) {
|
|
5732
6304
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5771,6 +6343,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5771
6343
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5772
6344
|
return new ModConstructor(properties);
|
|
5773
6345
|
}
|
|
6346
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6347
|
+
if (isAMD) {
|
|
6348
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6349
|
+
}
|
|
6350
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6351
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6352
|
+
}
|
|
6353
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6354
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6355
|
+
return new ModConstructor(properties);
|
|
6356
|
+
}
|
|
5774
6357
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5775
6358
|
if (isAMD) {
|
|
5776
6359
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5859,15 +6442,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5859
6442
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5860
6443
|
return new ModConstructor(properties);
|
|
5861
6444
|
}
|
|
5862
|
-
async function
|
|
6445
|
+
async function importViewsAnalysisElevationProfileResult() {
|
|
5863
6446
|
if (isAMD) {
|
|
5864
|
-
return await window.$arcgis.import("esri/views/
|
|
6447
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/Result");
|
|
5865
6448
|
}
|
|
5866
|
-
const module2 = await import("@arcgis/core/views/
|
|
6449
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/Result.js");
|
|
5867
6450
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5868
6451
|
}
|
|
5869
|
-
async function
|
|
5870
|
-
const ModConstructor = await
|
|
6452
|
+
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6453
|
+
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
5871
6454
|
return new ModConstructor(properties);
|
|
5872
6455
|
}
|
|
5873
6456
|
async function importViewsDrawDraw() {
|
|
@@ -5947,15 +6530,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
5947
6530
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
5948
6531
|
return new ModConstructor(properties);
|
|
5949
6532
|
}
|
|
5950
|
-
async function
|
|
6533
|
+
async function importViewsInputInput() {
|
|
5951
6534
|
if (isAMD) {
|
|
5952
|
-
return await window.$arcgis.import("esri/views/
|
|
6535
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
5953
6536
|
}
|
|
5954
|
-
const module2 = await import("@arcgis/core/views/
|
|
6537
|
+
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
5955
6538
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5956
6539
|
}
|
|
5957
|
-
async function
|
|
5958
|
-
const ModConstructor = await
|
|
6540
|
+
async function newViewsInputInput(properties) {
|
|
6541
|
+
const ModConstructor = await importViewsInputInput();
|
|
5959
6542
|
return new ModConstructor(properties);
|
|
5960
6543
|
}
|
|
5961
6544
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -5980,17 +6563,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
5980
6563
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
5981
6564
|
return new ModConstructor(properties);
|
|
5982
6565
|
}
|
|
5983
|
-
async function importViewsInputInput() {
|
|
5984
|
-
if (isAMD) {
|
|
5985
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
5986
|
-
}
|
|
5987
|
-
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
5988
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5989
|
-
}
|
|
5990
|
-
async function newViewsInputInput(properties) {
|
|
5991
|
-
const ModConstructor = await importViewsInputInput();
|
|
5992
|
-
return new ModConstructor(properties);
|
|
5993
|
-
}
|
|
5994
6566
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
5995
6567
|
if (isAMD) {
|
|
5996
6568
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6079,39 +6651,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6079
6651
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6080
6652
|
return new ModConstructor(properties);
|
|
6081
6653
|
}
|
|
6082
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6083
|
-
if (isAMD) {
|
|
6084
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6085
|
-
}
|
|
6086
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6087
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6088
|
-
}
|
|
6089
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6090
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6091
|
-
return new ModConstructor(properties);
|
|
6092
|
-
}
|
|
6093
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6094
|
-
if (isAMD) {
|
|
6095
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6096
|
-
}
|
|
6097
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6098
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6099
|
-
}
|
|
6100
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6101
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6102
|
-
return new ModConstructor(properties);
|
|
6103
|
-
}
|
|
6104
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6105
|
-
if (isAMD) {
|
|
6106
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6107
|
-
}
|
|
6108
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6109
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6110
|
-
}
|
|
6111
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6112
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6113
|
-
return new ModConstructor(properties);
|
|
6114
|
-
}
|
|
6115
6654
|
async function importViewsLayersDimensionLayerView() {
|
|
6116
6655
|
if (isAMD) {
|
|
6117
6656
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6123,17 +6662,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6123
6662
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6124
6663
|
return new ModConstructor(properties);
|
|
6125
6664
|
}
|
|
6126
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6127
|
-
if (isAMD) {
|
|
6128
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6129
|
-
}
|
|
6130
|
-
const module2 = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6131
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6132
|
-
}
|
|
6133
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6134
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6135
|
-
return new ModConstructor(properties);
|
|
6136
|
-
}
|
|
6137
6665
|
async function importViewsLayersGroupLayerView() {
|
|
6138
6666
|
if (isAMD) {
|
|
6139
6667
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6200,28 +6728,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6200
6728
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6201
6729
|
return new ModConstructor(properties);
|
|
6202
6730
|
}
|
|
6203
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6204
|
-
if (isAMD) {
|
|
6205
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6206
|
-
}
|
|
6207
|
-
const module2 = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6208
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6209
|
-
}
|
|
6210
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6211
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6212
|
-
return new ModConstructor(properties);
|
|
6213
|
-
}
|
|
6214
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6215
|
-
if (isAMD) {
|
|
6216
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6217
|
-
}
|
|
6218
|
-
const module2 = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6219
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6220
|
-
}
|
|
6221
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6222
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6223
|
-
return new ModConstructor(properties);
|
|
6224
|
-
}
|
|
6225
6731
|
async function importViewsLayersSceneLayerView() {
|
|
6226
6732
|
if (isAMD) {
|
|
6227
6733
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6233,17 +6739,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6233
6739
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6234
6740
|
return new ModConstructor(properties);
|
|
6235
6741
|
}
|
|
6236
|
-
async function importViewsLayersStreamLayerView() {
|
|
6237
|
-
if (isAMD) {
|
|
6238
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6239
|
-
}
|
|
6240
|
-
const module2 = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6241
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6242
|
-
}
|
|
6243
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6244
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6245
|
-
return new ModConstructor(properties);
|
|
6246
|
-
}
|
|
6247
6742
|
async function importViewsLayersViewshedLayerView() {
|
|
6248
6743
|
if (isAMD) {
|
|
6249
6744
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7146,6 +7641,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7146
7641
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7147
7642
|
return new ModConstructor(properties);
|
|
7148
7643
|
}
|
|
7644
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7645
|
+
if (isAMD) {
|
|
7646
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7647
|
+
}
|
|
7648
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7649
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7650
|
+
}
|
|
7651
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7652
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7653
|
+
return new ModConstructor(properties);
|
|
7654
|
+
}
|
|
7655
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7656
|
+
if (isAMD) {
|
|
7657
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7658
|
+
}
|
|
7659
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7660
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7661
|
+
}
|
|
7662
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7663
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7664
|
+
return new ModConstructor(properties);
|
|
7665
|
+
}
|
|
7666
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7667
|
+
if (isAMD) {
|
|
7668
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7669
|
+
}
|
|
7670
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7671
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7672
|
+
}
|
|
7673
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7674
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7675
|
+
return new ModConstructor(properties);
|
|
7676
|
+
}
|
|
7677
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7678
|
+
if (isAMD) {
|
|
7679
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7680
|
+
}
|
|
7681
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7682
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7683
|
+
}
|
|
7684
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7685
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7686
|
+
return new ModConstructor(properties);
|
|
7687
|
+
}
|
|
7149
7688
|
async function importWidgetsBookmarks() {
|
|
7150
7689
|
if (isAMD) {
|
|
7151
7690
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9753,6 +10292,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9753
10292
|
const module2 = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9754
10293
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9755
10294
|
}
|
|
10295
|
+
async function importGraphicGraphicOrigins() {
|
|
10296
|
+
if (isAMD) {
|
|
10297
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10298
|
+
}
|
|
10299
|
+
const module2 = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10300
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10301
|
+
}
|
|
9756
10302
|
async function importIntl() {
|
|
9757
10303
|
if (isAMD) {
|
|
9758
10304
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10481,6 +11027,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10481
11027
|
const module2 = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10482
11028
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10483
11029
|
}
|
|
11030
|
+
async function importViews3dWebgl() {
|
|
11031
|
+
if (isAMD) {
|
|
11032
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11033
|
+
}
|
|
11034
|
+
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
11035
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11036
|
+
}
|
|
10484
11037
|
async function importViews3dWebglManagedFBO() {
|
|
10485
11038
|
if (isAMD) {
|
|
10486
11039
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10495,13 +11048,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10495
11048
|
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10496
11049
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10497
11050
|
}
|
|
10498
|
-
async function importViews3dWebgl() {
|
|
10499
|
-
if (isAMD) {
|
|
10500
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10501
|
-
}
|
|
10502
|
-
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10503
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10504
|
-
}
|
|
10505
11051
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10506
11052
|
if (isAMD) {
|
|
10507
11053
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10530,13 +11076,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10530
11076
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10531
11077
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10532
11078
|
}
|
|
10533
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10534
|
-
if (isAMD) {
|
|
10535
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10536
|
-
}
|
|
10537
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10538
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10539
|
-
}
|
|
10540
11079
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10541
11080
|
if (isAMD) {
|
|
10542
11081
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10558,6 +11097,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10558
11097
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10559
11098
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10560
11099
|
}
|
|
11100
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
11101
|
+
if (isAMD) {
|
|
11102
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
11103
|
+
}
|
|
11104
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
11105
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11106
|
+
}
|
|
10561
11107
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10562
11108
|
if (isAMD) {
|
|
10563
11109
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10572,6 +11118,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10572
11118
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10573
11119
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10574
11120
|
}
|
|
11121
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
11122
|
+
if (isAMD) {
|
|
11123
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
11124
|
+
}
|
|
11125
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
11126
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11127
|
+
}
|
|
10575
11128
|
async function importApplicationsComponentsFontUtils() {
|
|
10576
11129
|
if (isAMD) {
|
|
10577
11130
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10593,6 +11146,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10593
11146
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10594
11147
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10595
11148
|
}
|
|
11149
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11150
|
+
if (isAMD) {
|
|
11151
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11152
|
+
}
|
|
11153
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11154
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11155
|
+
}
|
|
10596
11156
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10597
11157
|
if (isAMD) {
|
|
10598
11158
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10621,6 +11181,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10621
11181
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10622
11182
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10623
11183
|
}
|
|
11184
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11185
|
+
if (isAMD) {
|
|
11186
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11187
|
+
}
|
|
11188
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11189
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11190
|
+
}
|
|
10624
11191
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10625
11192
|
if (isAMD) {
|
|
10626
11193
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10635,6 +11202,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10635
11202
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10636
11203
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10637
11204
|
}
|
|
11205
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11206
|
+
if (isAMD) {
|
|
11207
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11208
|
+
}
|
|
11209
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11210
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11211
|
+
}
|
|
10638
11212
|
async function importApplicationsComponentsStyleUtils() {
|
|
10639
11213
|
if (isAMD) {
|
|
10640
11214
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10696,6 +11270,16 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
10696
11270
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
10697
11271
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
10698
11272
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11273
|
+
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11274
|
+
exports.importAnalysisElevationProfileGroundLine = importAnalysisElevationProfileGroundLine;
|
|
11275
|
+
exports.importAnalysisElevationProfileInputLine = importAnalysisElevationProfileInputLine;
|
|
11276
|
+
exports.importAnalysisElevationProfileLine = importAnalysisElevationProfileLine;
|
|
11277
|
+
exports.importAnalysisElevationProfileLineChartOptions = importAnalysisElevationProfileLineChartOptions;
|
|
11278
|
+
exports.importAnalysisElevationProfileLineViewOptions = importAnalysisElevationProfileLineViewOptions;
|
|
11279
|
+
exports.importAnalysisElevationProfileQueryLine = importAnalysisElevationProfileQueryLine;
|
|
11280
|
+
exports.importAnalysisElevationProfileSceneLine = importAnalysisElevationProfileSceneLine;
|
|
11281
|
+
exports.importAnalysisElevationProfileUnits = importAnalysisElevationProfileUnits;
|
|
11282
|
+
exports.importAnalysisElevationProfileViewOptions = importAnalysisElevationProfileViewOptions;
|
|
10699
11283
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
10700
11284
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
10701
11285
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
@@ -10705,18 +11289,25 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10705
11289
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10706
11290
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10707
11291
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
11292
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
11293
|
+
exports.importAnalysisVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementCutFillOptions;
|
|
10708
11294
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
11295
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10709
11296
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10710
11297
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
11298
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10711
11299
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
10712
11300
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10713
11301
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
11302
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10714
11303
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10715
11304
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10716
11305
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10717
11306
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
11307
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10718
11308
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10719
11309
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
11310
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10720
11311
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10721
11312
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10722
11313
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10748,6 +11339,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10748
11339
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10749
11340
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10750
11341
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
11342
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
11343
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
11344
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10751
11345
|
exports.importFormElements = importFormElements;
|
|
10752
11346
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10753
11347
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10861,6 +11455,30 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
10861
11455
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
10862
11456
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
10863
11457
|
exports.importGraphic = importGraphic;
|
|
11458
|
+
exports.importGraphicBuildingGraphicOrigin = importGraphicBuildingGraphicOrigin;
|
|
11459
|
+
exports.importGraphicCSVGraphicOrigin = importGraphicCSVGraphicOrigin;
|
|
11460
|
+
exports.importGraphicCatalogGraphicOrigin = importGraphicCatalogGraphicOrigin;
|
|
11461
|
+
exports.importGraphicFeatureGraphicOrigin = importGraphicFeatureGraphicOrigin;
|
|
11462
|
+
exports.importGraphicGeoJSONGraphicOrigin = importGraphicGeoJSONGraphicOrigin;
|
|
11463
|
+
exports.importGraphicGeoRSSGraphicOrigin = importGraphicGeoRSSGraphicOrigin;
|
|
11464
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11465
|
+
exports.importGraphicGraphicOrigins = importGraphicGraphicOrigins;
|
|
11466
|
+
exports.importGraphicIntegratedMesh3DTilesGraphicOrigin = importGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
11467
|
+
exports.importGraphicIntegratedMeshGraphicOrigin = importGraphicIntegratedMeshGraphicOrigin;
|
|
11468
|
+
exports.importGraphicKnowledgeGraphGraphicOrigin = importGraphicKnowledgeGraphGraphicOrigin;
|
|
11469
|
+
exports.importGraphicMapImageGraphicOrigin = importGraphicMapImageGraphicOrigin;
|
|
11470
|
+
exports.importGraphicMapNotesGraphicOrigin = importGraphicMapNotesGraphicOrigin;
|
|
11471
|
+
exports.importGraphicOGCFeatureGraphicOrigin = importGraphicOGCFeatureGraphicOrigin;
|
|
11472
|
+
exports.importGraphicOrientedImageryGraphicOrigin = importGraphicOrientedImageryGraphicOrigin;
|
|
11473
|
+
exports.importGraphicParquetGraphicOrigin = importGraphicParquetGraphicOrigin;
|
|
11474
|
+
exports.importGraphicPointCloudGraphicOrigin = importGraphicPointCloudGraphicOrigin;
|
|
11475
|
+
exports.importGraphicSceneGraphicOrigin = importGraphicSceneGraphicOrigin;
|
|
11476
|
+
exports.importGraphicStreamGraphicOrigin = importGraphicStreamGraphicOrigin;
|
|
11477
|
+
exports.importGraphicSubtypeGroupGraphicOrigin = importGraphicSubtypeGroupGraphicOrigin;
|
|
11478
|
+
exports.importGraphicTileGraphicOrigin = importGraphicTileGraphicOrigin;
|
|
11479
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
11480
|
+
exports.importGraphicVoxelGraphicOrigin = importGraphicVoxelGraphicOrigin;
|
|
11481
|
+
exports.importGraphicWFSGraphicOrigin = importGraphicWFSGraphicOrigin;
|
|
10864
11482
|
exports.importGround = importGround;
|
|
10865
11483
|
exports.importIdentityCredential = importIdentityCredential;
|
|
10866
11484
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -10961,6 +11579,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10961
11579
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10962
11580
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10963
11581
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11582
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10964
11583
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10965
11584
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10966
11585
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11121,10 +11740,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11121
11740
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11122
11741
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11123
11742
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11743
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11124
11744
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11745
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11125
11746
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11126
11747
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11748
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11749
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11127
11750
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11751
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11128
11752
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11129
11753
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11130
11754
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11136,6 +11760,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11136
11760
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11137
11761
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11138
11762
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11763
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11764
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11765
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11139
11766
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11140
11767
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11141
11768
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11377,6 +12004,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
|
|
|
11377
12004
|
exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
|
|
11378
12005
|
exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
|
|
11379
12006
|
exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
|
|
12007
|
+
exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
|
|
12008
|
+
exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
|
|
11380
12009
|
exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
|
|
11381
12010
|
exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
|
|
11382
12011
|
exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
|
|
@@ -11410,10 +12039,12 @@ exports.importViews2dViewState = importViews2dViewState;
|
|
|
11410
12039
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11411
12040
|
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11412
12041
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12042
|
+
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11413
12043
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11414
12044
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11415
12045
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11416
12046
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
12047
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11417
12048
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11418
12049
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11419
12050
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11427,6 +12058,7 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11427
12058
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11428
12059
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11429
12060
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
12061
|
+
exports.importViewsAnalysisElevationProfileResult = importViewsAnalysisElevationProfileResult;
|
|
11430
12062
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11431
12063
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11432
12064
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11448,21 +12080,14 @@ exports.importViewsInteractiveSnappingSnappingOptions = importViewsInteractiveSn
|
|
|
11448
12080
|
exports.importViewsInteractiveTooltip = importViewsInteractiveTooltip;
|
|
11449
12081
|
exports.importViewsLayersBuildingComponentSublayerView = importViewsLayersBuildingComponentSublayerView;
|
|
11450
12082
|
exports.importViewsLayersBuildingSceneLayerView = importViewsLayersBuildingSceneLayerView;
|
|
11451
|
-
exports.importViewsLayersCatalogDynamicGroupLayerView = importViewsLayersCatalogDynamicGroupLayerView;
|
|
11452
|
-
exports.importViewsLayersCatalogFootprintLayerView = importViewsLayersCatalogFootprintLayerView;
|
|
11453
|
-
exports.importViewsLayersCatalogLayerView = importViewsLayersCatalogLayerView;
|
|
11454
12083
|
exports.importViewsLayersDimensionLayerView = importViewsLayersDimensionLayerView;
|
|
11455
|
-
exports.importViewsLayersFeatureLayerView = importViewsLayersFeatureLayerView;
|
|
11456
12084
|
exports.importViewsLayersGroupLayerView = importViewsLayersGroupLayerView;
|
|
11457
12085
|
exports.importViewsLayersImageryLayerView = importViewsLayersImageryLayerView;
|
|
11458
12086
|
exports.importViewsLayersImageryTileLayerView = importViewsLayersImageryTileLayerView;
|
|
11459
12087
|
exports.importViewsLayersLayerView = importViewsLayersLayerView;
|
|
11460
12088
|
exports.importViewsLayersLineOfSightLayerView = importViewsLayersLineOfSightLayerView;
|
|
11461
12089
|
exports.importViewsLayersMediaLayerView = importViewsLayersMediaLayerView;
|
|
11462
|
-
exports.importViewsLayersOGCFeatureLayerView = importViewsLayersOGCFeatureLayerView;
|
|
11463
|
-
exports.importViewsLayersPointCloudLayerView = importViewsLayersPointCloudLayerView;
|
|
11464
12090
|
exports.importViewsLayersSceneLayerView = importViewsLayersSceneLayerView;
|
|
11465
|
-
exports.importViewsLayersStreamLayerView = importViewsLayersStreamLayerView;
|
|
11466
12091
|
exports.importViewsLayersViewshedLayerView = importViewsLayersViewshedLayerView;
|
|
11467
12092
|
exports.importViewsLinkChartView = importViewsLinkChartView;
|
|
11468
12093
|
exports.importViewsMagnifier = importViewsMagnifier;
|
|
@@ -11547,6 +12172,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11547
12172
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11548
12173
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11549
12174
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12175
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12176
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
12177
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11550
12178
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11551
12179
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11552
12180
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11743,6 +12371,16 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
11743
12371
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
11744
12372
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
11745
12373
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12374
|
+
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12375
|
+
exports.newAnalysisElevationProfileGroundLine = newAnalysisElevationProfileGroundLine;
|
|
12376
|
+
exports.newAnalysisElevationProfileInputLine = newAnalysisElevationProfileInputLine;
|
|
12377
|
+
exports.newAnalysisElevationProfileLine = newAnalysisElevationProfileLine;
|
|
12378
|
+
exports.newAnalysisElevationProfileLineChartOptions = newAnalysisElevationProfileLineChartOptions;
|
|
12379
|
+
exports.newAnalysisElevationProfileLineViewOptions = newAnalysisElevationProfileLineViewOptions;
|
|
12380
|
+
exports.newAnalysisElevationProfileQueryLine = newAnalysisElevationProfileQueryLine;
|
|
12381
|
+
exports.newAnalysisElevationProfileSceneLine = newAnalysisElevationProfileSceneLine;
|
|
12382
|
+
exports.newAnalysisElevationProfileUnits = newAnalysisElevationProfileUnits;
|
|
12383
|
+
exports.newAnalysisElevationProfileViewOptions = newAnalysisElevationProfileViewOptions;
|
|
11746
12384
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
11747
12385
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
11748
12386
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
@@ -11752,6 +12390,8 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11752
12390
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11753
12391
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11754
12392
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12393
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12394
|
+
exports.newAnalysisVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementCutFillOptions;
|
|
11755
12395
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11756
12396
|
exports.newBasemap = newBasemap;
|
|
11757
12397
|
exports.newCamera = newCamera;
|
|
@@ -11762,6 +12402,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11762
12402
|
exports.newCoreError = newCoreError;
|
|
11763
12403
|
exports.newCoreHandles = newCoreHandles;
|
|
11764
12404
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12405
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12406
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12407
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11765
12408
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11766
12409
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11767
12410
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11811,6 +12454,29 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
11811
12454
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
11812
12455
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
11813
12456
|
exports.newGraphic = newGraphic;
|
|
12457
|
+
exports.newGraphicBuildingGraphicOrigin = newGraphicBuildingGraphicOrigin;
|
|
12458
|
+
exports.newGraphicCSVGraphicOrigin = newGraphicCSVGraphicOrigin;
|
|
12459
|
+
exports.newGraphicCatalogGraphicOrigin = newGraphicCatalogGraphicOrigin;
|
|
12460
|
+
exports.newGraphicFeatureGraphicOrigin = newGraphicFeatureGraphicOrigin;
|
|
12461
|
+
exports.newGraphicGeoJSONGraphicOrigin = newGraphicGeoJSONGraphicOrigin;
|
|
12462
|
+
exports.newGraphicGeoRSSGraphicOrigin = newGraphicGeoRSSGraphicOrigin;
|
|
12463
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12464
|
+
exports.newGraphicIntegratedMesh3DTilesGraphicOrigin = newGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
12465
|
+
exports.newGraphicIntegratedMeshGraphicOrigin = newGraphicIntegratedMeshGraphicOrigin;
|
|
12466
|
+
exports.newGraphicKnowledgeGraphGraphicOrigin = newGraphicKnowledgeGraphGraphicOrigin;
|
|
12467
|
+
exports.newGraphicMapImageGraphicOrigin = newGraphicMapImageGraphicOrigin;
|
|
12468
|
+
exports.newGraphicMapNotesGraphicOrigin = newGraphicMapNotesGraphicOrigin;
|
|
12469
|
+
exports.newGraphicOGCFeatureGraphicOrigin = newGraphicOGCFeatureGraphicOrigin;
|
|
12470
|
+
exports.newGraphicOrientedImageryGraphicOrigin = newGraphicOrientedImageryGraphicOrigin;
|
|
12471
|
+
exports.newGraphicParquetGraphicOrigin = newGraphicParquetGraphicOrigin;
|
|
12472
|
+
exports.newGraphicPointCloudGraphicOrigin = newGraphicPointCloudGraphicOrigin;
|
|
12473
|
+
exports.newGraphicSceneGraphicOrigin = newGraphicSceneGraphicOrigin;
|
|
12474
|
+
exports.newGraphicStreamGraphicOrigin = newGraphicStreamGraphicOrigin;
|
|
12475
|
+
exports.newGraphicSubtypeGroupGraphicOrigin = newGraphicSubtypeGroupGraphicOrigin;
|
|
12476
|
+
exports.newGraphicTileGraphicOrigin = newGraphicTileGraphicOrigin;
|
|
12477
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
12478
|
+
exports.newGraphicVoxelGraphicOrigin = newGraphicVoxelGraphicOrigin;
|
|
12479
|
+
exports.newGraphicWFSGraphicOrigin = newGraphicWFSGraphicOrigin;
|
|
11814
12480
|
exports.newGround = newGround;
|
|
11815
12481
|
exports.newIdentityCredential = newIdentityCredential;
|
|
11816
12482
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
|
@@ -11899,6 +12565,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11899
12565
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11900
12566
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11901
12567
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12568
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11902
12569
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11903
12570
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11904
12571
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12039,10 +12706,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12039
12706
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12040
12707
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12041
12708
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12709
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12042
12710
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12711
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12043
12712
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12044
12713
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12714
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12715
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12045
12716
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12717
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12046
12718
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12047
12719
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12048
12720
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12054,6 +12726,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12054
12726
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12055
12727
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12056
12728
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12729
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12730
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12731
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12057
12732
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12058
12733
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12059
12734
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12227,6 +12902,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
|
|
|
12227
12902
|
exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
|
|
12228
12903
|
exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
|
|
12229
12904
|
exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
|
|
12905
|
+
exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
|
|
12906
|
+
exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
|
|
12230
12907
|
exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
|
|
12231
12908
|
exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
|
|
12232
12909
|
exports.newSymbolsSymbol = newSymbolsSymbol;
|
|
@@ -12255,10 +12932,12 @@ exports.newViews2dViewState = newViews2dViewState;
|
|
|
12255
12932
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12256
12933
|
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12257
12934
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12935
|
+
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12258
12936
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12259
12937
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12260
12938
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12261
12939
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12940
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12262
12941
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12263
12942
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12264
12943
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12267,6 +12946,7 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12267
12946
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12268
12947
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12269
12948
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12949
|
+
exports.newViewsAnalysisElevationProfileResult = newViewsAnalysisElevationProfileResult;
|
|
12270
12950
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12271
12951
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12272
12952
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12287,21 +12967,14 @@ exports.newViewsInteractiveSnappingSnappingOptions = newViewsInteractiveSnapping
|
|
|
12287
12967
|
exports.newViewsInteractiveTooltip = newViewsInteractiveTooltip;
|
|
12288
12968
|
exports.newViewsLayersBuildingComponentSublayerView = newViewsLayersBuildingComponentSublayerView;
|
|
12289
12969
|
exports.newViewsLayersBuildingSceneLayerView = newViewsLayersBuildingSceneLayerView;
|
|
12290
|
-
exports.newViewsLayersCatalogDynamicGroupLayerView = newViewsLayersCatalogDynamicGroupLayerView;
|
|
12291
|
-
exports.newViewsLayersCatalogFootprintLayerView = newViewsLayersCatalogFootprintLayerView;
|
|
12292
|
-
exports.newViewsLayersCatalogLayerView = newViewsLayersCatalogLayerView;
|
|
12293
12970
|
exports.newViewsLayersDimensionLayerView = newViewsLayersDimensionLayerView;
|
|
12294
|
-
exports.newViewsLayersFeatureLayerView = newViewsLayersFeatureLayerView;
|
|
12295
12971
|
exports.newViewsLayersGroupLayerView = newViewsLayersGroupLayerView;
|
|
12296
12972
|
exports.newViewsLayersImageryLayerView = newViewsLayersImageryLayerView;
|
|
12297
12973
|
exports.newViewsLayersImageryTileLayerView = newViewsLayersImageryTileLayerView;
|
|
12298
12974
|
exports.newViewsLayersLayerView = newViewsLayersLayerView;
|
|
12299
12975
|
exports.newViewsLayersLineOfSightLayerView = newViewsLayersLineOfSightLayerView;
|
|
12300
12976
|
exports.newViewsLayersMediaLayerView = newViewsLayersMediaLayerView;
|
|
12301
|
-
exports.newViewsLayersOGCFeatureLayerView = newViewsLayersOGCFeatureLayerView;
|
|
12302
|
-
exports.newViewsLayersPointCloudLayerView = newViewsLayersPointCloudLayerView;
|
|
12303
12977
|
exports.newViewsLayersSceneLayerView = newViewsLayersSceneLayerView;
|
|
12304
|
-
exports.newViewsLayersStreamLayerView = newViewsLayersStreamLayerView;
|
|
12305
12978
|
exports.newViewsLayersViewshedLayerView = newViewsLayersViewshedLayerView;
|
|
12306
12979
|
exports.newViewsLinkChartView = newViewsLinkChartView;
|
|
12307
12980
|
exports.newViewsMagnifier = newViewsMagnifier;
|
|
@@ -12384,6 +13057,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12384
13057
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12385
13058
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12386
13059
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
13060
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
13061
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
13062
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
13063
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12387
13064
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12388
13065
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12389
13066
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|