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