@arcgis/core-adapter 4.34.0-next.9 → 4.34.0-next.90
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 +821 -136
- package/dist/index.d.cts +134 -30
- package/dist/index.d.ts +134 -30
- package/dist/index.js +821 -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 importAnalysisElevationProfileElevationProfileGroundLine() {
|
|
229
|
+
if (isAMD) {
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileGroundLine");
|
|
231
|
+
}
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileGroundLine.js");
|
|
233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
234
|
+
}
|
|
235
|
+
async function newAnalysisElevationProfileElevationProfileGroundLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileGroundLine();
|
|
237
|
+
return new ModConstructor(properties);
|
|
238
|
+
}
|
|
239
|
+
async function importAnalysisElevationProfileElevationProfileInputLine() {
|
|
240
|
+
if (isAMD) {
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileInputLine");
|
|
242
|
+
}
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileInputLine.js");
|
|
244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
245
|
+
}
|
|
246
|
+
async function newAnalysisElevationProfileElevationProfileInputLine(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileInputLine();
|
|
248
|
+
return new ModConstructor(properties);
|
|
249
|
+
}
|
|
250
|
+
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
251
|
+
if (isAMD) {
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
253
|
+
}
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
255
|
+
return isDefaultModule(module) ? module.default : module;
|
|
256
|
+
}
|
|
257
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
259
|
+
return new ModConstructor(properties);
|
|
260
|
+
}
|
|
261
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
262
|
+
if (isAMD) {
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
264
|
+
}
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
266
|
+
return isDefaultModule(module) ? module.default : module;
|
|
267
|
+
}
|
|
268
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
270
|
+
return new ModConstructor(properties);
|
|
271
|
+
}
|
|
272
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importAnalysisElevationProfileElevationProfileQueryLine() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileQueryLine");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileQueryLine.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisElevationProfileElevationProfileQueryLine(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileQueryLine();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileElevationProfileSceneLine() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileSceneLine");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileSceneLine.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileElevationProfileSceneLine(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileSceneLine();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
305
|
+
async function importAnalysisElevationProfileElevationProfileUnits() {
|
|
306
|
+
if (isAMD) {
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileUnits");
|
|
308
|
+
}
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileUnits.js");
|
|
310
|
+
return isDefaultModule(module) ? module.default : module;
|
|
311
|
+
}
|
|
312
|
+
async function newAnalysisElevationProfileElevationProfileUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileUnits();
|
|
314
|
+
return new ModConstructor(properties);
|
|
315
|
+
}
|
|
316
|
+
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
317
|
+
if (isAMD) {
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileViewOptions");
|
|
319
|
+
}
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileViewOptions.js");
|
|
321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
322
|
+
}
|
|
323
|
+
async function newAnalysisElevationProfileElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
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 importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
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 importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5839
6422
|
if (isAMD) {
|
|
5840
|
-
return await window.$arcgis.import("esri/views/
|
|
6423
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5841
6424
|
}
|
|
5842
|
-
const module = await import("@arcgis/core/views/
|
|
6425
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5843
6426
|
return isDefaultModule(module) ? module.default : module;
|
|
5844
6427
|
}
|
|
5845
|
-
async function
|
|
5846
|
-
const ModConstructor = await
|
|
6428
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6429
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
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");
|
|
@@ -10555,6 +11108,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10555
11108
|
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10556
11109
|
return isDefaultModule(module) ? module.default : module;
|
|
10557
11110
|
}
|
|
11111
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
11112
|
+
if (isAMD) {
|
|
11113
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
11114
|
+
}
|
|
11115
|
+
const module = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
11116
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11117
|
+
}
|
|
10558
11118
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10559
11119
|
if (isAMD) {
|
|
10560
11120
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10569,6 +11129,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10569
11129
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10570
11130
|
return isDefaultModule(module) ? module.default : module;
|
|
10571
11131
|
}
|
|
11132
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11133
|
+
if (isAMD) {
|
|
11134
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11135
|
+
}
|
|
11136
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11137
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11138
|
+
}
|
|
10572
11139
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10573
11140
|
if (isAMD) {
|
|
10574
11141
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10597,6 +11164,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10597
11164
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10598
11165
|
return isDefaultModule(module) ? module.default : module;
|
|
10599
11166
|
}
|
|
11167
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11168
|
+
if (isAMD) {
|
|
11169
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11170
|
+
}
|
|
11171
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11172
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11173
|
+
}
|
|
10600
11174
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10601
11175
|
if (isAMD) {
|
|
10602
11176
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10611,6 +11185,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10611
11185
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10612
11186
|
return isDefaultModule(module) ? module.default : module;
|
|
10613
11187
|
}
|
|
11188
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11189
|
+
if (isAMD) {
|
|
11190
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11191
|
+
}
|
|
11192
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11193
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11194
|
+
}
|
|
10614
11195
|
async function importApplicationsComponentsStyleUtils() {
|
|
10615
11196
|
if (isAMD) {
|
|
10616
11197
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10673,6 +11254,16 @@ export {
|
|
|
10673
11254
|
importAnalysisDimensionAnalysis,
|
|
10674
11255
|
importAnalysisDimensionSimpleStyle,
|
|
10675
11256
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11257
|
+
importAnalysisElevationProfileAnalysis,
|
|
11258
|
+
importAnalysisElevationProfileElevationProfileGroundLine,
|
|
11259
|
+
importAnalysisElevationProfileElevationProfileInputLine,
|
|
11260
|
+
importAnalysisElevationProfileElevationProfileLine,
|
|
11261
|
+
importAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
11262
|
+
importAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
11263
|
+
importAnalysisElevationProfileElevationProfileQueryLine,
|
|
11264
|
+
importAnalysisElevationProfileElevationProfileSceneLine,
|
|
11265
|
+
importAnalysisElevationProfileElevationProfileUnits,
|
|
11266
|
+
importAnalysisElevationProfileElevationProfileViewOptions,
|
|
10676
11267
|
importAnalysisLengthDimension,
|
|
10677
11268
|
importAnalysisLineOfSightAnalysis,
|
|
10678
11269
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10682,18 +11273,26 @@ export {
|
|
|
10682
11273
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10683
11274
|
importAnalysisViewshed,
|
|
10684
11275
|
importAnalysisViewshedAnalysis,
|
|
11276
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11277
|
+
importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
10685
11278
|
importApplicationsComponentsAnalysisUtils,
|
|
11279
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10686
11280
|
importApplicationsComponentsBasemapUtils,
|
|
10687
11281
|
importApplicationsComponentsDrawUtils,
|
|
11282
|
+
importApplicationsComponentsFeatureUtils,
|
|
10688
11283
|
importApplicationsComponentsFontUtils,
|
|
11284
|
+
importApplicationsComponentsFormatUtils,
|
|
10689
11285
|
importApplicationsComponentsGetDefaultUnits,
|
|
10690
11286
|
importApplicationsComponentsGfxUtils,
|
|
11287
|
+
importApplicationsComponentsImageryUtils,
|
|
10691
11288
|
importApplicationsComponentsLayerOriginUtils,
|
|
10692
11289
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10693
11290
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10694
11291
|
importApplicationsComponentsReactiveUtils,
|
|
11292
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10695
11293
|
importApplicationsComponentsSelectionOperation,
|
|
10696
11294
|
importApplicationsComponentsSketchTooltipControls,
|
|
11295
|
+
importApplicationsComponentsStringUtils,
|
|
10697
11296
|
importApplicationsComponentsStyleUtils,
|
|
10698
11297
|
importApplicationsComponentsSvgUtils,
|
|
10699
11298
|
importApplicationsComponentsViewUtils,
|
|
@@ -10725,6 +11324,9 @@ export {
|
|
|
10725
11324
|
importCoreWorkersConnection,
|
|
10726
11325
|
importEditingSharedTemplatesSharedTemplate,
|
|
10727
11326
|
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
11327
|
+
importEffectsFocusArea,
|
|
11328
|
+
importEffectsFocusAreaOutline,
|
|
11329
|
+
importEffectsFocusAreas,
|
|
10728
11330
|
importFormElements,
|
|
10729
11331
|
importFormElementsAttachmentElement,
|
|
10730
11332
|
importFormElementsElement,
|
|
@@ -10838,6 +11440,30 @@ export {
|
|
|
10838
11440
|
importGeometrySupportNormalizeUtils,
|
|
10839
11441
|
importGeometrySupportWebMercatorUtils,
|
|
10840
11442
|
importGraphic,
|
|
11443
|
+
importGraphicBuildingGraphicOrigin,
|
|
11444
|
+
importGraphicCSVGraphicOrigin,
|
|
11445
|
+
importGraphicCatalogGraphicOrigin,
|
|
11446
|
+
importGraphicFeatureGraphicOrigin,
|
|
11447
|
+
importGraphicGeoJSONGraphicOrigin,
|
|
11448
|
+
importGraphicGeoRSSGraphicOrigin,
|
|
11449
|
+
importGraphicGraphicOrigin,
|
|
11450
|
+
importGraphicGraphicOrigins,
|
|
11451
|
+
importGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
11452
|
+
importGraphicIntegratedMeshGraphicOrigin,
|
|
11453
|
+
importGraphicKnowledgeGraphGraphicOrigin,
|
|
11454
|
+
importGraphicMapImageGraphicOrigin,
|
|
11455
|
+
importGraphicMapNotesGraphicOrigin,
|
|
11456
|
+
importGraphicOGCFeatureGraphicOrigin,
|
|
11457
|
+
importGraphicOrientedImageryGraphicOrigin,
|
|
11458
|
+
importGraphicParquetGraphicOrigin,
|
|
11459
|
+
importGraphicPointCloudGraphicOrigin,
|
|
11460
|
+
importGraphicSceneGraphicOrigin,
|
|
11461
|
+
importGraphicStreamGraphicOrigin,
|
|
11462
|
+
importGraphicSubtypeGroupGraphicOrigin,
|
|
11463
|
+
importGraphicTileGraphicOrigin,
|
|
11464
|
+
importGraphicVectorTileGraphicOrigin,
|
|
11465
|
+
importGraphicVoxelGraphicOrigin,
|
|
11466
|
+
importGraphicWFSGraphicOrigin,
|
|
10841
11467
|
importGround,
|
|
10842
11468
|
importIdentityCredential,
|
|
10843
11469
|
importIdentityIdentityManager,
|
|
@@ -10938,6 +11564,7 @@ export {
|
|
|
10938
11564
|
importLayersSupportParquetEncodingWkb,
|
|
10939
11565
|
importLayersSupportParquetUtils,
|
|
10940
11566
|
importLayersSupportPixelBlock,
|
|
11567
|
+
importLayersSupportPlaybackInfo,
|
|
10941
11568
|
importLayersSupportPublishingInfo,
|
|
10942
11569
|
importLayersSupportRangeDomain,
|
|
10943
11570
|
importLayersSupportRasterBandInfo,
|
|
@@ -11098,10 +11725,15 @@ export {
|
|
|
11098
11725
|
importRestKnowledgeGraphEntity,
|
|
11099
11726
|
importRestKnowledgeGraphEntityType,
|
|
11100
11727
|
importRestKnowledgeGraphFieldIndex,
|
|
11728
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11101
11729
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11730
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11102
11731
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11103
11732
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11733
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11734
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11104
11735
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11736
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11105
11737
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11106
11738
|
importRestKnowledgeGraphGraphObject,
|
|
11107
11739
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11113,6 +11745,9 @@ export {
|
|
|
11113
11745
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11114
11746
|
importRestKnowledgeGraphGraphSearch,
|
|
11115
11747
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11748
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11749
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11750
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11116
11751
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11117
11752
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11118
11753
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11354,6 +11989,8 @@ export {
|
|
|
11354
11989
|
importSymbolsSimpleMarkerSymbol,
|
|
11355
11990
|
importSymbolsSupportCimConversionUtils,
|
|
11356
11991
|
importSymbolsSupportCimSymbolUtils,
|
|
11992
|
+
importSymbolsSupportElevationInfo,
|
|
11993
|
+
importSymbolsSupportFeatureExpressionInfo,
|
|
11357
11994
|
importSymbolsSupportJsonUtils,
|
|
11358
11995
|
importSymbolsSupportStyleOrigin,
|
|
11359
11996
|
importSymbolsSupportSymbol3DVerticalOffset,
|
|
@@ -11387,10 +12024,12 @@ export {
|
|
|
11387
12024
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11388
12025
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11389
12026
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12027
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11390
12028
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11391
12029
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11392
12030
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11393
12031
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
12032
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11394
12033
|
importViews3dEnvironmentCloudyWeather,
|
|
11395
12034
|
importViews3dEnvironmentFoggyWeather,
|
|
11396
12035
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11404,6 +12043,7 @@ export {
|
|
|
11404
12043
|
importViews3dWebglManagedFBO,
|
|
11405
12044
|
importViews3dWebglRenderCamera,
|
|
11406
12045
|
importViews3dWebglRenderNode,
|
|
12046
|
+
importViewsAnalysisElevationProfileElevationProfileResult,
|
|
11407
12047
|
importViewsAnalysisLengthDimensionResult,
|
|
11408
12048
|
importViewsBasemapView,
|
|
11409
12049
|
importViewsDrawDraw,
|
|
@@ -11425,21 +12065,14 @@ export {
|
|
|
11425
12065
|
importViewsInteractiveTooltip,
|
|
11426
12066
|
importViewsLayersBuildingComponentSublayerView,
|
|
11427
12067
|
importViewsLayersBuildingSceneLayerView,
|
|
11428
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11429
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11430
|
-
importViewsLayersCatalogLayerView,
|
|
11431
12068
|
importViewsLayersDimensionLayerView,
|
|
11432
|
-
importViewsLayersFeatureLayerView,
|
|
11433
12069
|
importViewsLayersGroupLayerView,
|
|
11434
12070
|
importViewsLayersImageryLayerView,
|
|
11435
12071
|
importViewsLayersImageryTileLayerView,
|
|
11436
12072
|
importViewsLayersLayerView,
|
|
11437
12073
|
importViewsLayersLineOfSightLayerView,
|
|
11438
12074
|
importViewsLayersMediaLayerView,
|
|
11439
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11440
|
-
importViewsLayersPointCloudLayerView,
|
|
11441
12075
|
importViewsLayersSceneLayerView,
|
|
11442
|
-
importViewsLayersStreamLayerView,
|
|
11443
12076
|
importViewsLayersViewshedLayerView,
|
|
11444
12077
|
importViewsLinkChartView,
|
|
11445
12078
|
importViewsMagnifier,
|
|
@@ -11524,6 +12157,9 @@ export {
|
|
|
11524
12157
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11525
12158
|
importWidgetsBatchAttributeForm,
|
|
11526
12159
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12160
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12161
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
12162
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11527
12163
|
importWidgetsBookmarks,
|
|
11528
12164
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11529
12165
|
importWidgetsBuildingExplorer,
|
|
@@ -11720,6 +12356,16 @@ export {
|
|
|
11720
12356
|
newAnalysisDimensionAnalysis,
|
|
11721
12357
|
newAnalysisDimensionSimpleStyle,
|
|
11722
12358
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12359
|
+
newAnalysisElevationProfileAnalysis,
|
|
12360
|
+
newAnalysisElevationProfileElevationProfileGroundLine,
|
|
12361
|
+
newAnalysisElevationProfileElevationProfileInputLine,
|
|
12362
|
+
newAnalysisElevationProfileElevationProfileLine,
|
|
12363
|
+
newAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
12364
|
+
newAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
12365
|
+
newAnalysisElevationProfileElevationProfileQueryLine,
|
|
12366
|
+
newAnalysisElevationProfileElevationProfileSceneLine,
|
|
12367
|
+
newAnalysisElevationProfileElevationProfileUnits,
|
|
12368
|
+
newAnalysisElevationProfileElevationProfileViewOptions,
|
|
11723
12369
|
newAnalysisLengthDimension,
|
|
11724
12370
|
newAnalysisLineOfSightAnalysis,
|
|
11725
12371
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11729,6 +12375,8 @@ export {
|
|
|
11729
12375
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11730
12376
|
newAnalysisViewshed,
|
|
11731
12377
|
newAnalysisViewshedAnalysis,
|
|
12378
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12379
|
+
newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
11732
12380
|
newAttributeBinsGraphic,
|
|
11733
12381
|
newBasemap,
|
|
11734
12382
|
newCamera,
|
|
@@ -11739,6 +12387,9 @@ export {
|
|
|
11739
12387
|
newCoreError,
|
|
11740
12388
|
newCoreHandles,
|
|
11741
12389
|
newCoreWorkersConnection,
|
|
12390
|
+
newEffectsFocusArea,
|
|
12391
|
+
newEffectsFocusAreaOutline,
|
|
12392
|
+
newEffectsFocusAreas,
|
|
11742
12393
|
newFormElementsAttachmentElement,
|
|
11743
12394
|
newFormElementsElement,
|
|
11744
12395
|
newFormElementsFieldElement,
|
|
@@ -11788,6 +12439,29 @@ export {
|
|
|
11788
12439
|
newGeometrySupportMeshTextureTransform,
|
|
11789
12440
|
newGeometrySupportMeshTransform,
|
|
11790
12441
|
newGraphic,
|
|
12442
|
+
newGraphicBuildingGraphicOrigin,
|
|
12443
|
+
newGraphicCSVGraphicOrigin,
|
|
12444
|
+
newGraphicCatalogGraphicOrigin,
|
|
12445
|
+
newGraphicFeatureGraphicOrigin,
|
|
12446
|
+
newGraphicGeoJSONGraphicOrigin,
|
|
12447
|
+
newGraphicGeoRSSGraphicOrigin,
|
|
12448
|
+
newGraphicGraphicOrigin,
|
|
12449
|
+
newGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
12450
|
+
newGraphicIntegratedMeshGraphicOrigin,
|
|
12451
|
+
newGraphicKnowledgeGraphGraphicOrigin,
|
|
12452
|
+
newGraphicMapImageGraphicOrigin,
|
|
12453
|
+
newGraphicMapNotesGraphicOrigin,
|
|
12454
|
+
newGraphicOGCFeatureGraphicOrigin,
|
|
12455
|
+
newGraphicOrientedImageryGraphicOrigin,
|
|
12456
|
+
newGraphicParquetGraphicOrigin,
|
|
12457
|
+
newGraphicPointCloudGraphicOrigin,
|
|
12458
|
+
newGraphicSceneGraphicOrigin,
|
|
12459
|
+
newGraphicStreamGraphicOrigin,
|
|
12460
|
+
newGraphicSubtypeGroupGraphicOrigin,
|
|
12461
|
+
newGraphicTileGraphicOrigin,
|
|
12462
|
+
newGraphicVectorTileGraphicOrigin,
|
|
12463
|
+
newGraphicVoxelGraphicOrigin,
|
|
12464
|
+
newGraphicWFSGraphicOrigin,
|
|
11791
12465
|
newGround,
|
|
11792
12466
|
newIdentityCredential,
|
|
11793
12467
|
newIdentityOAuthInfo,
|
|
@@ -11876,6 +12550,7 @@ export {
|
|
|
11876
12550
|
newLayersSupportParquetEncodingLocation,
|
|
11877
12551
|
newLayersSupportParquetEncodingWkb,
|
|
11878
12552
|
newLayersSupportPixelBlock,
|
|
12553
|
+
newLayersSupportPlaybackInfo,
|
|
11879
12554
|
newLayersSupportPublishingInfo,
|
|
11880
12555
|
newLayersSupportRangeDomain,
|
|
11881
12556
|
newLayersSupportRasterBandInfo,
|
|
@@ -12016,10 +12691,15 @@ export {
|
|
|
12016
12691
|
newRestKnowledgeGraphEntity,
|
|
12017
12692
|
newRestKnowledgeGraphEntityType,
|
|
12018
12693
|
newRestKnowledgeGraphFieldIndex,
|
|
12694
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12019
12695
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12696
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12020
12697
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12021
12698
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12699
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12700
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12022
12701
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12702
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12023
12703
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12024
12704
|
newRestKnowledgeGraphGraphObject,
|
|
12025
12705
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12031,6 +12711,9 @@ export {
|
|
|
12031
12711
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12032
12712
|
newRestKnowledgeGraphGraphSearch,
|
|
12033
12713
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12714
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12715
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12716
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12034
12717
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12035
12718
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12036
12719
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12204,6 +12887,8 @@ export {
|
|
|
12204
12887
|
newSymbolsSimpleFillSymbol,
|
|
12205
12888
|
newSymbolsSimpleLineSymbol,
|
|
12206
12889
|
newSymbolsSimpleMarkerSymbol,
|
|
12890
|
+
newSymbolsSupportElevationInfo,
|
|
12891
|
+
newSymbolsSupportFeatureExpressionInfo,
|
|
12207
12892
|
newSymbolsSupportStyleOrigin,
|
|
12208
12893
|
newSymbolsSupportSymbol3DVerticalOffset,
|
|
12209
12894
|
newSymbolsSymbol,
|
|
@@ -12232,10 +12917,12 @@ export {
|
|
|
12232
12917
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12233
12918
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12234
12919
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12920
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12235
12921
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12236
12922
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12237
12923
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12238
12924
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12925
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12239
12926
|
newViews3dEnvironmentCloudyWeather,
|
|
12240
12927
|
newViews3dEnvironmentFoggyWeather,
|
|
12241
12928
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12244,6 +12931,7 @@ export {
|
|
|
12244
12931
|
newViews3dEnvironmentSunnyWeather,
|
|
12245
12932
|
newViews3dEnvironmentVirtualLighting,
|
|
12246
12933
|
newViews3dWebglRenderNode,
|
|
12934
|
+
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
12247
12935
|
newViewsBasemapView,
|
|
12248
12936
|
newViewsDrawDraw,
|
|
12249
12937
|
newViewsDrawDrawAction,
|
|
@@ -12264,21 +12952,14 @@ export {
|
|
|
12264
12952
|
newViewsInteractiveTooltip,
|
|
12265
12953
|
newViewsLayersBuildingComponentSublayerView,
|
|
12266
12954
|
newViewsLayersBuildingSceneLayerView,
|
|
12267
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12268
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12269
|
-
newViewsLayersCatalogLayerView,
|
|
12270
12955
|
newViewsLayersDimensionLayerView,
|
|
12271
|
-
newViewsLayersFeatureLayerView,
|
|
12272
12956
|
newViewsLayersGroupLayerView,
|
|
12273
12957
|
newViewsLayersImageryLayerView,
|
|
12274
12958
|
newViewsLayersImageryTileLayerView,
|
|
12275
12959
|
newViewsLayersLayerView,
|
|
12276
12960
|
newViewsLayersLineOfSightLayerView,
|
|
12277
12961
|
newViewsLayersMediaLayerView,
|
|
12278
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12279
|
-
newViewsLayersPointCloudLayerView,
|
|
12280
12962
|
newViewsLayersSceneLayerView,
|
|
12281
|
-
newViewsLayersStreamLayerView,
|
|
12282
12963
|
newViewsLayersViewshedLayerView,
|
|
12283
12964
|
newViewsLinkChartView,
|
|
12284
12965
|
newViewsMagnifier,
|
|
@@ -12361,6 +13042,10 @@ export {
|
|
|
12361
13042
|
newWidgetsBasemapToggle,
|
|
12362
13043
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12363
13044
|
newWidgetsBatchAttributeForm,
|
|
13045
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
13046
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
13047
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
13048
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12364
13049
|
newWidgetsBookmarks,
|
|
12365
13050
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12366
13051
|
newWidgetsBuildingExplorer,
|