@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.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisLengthDimension() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -203,6 +214,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
214
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
215
|
return new ModConstructor(properties);
|
|
205
216
|
}
|
|
217
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
218
|
+
if (isAMD) {
|
|
219
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
220
|
+
}
|
|
221
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
223
|
+
}
|
|
224
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
225
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
|
+
return new ModConstructor(properties);
|
|
227
|
+
}
|
|
228
|
+
async function importAnalysisElevationProfileGroundLine() {
|
|
229
|
+
if (isAMD) {
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/GroundLine");
|
|
231
|
+
}
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/GroundLine.js");
|
|
233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
234
|
+
}
|
|
235
|
+
async function newAnalysisElevationProfileGroundLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileGroundLine();
|
|
237
|
+
return new ModConstructor(properties);
|
|
238
|
+
}
|
|
239
|
+
async function importAnalysisElevationProfileInputLine() {
|
|
240
|
+
if (isAMD) {
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/InputLine");
|
|
242
|
+
}
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/InputLine.js");
|
|
244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
245
|
+
}
|
|
246
|
+
async function newAnalysisElevationProfileInputLine(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileInputLine();
|
|
248
|
+
return new ModConstructor(properties);
|
|
249
|
+
}
|
|
250
|
+
async function importAnalysisElevationProfileLine() {
|
|
251
|
+
if (isAMD) {
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Line");
|
|
253
|
+
}
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/Line.js");
|
|
255
|
+
return isDefaultModule(module) ? module.default : module;
|
|
256
|
+
}
|
|
257
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
259
|
+
return new ModConstructor(properties);
|
|
260
|
+
}
|
|
261
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
262
|
+
if (isAMD) {
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineChartOptions");
|
|
264
|
+
}
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/LineChartOptions.js");
|
|
266
|
+
return isDefaultModule(module) ? module.default : module;
|
|
267
|
+
}
|
|
268
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
270
|
+
return new ModConstructor(properties);
|
|
271
|
+
}
|
|
272
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineViewOptions");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/LineViewOptions.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importAnalysisElevationProfileQueryLine() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/QueryLine");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/QueryLine.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisElevationProfileQueryLine(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileQueryLine();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileSceneLine() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/SceneLine");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/SceneLine.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileSceneLine(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileSceneLine();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
305
|
+
async function importAnalysisElevationProfileUnits() {
|
|
306
|
+
if (isAMD) {
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Units");
|
|
308
|
+
}
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/Units.js");
|
|
310
|
+
return isDefaultModule(module) ? module.default : module;
|
|
311
|
+
}
|
|
312
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
314
|
+
return new ModConstructor(properties);
|
|
315
|
+
}
|
|
316
|
+
async function importAnalysisElevationProfileViewOptions() {
|
|
317
|
+
if (isAMD) {
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ViewOptions");
|
|
319
|
+
}
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ViewOptions.js");
|
|
321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
322
|
+
}
|
|
323
|
+
async function newAnalysisElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileViewOptions();
|
|
325
|
+
return new ModConstructor(properties);
|
|
326
|
+
}
|
|
206
327
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
207
328
|
if (isAMD) {
|
|
208
329
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -214,6 +335,17 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
214
335
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
215
336
|
return new ModConstructor(properties);
|
|
216
337
|
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
347
|
+
return new ModConstructor(properties);
|
|
348
|
+
}
|
|
217
349
|
async function importCoreAccessor() {
|
|
218
350
|
if (isAMD) {
|
|
219
351
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -269,6 +401,39 @@ async function newCoreWorkersConnection() {
|
|
|
269
401
|
const ModConstructor = await importCoreWorkersConnection();
|
|
270
402
|
return new ModConstructor();
|
|
271
403
|
}
|
|
404
|
+
async function importEffectsFocusAreas() {
|
|
405
|
+
if (isAMD) {
|
|
406
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
407
|
+
}
|
|
408
|
+
const module = await import("@arcgis/core/effects/FocusAreas.js");
|
|
409
|
+
return isDefaultModule(module) ? module.default : module;
|
|
410
|
+
}
|
|
411
|
+
async function newEffectsFocusAreas(properties) {
|
|
412
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
413
|
+
return new ModConstructor(properties);
|
|
414
|
+
}
|
|
415
|
+
async function importEffectsFocusArea() {
|
|
416
|
+
if (isAMD) {
|
|
417
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
418
|
+
}
|
|
419
|
+
const module = await import("@arcgis/core/effects/FocusArea.js");
|
|
420
|
+
return isDefaultModule(module) ? module.default : module;
|
|
421
|
+
}
|
|
422
|
+
async function newEffectsFocusArea(properties) {
|
|
423
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
424
|
+
return new ModConstructor(properties);
|
|
425
|
+
}
|
|
426
|
+
async function importEffectsFocusAreaOutline() {
|
|
427
|
+
if (isAMD) {
|
|
428
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
429
|
+
}
|
|
430
|
+
const module = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
431
|
+
return isDefaultModule(module) ? module.default : module;
|
|
432
|
+
}
|
|
433
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
434
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
435
|
+
return new ModConstructor(properties);
|
|
436
|
+
}
|
|
272
437
|
async function importFormElementsAttachmentElement() {
|
|
273
438
|
if (isAMD) {
|
|
274
439
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -797,6 +962,259 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
797
962
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
798
963
|
return new ModConstructor(properties);
|
|
799
964
|
}
|
|
965
|
+
async function importGraphicGraphicOrigin() {
|
|
966
|
+
if (isAMD) {
|
|
967
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
968
|
+
}
|
|
969
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
971
|
+
}
|
|
972
|
+
async function newGraphicGraphicOrigin() {
|
|
973
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
974
|
+
return new ModConstructor();
|
|
975
|
+
}
|
|
976
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
977
|
+
if (isAMD) {
|
|
978
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
979
|
+
}
|
|
980
|
+
const module = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
981
|
+
return isDefaultModule(module) ? module.default : module;
|
|
982
|
+
}
|
|
983
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
984
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
985
|
+
return new ModConstructor(sublayer);
|
|
986
|
+
}
|
|
987
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
988
|
+
if (isAMD) {
|
|
989
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
990
|
+
}
|
|
991
|
+
const module = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
992
|
+
return isDefaultModule(module) ? module.default : module;
|
|
993
|
+
}
|
|
994
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
995
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
996
|
+
return new ModConstructor(layer);
|
|
997
|
+
}
|
|
998
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
999
|
+
if (isAMD) {
|
|
1000
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1001
|
+
}
|
|
1002
|
+
const module = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1003
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
+
}
|
|
1005
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1006
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1007
|
+
return new ModConstructor(layer);
|
|
1008
|
+
}
|
|
1009
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
1010
|
+
if (isAMD) {
|
|
1011
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1012
|
+
}
|
|
1013
|
+
const module = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1014
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1015
|
+
}
|
|
1016
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1017
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1018
|
+
return new ModConstructor(layer);
|
|
1019
|
+
}
|
|
1020
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1021
|
+
if (isAMD) {
|
|
1022
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1023
|
+
}
|
|
1024
|
+
const module = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1025
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1026
|
+
}
|
|
1027
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1028
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1029
|
+
return new ModConstructor(layer);
|
|
1030
|
+
}
|
|
1031
|
+
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1032
|
+
if (isAMD) {
|
|
1033
|
+
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1034
|
+
}
|
|
1035
|
+
const module = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1036
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1037
|
+
}
|
|
1038
|
+
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1039
|
+
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1040
|
+
return new ModConstructor(layer);
|
|
1041
|
+
}
|
|
1042
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
1043
|
+
if (isAMD) {
|
|
1044
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
1045
|
+
}
|
|
1046
|
+
const module = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
1047
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1048
|
+
}
|
|
1049
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
1050
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
1051
|
+
return new ModConstructor(layer);
|
|
1052
|
+
}
|
|
1053
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
1054
|
+
if (isAMD) {
|
|
1055
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
1056
|
+
}
|
|
1057
|
+
const module = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
1058
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1059
|
+
}
|
|
1060
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
1061
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
1062
|
+
return new ModConstructor(layer);
|
|
1063
|
+
}
|
|
1064
|
+
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1065
|
+
if (isAMD) {
|
|
1066
|
+
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1067
|
+
}
|
|
1068
|
+
const module = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1069
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1070
|
+
}
|
|
1071
|
+
async function newGraphicKnowledgeGraphGraphicOrigin(sublayer) {
|
|
1072
|
+
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1073
|
+
return new ModConstructor(sublayer);
|
|
1074
|
+
}
|
|
1075
|
+
async function importGraphicMapImageGraphicOrigin() {
|
|
1076
|
+
if (isAMD) {
|
|
1077
|
+
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1078
|
+
}
|
|
1079
|
+
const module = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1080
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1081
|
+
}
|
|
1082
|
+
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1083
|
+
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1084
|
+
return new ModConstructor(layer, sublayer);
|
|
1085
|
+
}
|
|
1086
|
+
async function importGraphicMapNotesGraphicOrigin() {
|
|
1087
|
+
if (isAMD) {
|
|
1088
|
+
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1089
|
+
}
|
|
1090
|
+
const module = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1091
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1092
|
+
}
|
|
1093
|
+
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1094
|
+
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1095
|
+
return new ModConstructor(layer, sublayer);
|
|
1096
|
+
}
|
|
1097
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1098
|
+
if (isAMD) {
|
|
1099
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1100
|
+
}
|
|
1101
|
+
const module = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1102
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1103
|
+
}
|
|
1104
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1105
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1106
|
+
return new ModConstructor(layer);
|
|
1107
|
+
}
|
|
1108
|
+
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1109
|
+
if (isAMD) {
|
|
1110
|
+
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1111
|
+
}
|
|
1112
|
+
const module = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1113
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1114
|
+
}
|
|
1115
|
+
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1116
|
+
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1117
|
+
return new ModConstructor(layer);
|
|
1118
|
+
}
|
|
1119
|
+
async function importGraphicParquetGraphicOrigin() {
|
|
1120
|
+
if (isAMD) {
|
|
1121
|
+
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1122
|
+
}
|
|
1123
|
+
const module = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1124
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1125
|
+
}
|
|
1126
|
+
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1127
|
+
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1128
|
+
return new ModConstructor(layer);
|
|
1129
|
+
}
|
|
1130
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
1131
|
+
if (isAMD) {
|
|
1132
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1133
|
+
}
|
|
1134
|
+
const module = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1135
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1136
|
+
}
|
|
1137
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1138
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1139
|
+
return new ModConstructor(layer);
|
|
1140
|
+
}
|
|
1141
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
1142
|
+
if (isAMD) {
|
|
1143
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1144
|
+
}
|
|
1145
|
+
const module = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1146
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1147
|
+
}
|
|
1148
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1149
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1150
|
+
return new ModConstructor(layer);
|
|
1151
|
+
}
|
|
1152
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1153
|
+
if (isAMD) {
|
|
1154
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1155
|
+
}
|
|
1156
|
+
const module = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1157
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1158
|
+
}
|
|
1159
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1160
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1161
|
+
return new ModConstructor(layer);
|
|
1162
|
+
}
|
|
1163
|
+
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1164
|
+
if (isAMD) {
|
|
1165
|
+
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1166
|
+
}
|
|
1167
|
+
const module = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1168
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1169
|
+
}
|
|
1170
|
+
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1171
|
+
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1172
|
+
return new ModConstructor(sublayer);
|
|
1173
|
+
}
|
|
1174
|
+
async function importGraphicTileGraphicOrigin() {
|
|
1175
|
+
if (isAMD) {
|
|
1176
|
+
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1177
|
+
}
|
|
1178
|
+
const module = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1179
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1180
|
+
}
|
|
1181
|
+
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1182
|
+
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1183
|
+
return new ModConstructor(layer, sublayer);
|
|
1184
|
+
}
|
|
1185
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1186
|
+
if (isAMD) {
|
|
1187
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1188
|
+
}
|
|
1189
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1190
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1191
|
+
}
|
|
1192
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1193
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1194
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1195
|
+
}
|
|
1196
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1197
|
+
if (isAMD) {
|
|
1198
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1199
|
+
}
|
|
1200
|
+
const module = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1201
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1202
|
+
}
|
|
1203
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1204
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1205
|
+
return new ModConstructor(layer);
|
|
1206
|
+
}
|
|
1207
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1208
|
+
if (isAMD) {
|
|
1209
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1210
|
+
}
|
|
1211
|
+
const module = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1212
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1213
|
+
}
|
|
1214
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1215
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1216
|
+
return new ModConstructor(layer);
|
|
1217
|
+
}
|
|
800
1218
|
async function importAttributeBinsGraphic() {
|
|
801
1219
|
if (isAMD) {
|
|
802
1220
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1787,6 +2205,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1787
2205
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1788
2206
|
return new ModConstructor(properties);
|
|
1789
2207
|
}
|
|
2208
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2209
|
+
if (isAMD) {
|
|
2210
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2211
|
+
}
|
|
2212
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2213
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2214
|
+
}
|
|
2215
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2216
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2217
|
+
return new ModConstructor(properties);
|
|
2218
|
+
}
|
|
1790
2219
|
async function importLayersSupportPublishingInfo() {
|
|
1791
2220
|
if (isAMD) {
|
|
1792
2221
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3338,6 +3767,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3338
3767
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3339
3768
|
return new ModConstructor(properties);
|
|
3340
3769
|
}
|
|
3770
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3771
|
+
if (isAMD) {
|
|
3772
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3773
|
+
}
|
|
3774
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3775
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3776
|
+
}
|
|
3777
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3778
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3779
|
+
return new ModConstructor(properties);
|
|
3780
|
+
}
|
|
3781
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3782
|
+
if (isAMD) {
|
|
3783
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3784
|
+
}
|
|
3785
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3786
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3787
|
+
}
|
|
3788
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3789
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3790
|
+
return new ModConstructor(properties);
|
|
3791
|
+
}
|
|
3341
3792
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3342
3793
|
if (isAMD) {
|
|
3343
3794
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3360,6 +3811,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3360
3811
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3361
3812
|
return new ModConstructor(properties);
|
|
3362
3813
|
}
|
|
3814
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3815
|
+
if (isAMD) {
|
|
3816
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3817
|
+
}
|
|
3818
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3819
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3820
|
+
}
|
|
3821
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3822
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3823
|
+
return new ModConstructor(properties);
|
|
3824
|
+
}
|
|
3825
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3826
|
+
if (isAMD) {
|
|
3827
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3828
|
+
}
|
|
3829
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3830
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3831
|
+
}
|
|
3832
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3833
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3834
|
+
return new ModConstructor(properties);
|
|
3835
|
+
}
|
|
3363
3836
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3364
3837
|
if (isAMD) {
|
|
3365
3838
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3371,6 +3844,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3371
3844
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3372
3845
|
return new ModConstructor(properties);
|
|
3373
3846
|
}
|
|
3847
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3848
|
+
if (isAMD) {
|
|
3849
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3850
|
+
}
|
|
3851
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3852
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3853
|
+
}
|
|
3854
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3855
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3856
|
+
return new ModConstructor(properties);
|
|
3857
|
+
}
|
|
3374
3858
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3375
3859
|
if (isAMD) {
|
|
3376
3860
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3492,6 +3976,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3492
3976
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3493
3977
|
return new ModConstructor(properties);
|
|
3494
3978
|
}
|
|
3979
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3980
|
+
if (isAMD) {
|
|
3981
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3982
|
+
}
|
|
3983
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3984
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3985
|
+
}
|
|
3986
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3987
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3988
|
+
return new ModConstructor(properties);
|
|
3989
|
+
}
|
|
3990
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3991
|
+
if (isAMD) {
|
|
3992
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3993
|
+
}
|
|
3994
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3995
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3996
|
+
}
|
|
3997
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3998
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3999
|
+
return new ModConstructor(properties);
|
|
4000
|
+
}
|
|
4001
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
4002
|
+
if (isAMD) {
|
|
4003
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
4004
|
+
}
|
|
4005
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
4006
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4007
|
+
}
|
|
4008
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
4009
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
4010
|
+
return new ModConstructor(properties);
|
|
4011
|
+
}
|
|
3495
4012
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3496
4013
|
if (isAMD) {
|
|
3497
4014
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5395,6 +5912,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5395
5912
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5396
5913
|
return new ModConstructor(properties);
|
|
5397
5914
|
}
|
|
5915
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5916
|
+
if (isAMD) {
|
|
5917
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5918
|
+
}
|
|
5919
|
+
const module = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5920
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5921
|
+
}
|
|
5922
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5923
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5924
|
+
return new ModConstructor(properties);
|
|
5925
|
+
}
|
|
5926
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5927
|
+
if (isAMD) {
|
|
5928
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5929
|
+
}
|
|
5930
|
+
const module = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5931
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5932
|
+
}
|
|
5933
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5934
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5935
|
+
return new ModConstructor(properties);
|
|
5936
|
+
}
|
|
5398
5937
|
async function importSymbolsSupportStyleOrigin() {
|
|
5399
5938
|
if (isAMD) {
|
|
5400
5939
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5637,26 +6176,26 @@ async function newViewpoint(properties) {
|
|
|
5637
6176
|
const ModConstructor = await importViewpoint();
|
|
5638
6177
|
return new ModConstructor(properties);
|
|
5639
6178
|
}
|
|
5640
|
-
async function
|
|
6179
|
+
async function importViewsBasemapView() {
|
|
5641
6180
|
if (isAMD) {
|
|
5642
|
-
return await window.$arcgis.import("esri/views/
|
|
6181
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5643
6182
|
}
|
|
5644
|
-
const module = await import("@arcgis/core/views/
|
|
6183
|
+
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
5645
6184
|
return isDefaultModule(module) ? module.default : module;
|
|
5646
6185
|
}
|
|
5647
|
-
async function
|
|
5648
|
-
const ModConstructor = await
|
|
6186
|
+
async function newViewsBasemapView(properties) {
|
|
6187
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5649
6188
|
return new ModConstructor(properties);
|
|
5650
6189
|
}
|
|
5651
|
-
async function
|
|
6190
|
+
async function importViewsGroundView() {
|
|
5652
6191
|
if (isAMD) {
|
|
5653
|
-
return await window.$arcgis.import("esri/views/
|
|
6192
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5654
6193
|
}
|
|
5655
|
-
const module = await import("@arcgis/core/views/
|
|
6194
|
+
const module = await import("@arcgis/core/views/GroundView.js");
|
|
5656
6195
|
return isDefaultModule(module) ? module.default : module;
|
|
5657
6196
|
}
|
|
5658
|
-
async function
|
|
5659
|
-
const ModConstructor = await
|
|
6197
|
+
async function newViewsGroundView(properties) {
|
|
6198
|
+
const ModConstructor = await importViewsGroundView();
|
|
5660
6199
|
return new ModConstructor(properties);
|
|
5661
6200
|
}
|
|
5662
6201
|
async function importViews2dViewState() {
|
|
@@ -5670,6 +6209,28 @@ async function newViews2dViewState(properties) {
|
|
|
5670
6209
|
const ModConstructor = await importViews2dViewState();
|
|
5671
6210
|
return new ModConstructor(properties);
|
|
5672
6211
|
}
|
|
6212
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6213
|
+
if (isAMD) {
|
|
6214
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6215
|
+
}
|
|
6216
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6217
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6218
|
+
}
|
|
6219
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6220
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6221
|
+
return new ModConstructor(properties);
|
|
6222
|
+
}
|
|
6223
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6224
|
+
if (isAMD) {
|
|
6225
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6226
|
+
}
|
|
6227
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6228
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6229
|
+
}
|
|
6230
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6231
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6232
|
+
return new ModConstructor(properties);
|
|
6233
|
+
}
|
|
5673
6234
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5674
6235
|
if (isAMD) {
|
|
5675
6236
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5703,6 +6264,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5703
6264
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5704
6265
|
return new ModConstructor(properties);
|
|
5705
6266
|
}
|
|
6267
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6268
|
+
if (isAMD) {
|
|
6269
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6270
|
+
}
|
|
6271
|
+
const module = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6272
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6273
|
+
}
|
|
6274
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6275
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6276
|
+
return new ModConstructor(properties);
|
|
6277
|
+
}
|
|
5706
6278
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5707
6279
|
if (isAMD) {
|
|
5708
6280
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5747,6 +6319,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5747
6319
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5748
6320
|
return new ModConstructor(properties);
|
|
5749
6321
|
}
|
|
6322
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6323
|
+
if (isAMD) {
|
|
6324
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6325
|
+
}
|
|
6326
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6327
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6328
|
+
}
|
|
6329
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6330
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6331
|
+
return new ModConstructor(properties);
|
|
6332
|
+
}
|
|
5750
6333
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5751
6334
|
if (isAMD) {
|
|
5752
6335
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5835,15 +6418,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5835
6418
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5836
6419
|
return new ModConstructor(properties);
|
|
5837
6420
|
}
|
|
5838
|
-
async function
|
|
6421
|
+
async function importViewsAnalysisElevationProfileResult() {
|
|
5839
6422
|
if (isAMD) {
|
|
5840
|
-
return await window.$arcgis.import("esri/views/
|
|
6423
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/Result");
|
|
5841
6424
|
}
|
|
5842
|
-
const module = await import("@arcgis/core/views/
|
|
6425
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/Result.js");
|
|
5843
6426
|
return isDefaultModule(module) ? module.default : module;
|
|
5844
6427
|
}
|
|
5845
|
-
async function
|
|
5846
|
-
const ModConstructor = await
|
|
6428
|
+
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6429
|
+
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
5847
6430
|
return new ModConstructor(properties);
|
|
5848
6431
|
}
|
|
5849
6432
|
async function importViewsDrawDraw() {
|
|
@@ -5923,15 +6506,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
5923
6506
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
5924
6507
|
return new ModConstructor(properties);
|
|
5925
6508
|
}
|
|
5926
|
-
async function
|
|
6509
|
+
async function importViewsInputInput() {
|
|
5927
6510
|
if (isAMD) {
|
|
5928
|
-
return await window.$arcgis.import("esri/views/
|
|
6511
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
5929
6512
|
}
|
|
5930
|
-
const module = await import("@arcgis/core/views/
|
|
6513
|
+
const module = await import("@arcgis/core/views/input/Input.js");
|
|
5931
6514
|
return isDefaultModule(module) ? module.default : module;
|
|
5932
6515
|
}
|
|
5933
|
-
async function
|
|
5934
|
-
const ModConstructor = await
|
|
6516
|
+
async function newViewsInputInput(properties) {
|
|
6517
|
+
const ModConstructor = await importViewsInputInput();
|
|
5935
6518
|
return new ModConstructor(properties);
|
|
5936
6519
|
}
|
|
5937
6520
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -5956,17 +6539,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
5956
6539
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
5957
6540
|
return new ModConstructor(properties);
|
|
5958
6541
|
}
|
|
5959
|
-
async function importViewsInputInput() {
|
|
5960
|
-
if (isAMD) {
|
|
5961
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
5962
|
-
}
|
|
5963
|
-
const module = await import("@arcgis/core/views/input/Input.js");
|
|
5964
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5965
|
-
}
|
|
5966
|
-
async function newViewsInputInput(properties) {
|
|
5967
|
-
const ModConstructor = await importViewsInputInput();
|
|
5968
|
-
return new ModConstructor(properties);
|
|
5969
|
-
}
|
|
5970
6542
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
5971
6543
|
if (isAMD) {
|
|
5972
6544
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6055,39 +6627,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6055
6627
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6056
6628
|
return new ModConstructor(properties);
|
|
6057
6629
|
}
|
|
6058
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6059
|
-
if (isAMD) {
|
|
6060
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6061
|
-
}
|
|
6062
|
-
const module = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6063
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6064
|
-
}
|
|
6065
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6066
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6067
|
-
return new ModConstructor(properties);
|
|
6068
|
-
}
|
|
6069
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6070
|
-
if (isAMD) {
|
|
6071
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6072
|
-
}
|
|
6073
|
-
const module = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6074
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6075
|
-
}
|
|
6076
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6077
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6078
|
-
return new ModConstructor(properties);
|
|
6079
|
-
}
|
|
6080
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6081
|
-
if (isAMD) {
|
|
6082
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6083
|
-
}
|
|
6084
|
-
const module = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6085
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6086
|
-
}
|
|
6087
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6088
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6089
|
-
return new ModConstructor(properties);
|
|
6090
|
-
}
|
|
6091
6630
|
async function importViewsLayersDimensionLayerView() {
|
|
6092
6631
|
if (isAMD) {
|
|
6093
6632
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6099,17 +6638,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6099
6638
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6100
6639
|
return new ModConstructor(properties);
|
|
6101
6640
|
}
|
|
6102
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6103
|
-
if (isAMD) {
|
|
6104
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6105
|
-
}
|
|
6106
|
-
const module = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6107
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6108
|
-
}
|
|
6109
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6110
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6111
|
-
return new ModConstructor(properties);
|
|
6112
|
-
}
|
|
6113
6641
|
async function importViewsLayersGroupLayerView() {
|
|
6114
6642
|
if (isAMD) {
|
|
6115
6643
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6176,28 +6704,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6176
6704
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6177
6705
|
return new ModConstructor(properties);
|
|
6178
6706
|
}
|
|
6179
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6180
|
-
if (isAMD) {
|
|
6181
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6182
|
-
}
|
|
6183
|
-
const module = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6184
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6185
|
-
}
|
|
6186
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6187
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6188
|
-
return new ModConstructor(properties);
|
|
6189
|
-
}
|
|
6190
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6191
|
-
if (isAMD) {
|
|
6192
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6193
|
-
}
|
|
6194
|
-
const module = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6195
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6196
|
-
}
|
|
6197
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6198
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6199
|
-
return new ModConstructor(properties);
|
|
6200
|
-
}
|
|
6201
6707
|
async function importViewsLayersSceneLayerView() {
|
|
6202
6708
|
if (isAMD) {
|
|
6203
6709
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6209,17 +6715,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6209
6715
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6210
6716
|
return new ModConstructor(properties);
|
|
6211
6717
|
}
|
|
6212
|
-
async function importViewsLayersStreamLayerView() {
|
|
6213
|
-
if (isAMD) {
|
|
6214
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6215
|
-
}
|
|
6216
|
-
const module = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6217
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6218
|
-
}
|
|
6219
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6220
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6221
|
-
return new ModConstructor(properties);
|
|
6222
|
-
}
|
|
6223
6718
|
async function importViewsLayersViewshedLayerView() {
|
|
6224
6719
|
if (isAMD) {
|
|
6225
6720
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7122,6 +7617,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7122
7617
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7123
7618
|
return new ModConstructor(properties);
|
|
7124
7619
|
}
|
|
7620
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7621
|
+
if (isAMD) {
|
|
7622
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7623
|
+
}
|
|
7624
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7625
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7626
|
+
}
|
|
7627
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7628
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7629
|
+
return new ModConstructor(properties);
|
|
7630
|
+
}
|
|
7631
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7632
|
+
if (isAMD) {
|
|
7633
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7634
|
+
}
|
|
7635
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7636
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7637
|
+
}
|
|
7638
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7639
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7640
|
+
return new ModConstructor(properties);
|
|
7641
|
+
}
|
|
7642
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7643
|
+
if (isAMD) {
|
|
7644
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7645
|
+
}
|
|
7646
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7647
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7648
|
+
}
|
|
7649
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7650
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7651
|
+
return new ModConstructor(properties);
|
|
7652
|
+
}
|
|
7653
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7654
|
+
if (isAMD) {
|
|
7655
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7656
|
+
}
|
|
7657
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7658
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7659
|
+
}
|
|
7660
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7661
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7662
|
+
return new ModConstructor(properties);
|
|
7663
|
+
}
|
|
7125
7664
|
async function importWidgetsBookmarks() {
|
|
7126
7665
|
if (isAMD) {
|
|
7127
7666
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9729,6 +10268,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9729
10268
|
const module = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9730
10269
|
return isDefaultModule(module) ? module.default : module;
|
|
9731
10270
|
}
|
|
10271
|
+
async function importGraphicGraphicOrigins() {
|
|
10272
|
+
if (isAMD) {
|
|
10273
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10274
|
+
}
|
|
10275
|
+
const module = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10276
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10277
|
+
}
|
|
9732
10278
|
async function importIntl() {
|
|
9733
10279
|
if (isAMD) {
|
|
9734
10280
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10457,6 +11003,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10457
11003
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10458
11004
|
return isDefaultModule(module) ? module.default : module;
|
|
10459
11005
|
}
|
|
11006
|
+
async function importViews3dWebgl() {
|
|
11007
|
+
if (isAMD) {
|
|
11008
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11009
|
+
}
|
|
11010
|
+
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
11011
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11012
|
+
}
|
|
10460
11013
|
async function importViews3dWebglManagedFBO() {
|
|
10461
11014
|
if (isAMD) {
|
|
10462
11015
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10471,13 +11024,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10471
11024
|
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10472
11025
|
return isDefaultModule(module) ? module.default : module;
|
|
10473
11026
|
}
|
|
10474
|
-
async function importViews3dWebgl() {
|
|
10475
|
-
if (isAMD) {
|
|
10476
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10477
|
-
}
|
|
10478
|
-
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10479
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10480
|
-
}
|
|
10481
11027
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10482
11028
|
if (isAMD) {
|
|
10483
11029
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10506,13 +11052,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10506
11052
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10507
11053
|
return isDefaultModule(module) ? module.default : module;
|
|
10508
11054
|
}
|
|
10509
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10510
|
-
if (isAMD) {
|
|
10511
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10512
|
-
}
|
|
10513
|
-
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10514
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10515
|
-
}
|
|
10516
11055
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10517
11056
|
if (isAMD) {
|
|
10518
11057
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10534,6 +11073,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10534
11073
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10535
11074
|
return isDefaultModule(module) ? module.default : module;
|
|
10536
11075
|
}
|
|
11076
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
11077
|
+
if (isAMD) {
|
|
11078
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
11079
|
+
}
|
|
11080
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
11081
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11082
|
+
}
|
|
10537
11083
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10538
11084
|
if (isAMD) {
|
|
10539
11085
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10548,6 +11094,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10548
11094
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10549
11095
|
return isDefaultModule(module) ? module.default : module;
|
|
10550
11096
|
}
|
|
11097
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
11098
|
+
if (isAMD) {
|
|
11099
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
11100
|
+
}
|
|
11101
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
11102
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11103
|
+
}
|
|
10551
11104
|
async function importApplicationsComponentsFontUtils() {
|
|
10552
11105
|
if (isAMD) {
|
|
10553
11106
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10569,6 +11122,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10569
11122
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10570
11123
|
return isDefaultModule(module) ? module.default : module;
|
|
10571
11124
|
}
|
|
11125
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11126
|
+
if (isAMD) {
|
|
11127
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11128
|
+
}
|
|
11129
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11130
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11131
|
+
}
|
|
10572
11132
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10573
11133
|
if (isAMD) {
|
|
10574
11134
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10597,6 +11157,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10597
11157
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10598
11158
|
return isDefaultModule(module) ? module.default : module;
|
|
10599
11159
|
}
|
|
11160
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11161
|
+
if (isAMD) {
|
|
11162
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11163
|
+
}
|
|
11164
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11165
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11166
|
+
}
|
|
10600
11167
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10601
11168
|
if (isAMD) {
|
|
10602
11169
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10611,6 +11178,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10611
11178
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10612
11179
|
return isDefaultModule(module) ? module.default : module;
|
|
10613
11180
|
}
|
|
11181
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11182
|
+
if (isAMD) {
|
|
11183
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11184
|
+
}
|
|
11185
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11186
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11187
|
+
}
|
|
10614
11188
|
async function importApplicationsComponentsStyleUtils() {
|
|
10615
11189
|
if (isAMD) {
|
|
10616
11190
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10673,6 +11247,16 @@ export {
|
|
|
10673
11247
|
importAnalysisDimensionAnalysis,
|
|
10674
11248
|
importAnalysisDimensionSimpleStyle,
|
|
10675
11249
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11250
|
+
importAnalysisElevationProfileAnalysis,
|
|
11251
|
+
importAnalysisElevationProfileGroundLine,
|
|
11252
|
+
importAnalysisElevationProfileInputLine,
|
|
11253
|
+
importAnalysisElevationProfileLine,
|
|
11254
|
+
importAnalysisElevationProfileLineChartOptions,
|
|
11255
|
+
importAnalysisElevationProfileLineViewOptions,
|
|
11256
|
+
importAnalysisElevationProfileQueryLine,
|
|
11257
|
+
importAnalysisElevationProfileSceneLine,
|
|
11258
|
+
importAnalysisElevationProfileUnits,
|
|
11259
|
+
importAnalysisElevationProfileViewOptions,
|
|
10676
11260
|
importAnalysisLengthDimension,
|
|
10677
11261
|
importAnalysisLineOfSightAnalysis,
|
|
10678
11262
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10682,18 +11266,25 @@ export {
|
|
|
10682
11266
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10683
11267
|
importAnalysisViewshed,
|
|
10684
11268
|
importAnalysisViewshedAnalysis,
|
|
11269
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11270
|
+
importAnalysisVolumeMeasurementCutFillOptions,
|
|
10685
11271
|
importApplicationsComponentsAnalysisUtils,
|
|
11272
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10686
11273
|
importApplicationsComponentsBasemapUtils,
|
|
10687
11274
|
importApplicationsComponentsDrawUtils,
|
|
11275
|
+
importApplicationsComponentsFeatureUtils,
|
|
10688
11276
|
importApplicationsComponentsFontUtils,
|
|
10689
11277
|
importApplicationsComponentsGetDefaultUnits,
|
|
10690
11278
|
importApplicationsComponentsGfxUtils,
|
|
11279
|
+
importApplicationsComponentsImageryUtils,
|
|
10691
11280
|
importApplicationsComponentsLayerOriginUtils,
|
|
10692
11281
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10693
11282
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10694
11283
|
importApplicationsComponentsReactiveUtils,
|
|
11284
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10695
11285
|
importApplicationsComponentsSelectionOperation,
|
|
10696
11286
|
importApplicationsComponentsSketchTooltipControls,
|
|
11287
|
+
importApplicationsComponentsStringUtils,
|
|
10697
11288
|
importApplicationsComponentsStyleUtils,
|
|
10698
11289
|
importApplicationsComponentsSvgUtils,
|
|
10699
11290
|
importApplicationsComponentsViewUtils,
|
|
@@ -10725,6 +11316,9 @@ export {
|
|
|
10725
11316
|
importCoreWorkersConnection,
|
|
10726
11317
|
importEditingSharedTemplatesSharedTemplate,
|
|
10727
11318
|
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
11319
|
+
importEffectsFocusArea,
|
|
11320
|
+
importEffectsFocusAreaOutline,
|
|
11321
|
+
importEffectsFocusAreas,
|
|
10728
11322
|
importFormElements,
|
|
10729
11323
|
importFormElementsAttachmentElement,
|
|
10730
11324
|
importFormElementsElement,
|
|
@@ -10838,6 +11432,30 @@ export {
|
|
|
10838
11432
|
importGeometrySupportNormalizeUtils,
|
|
10839
11433
|
importGeometrySupportWebMercatorUtils,
|
|
10840
11434
|
importGraphic,
|
|
11435
|
+
importGraphicBuildingGraphicOrigin,
|
|
11436
|
+
importGraphicCSVGraphicOrigin,
|
|
11437
|
+
importGraphicCatalogGraphicOrigin,
|
|
11438
|
+
importGraphicFeatureGraphicOrigin,
|
|
11439
|
+
importGraphicGeoJSONGraphicOrigin,
|
|
11440
|
+
importGraphicGeoRSSGraphicOrigin,
|
|
11441
|
+
importGraphicGraphicOrigin,
|
|
11442
|
+
importGraphicGraphicOrigins,
|
|
11443
|
+
importGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
11444
|
+
importGraphicIntegratedMeshGraphicOrigin,
|
|
11445
|
+
importGraphicKnowledgeGraphGraphicOrigin,
|
|
11446
|
+
importGraphicMapImageGraphicOrigin,
|
|
11447
|
+
importGraphicMapNotesGraphicOrigin,
|
|
11448
|
+
importGraphicOGCFeatureGraphicOrigin,
|
|
11449
|
+
importGraphicOrientedImageryGraphicOrigin,
|
|
11450
|
+
importGraphicParquetGraphicOrigin,
|
|
11451
|
+
importGraphicPointCloudGraphicOrigin,
|
|
11452
|
+
importGraphicSceneGraphicOrigin,
|
|
11453
|
+
importGraphicStreamGraphicOrigin,
|
|
11454
|
+
importGraphicSubtypeGroupGraphicOrigin,
|
|
11455
|
+
importGraphicTileGraphicOrigin,
|
|
11456
|
+
importGraphicVectorTileGraphicOrigin,
|
|
11457
|
+
importGraphicVoxelGraphicOrigin,
|
|
11458
|
+
importGraphicWFSGraphicOrigin,
|
|
10841
11459
|
importGround,
|
|
10842
11460
|
importIdentityCredential,
|
|
10843
11461
|
importIdentityIdentityManager,
|
|
@@ -10938,6 +11556,7 @@ export {
|
|
|
10938
11556
|
importLayersSupportParquetEncodingWkb,
|
|
10939
11557
|
importLayersSupportParquetUtils,
|
|
10940
11558
|
importLayersSupportPixelBlock,
|
|
11559
|
+
importLayersSupportPlaybackInfo,
|
|
10941
11560
|
importLayersSupportPublishingInfo,
|
|
10942
11561
|
importLayersSupportRangeDomain,
|
|
10943
11562
|
importLayersSupportRasterBandInfo,
|
|
@@ -11098,10 +11717,15 @@ export {
|
|
|
11098
11717
|
importRestKnowledgeGraphEntity,
|
|
11099
11718
|
importRestKnowledgeGraphEntityType,
|
|
11100
11719
|
importRestKnowledgeGraphFieldIndex,
|
|
11720
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11101
11721
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11722
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11102
11723
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11103
11724
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11725
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11726
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11104
11727
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11728
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11105
11729
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11106
11730
|
importRestKnowledgeGraphGraphObject,
|
|
11107
11731
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11113,6 +11737,9 @@ export {
|
|
|
11113
11737
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11114
11738
|
importRestKnowledgeGraphGraphSearch,
|
|
11115
11739
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11740
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11741
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11742
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11116
11743
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11117
11744
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11118
11745
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11354,6 +11981,8 @@ export {
|
|
|
11354
11981
|
importSymbolsSimpleMarkerSymbol,
|
|
11355
11982
|
importSymbolsSupportCimConversionUtils,
|
|
11356
11983
|
importSymbolsSupportCimSymbolUtils,
|
|
11984
|
+
importSymbolsSupportElevationInfo,
|
|
11985
|
+
importSymbolsSupportFeatureExpressionInfo,
|
|
11357
11986
|
importSymbolsSupportJsonUtils,
|
|
11358
11987
|
importSymbolsSupportStyleOrigin,
|
|
11359
11988
|
importSymbolsSupportSymbol3DVerticalOffset,
|
|
@@ -11387,10 +12016,12 @@ export {
|
|
|
11387
12016
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11388
12017
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11389
12018
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12019
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11390
12020
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11391
12021
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11392
12022
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11393
12023
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
12024
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11394
12025
|
importViews3dEnvironmentCloudyWeather,
|
|
11395
12026
|
importViews3dEnvironmentFoggyWeather,
|
|
11396
12027
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11404,6 +12035,7 @@ export {
|
|
|
11404
12035
|
importViews3dWebglManagedFBO,
|
|
11405
12036
|
importViews3dWebglRenderCamera,
|
|
11406
12037
|
importViews3dWebglRenderNode,
|
|
12038
|
+
importViewsAnalysisElevationProfileResult,
|
|
11407
12039
|
importViewsAnalysisLengthDimensionResult,
|
|
11408
12040
|
importViewsBasemapView,
|
|
11409
12041
|
importViewsDrawDraw,
|
|
@@ -11425,21 +12057,14 @@ export {
|
|
|
11425
12057
|
importViewsInteractiveTooltip,
|
|
11426
12058
|
importViewsLayersBuildingComponentSublayerView,
|
|
11427
12059
|
importViewsLayersBuildingSceneLayerView,
|
|
11428
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11429
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11430
|
-
importViewsLayersCatalogLayerView,
|
|
11431
12060
|
importViewsLayersDimensionLayerView,
|
|
11432
|
-
importViewsLayersFeatureLayerView,
|
|
11433
12061
|
importViewsLayersGroupLayerView,
|
|
11434
12062
|
importViewsLayersImageryLayerView,
|
|
11435
12063
|
importViewsLayersImageryTileLayerView,
|
|
11436
12064
|
importViewsLayersLayerView,
|
|
11437
12065
|
importViewsLayersLineOfSightLayerView,
|
|
11438
12066
|
importViewsLayersMediaLayerView,
|
|
11439
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11440
|
-
importViewsLayersPointCloudLayerView,
|
|
11441
12067
|
importViewsLayersSceneLayerView,
|
|
11442
|
-
importViewsLayersStreamLayerView,
|
|
11443
12068
|
importViewsLayersViewshedLayerView,
|
|
11444
12069
|
importViewsLinkChartView,
|
|
11445
12070
|
importViewsMagnifier,
|
|
@@ -11524,6 +12149,9 @@ export {
|
|
|
11524
12149
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11525
12150
|
importWidgetsBatchAttributeForm,
|
|
11526
12151
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12152
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12153
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
12154
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11527
12155
|
importWidgetsBookmarks,
|
|
11528
12156
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11529
12157
|
importWidgetsBuildingExplorer,
|
|
@@ -11720,6 +12348,16 @@ export {
|
|
|
11720
12348
|
newAnalysisDimensionAnalysis,
|
|
11721
12349
|
newAnalysisDimensionSimpleStyle,
|
|
11722
12350
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12351
|
+
newAnalysisElevationProfileAnalysis,
|
|
12352
|
+
newAnalysisElevationProfileGroundLine,
|
|
12353
|
+
newAnalysisElevationProfileInputLine,
|
|
12354
|
+
newAnalysisElevationProfileLine,
|
|
12355
|
+
newAnalysisElevationProfileLineChartOptions,
|
|
12356
|
+
newAnalysisElevationProfileLineViewOptions,
|
|
12357
|
+
newAnalysisElevationProfileQueryLine,
|
|
12358
|
+
newAnalysisElevationProfileSceneLine,
|
|
12359
|
+
newAnalysisElevationProfileUnits,
|
|
12360
|
+
newAnalysisElevationProfileViewOptions,
|
|
11723
12361
|
newAnalysisLengthDimension,
|
|
11724
12362
|
newAnalysisLineOfSightAnalysis,
|
|
11725
12363
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11729,6 +12367,8 @@ export {
|
|
|
11729
12367
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11730
12368
|
newAnalysisViewshed,
|
|
11731
12369
|
newAnalysisViewshedAnalysis,
|
|
12370
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12371
|
+
newAnalysisVolumeMeasurementCutFillOptions,
|
|
11732
12372
|
newAttributeBinsGraphic,
|
|
11733
12373
|
newBasemap,
|
|
11734
12374
|
newCamera,
|
|
@@ -11739,6 +12379,9 @@ export {
|
|
|
11739
12379
|
newCoreError,
|
|
11740
12380
|
newCoreHandles,
|
|
11741
12381
|
newCoreWorkersConnection,
|
|
12382
|
+
newEffectsFocusArea,
|
|
12383
|
+
newEffectsFocusAreaOutline,
|
|
12384
|
+
newEffectsFocusAreas,
|
|
11742
12385
|
newFormElementsAttachmentElement,
|
|
11743
12386
|
newFormElementsElement,
|
|
11744
12387
|
newFormElementsFieldElement,
|
|
@@ -11788,6 +12431,29 @@ export {
|
|
|
11788
12431
|
newGeometrySupportMeshTextureTransform,
|
|
11789
12432
|
newGeometrySupportMeshTransform,
|
|
11790
12433
|
newGraphic,
|
|
12434
|
+
newGraphicBuildingGraphicOrigin,
|
|
12435
|
+
newGraphicCSVGraphicOrigin,
|
|
12436
|
+
newGraphicCatalogGraphicOrigin,
|
|
12437
|
+
newGraphicFeatureGraphicOrigin,
|
|
12438
|
+
newGraphicGeoJSONGraphicOrigin,
|
|
12439
|
+
newGraphicGeoRSSGraphicOrigin,
|
|
12440
|
+
newGraphicGraphicOrigin,
|
|
12441
|
+
newGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
12442
|
+
newGraphicIntegratedMeshGraphicOrigin,
|
|
12443
|
+
newGraphicKnowledgeGraphGraphicOrigin,
|
|
12444
|
+
newGraphicMapImageGraphicOrigin,
|
|
12445
|
+
newGraphicMapNotesGraphicOrigin,
|
|
12446
|
+
newGraphicOGCFeatureGraphicOrigin,
|
|
12447
|
+
newGraphicOrientedImageryGraphicOrigin,
|
|
12448
|
+
newGraphicParquetGraphicOrigin,
|
|
12449
|
+
newGraphicPointCloudGraphicOrigin,
|
|
12450
|
+
newGraphicSceneGraphicOrigin,
|
|
12451
|
+
newGraphicStreamGraphicOrigin,
|
|
12452
|
+
newGraphicSubtypeGroupGraphicOrigin,
|
|
12453
|
+
newGraphicTileGraphicOrigin,
|
|
12454
|
+
newGraphicVectorTileGraphicOrigin,
|
|
12455
|
+
newGraphicVoxelGraphicOrigin,
|
|
12456
|
+
newGraphicWFSGraphicOrigin,
|
|
11791
12457
|
newGround,
|
|
11792
12458
|
newIdentityCredential,
|
|
11793
12459
|
newIdentityOAuthInfo,
|
|
@@ -11876,6 +12542,7 @@ export {
|
|
|
11876
12542
|
newLayersSupportParquetEncodingLocation,
|
|
11877
12543
|
newLayersSupportParquetEncodingWkb,
|
|
11878
12544
|
newLayersSupportPixelBlock,
|
|
12545
|
+
newLayersSupportPlaybackInfo,
|
|
11879
12546
|
newLayersSupportPublishingInfo,
|
|
11880
12547
|
newLayersSupportRangeDomain,
|
|
11881
12548
|
newLayersSupportRasterBandInfo,
|
|
@@ -12016,10 +12683,15 @@ export {
|
|
|
12016
12683
|
newRestKnowledgeGraphEntity,
|
|
12017
12684
|
newRestKnowledgeGraphEntityType,
|
|
12018
12685
|
newRestKnowledgeGraphFieldIndex,
|
|
12686
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12019
12687
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12688
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12020
12689
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12021
12690
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12691
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12692
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12022
12693
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12694
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12023
12695
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12024
12696
|
newRestKnowledgeGraphGraphObject,
|
|
12025
12697
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12031,6 +12703,9 @@ export {
|
|
|
12031
12703
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12032
12704
|
newRestKnowledgeGraphGraphSearch,
|
|
12033
12705
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12706
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12707
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12708
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12034
12709
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12035
12710
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12036
12711
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12204,6 +12879,8 @@ export {
|
|
|
12204
12879
|
newSymbolsSimpleFillSymbol,
|
|
12205
12880
|
newSymbolsSimpleLineSymbol,
|
|
12206
12881
|
newSymbolsSimpleMarkerSymbol,
|
|
12882
|
+
newSymbolsSupportElevationInfo,
|
|
12883
|
+
newSymbolsSupportFeatureExpressionInfo,
|
|
12207
12884
|
newSymbolsSupportStyleOrigin,
|
|
12208
12885
|
newSymbolsSupportSymbol3DVerticalOffset,
|
|
12209
12886
|
newSymbolsSymbol,
|
|
@@ -12232,10 +12909,12 @@ export {
|
|
|
12232
12909
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12233
12910
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12234
12911
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12912
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12235
12913
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12236
12914
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12237
12915
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12238
12916
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12917
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12239
12918
|
newViews3dEnvironmentCloudyWeather,
|
|
12240
12919
|
newViews3dEnvironmentFoggyWeather,
|
|
12241
12920
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12244,6 +12923,7 @@ export {
|
|
|
12244
12923
|
newViews3dEnvironmentSunnyWeather,
|
|
12245
12924
|
newViews3dEnvironmentVirtualLighting,
|
|
12246
12925
|
newViews3dWebglRenderNode,
|
|
12926
|
+
newViewsAnalysisElevationProfileResult,
|
|
12247
12927
|
newViewsBasemapView,
|
|
12248
12928
|
newViewsDrawDraw,
|
|
12249
12929
|
newViewsDrawDrawAction,
|
|
@@ -12264,21 +12944,14 @@ export {
|
|
|
12264
12944
|
newViewsInteractiveTooltip,
|
|
12265
12945
|
newViewsLayersBuildingComponentSublayerView,
|
|
12266
12946
|
newViewsLayersBuildingSceneLayerView,
|
|
12267
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12268
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12269
|
-
newViewsLayersCatalogLayerView,
|
|
12270
12947
|
newViewsLayersDimensionLayerView,
|
|
12271
|
-
newViewsLayersFeatureLayerView,
|
|
12272
12948
|
newViewsLayersGroupLayerView,
|
|
12273
12949
|
newViewsLayersImageryLayerView,
|
|
12274
12950
|
newViewsLayersImageryTileLayerView,
|
|
12275
12951
|
newViewsLayersLayerView,
|
|
12276
12952
|
newViewsLayersLineOfSightLayerView,
|
|
12277
12953
|
newViewsLayersMediaLayerView,
|
|
12278
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12279
|
-
newViewsLayersPointCloudLayerView,
|
|
12280
12954
|
newViewsLayersSceneLayerView,
|
|
12281
|
-
newViewsLayersStreamLayerView,
|
|
12282
12955
|
newViewsLayersViewshedLayerView,
|
|
12283
12956
|
newViewsLinkChartView,
|
|
12284
12957
|
newViewsMagnifier,
|
|
@@ -12361,6 +13034,10 @@ export {
|
|
|
12361
13034
|
newWidgetsBasemapToggle,
|
|
12362
13035
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12363
13036
|
newWidgetsBatchAttributeForm,
|
|
13037
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
13038
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
13039
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
13040
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12364
13041
|
newWidgetsBookmarks,
|
|
12365
13042
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12366
13043
|
newWidgetsBuildingExplorer,
|