@arcgis/core-adapter 4.34.0-next.15 → 4.34.0-next.151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +2 -10
- package/dist/index.cjs +641 -231
- package/dist/index.d.cts +113 -52
- package/dist/index.d.ts +113 -52
- package/dist/index.js +641 -231
- 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 importAnalysisElevationProfileElevationProfileLine() {
|
|
253
|
+
if (isAMD) {
|
|
254
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
255
|
+
}
|
|
256
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
257
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
258
|
+
}
|
|
259
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
260
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
261
|
+
return new ModConstructor(properties);
|
|
262
|
+
}
|
|
263
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
264
|
+
if (isAMD) {
|
|
265
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
266
|
+
}
|
|
267
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
268
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
269
|
+
}
|
|
270
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
271
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
272
|
+
return new ModConstructor(properties);
|
|
273
|
+
}
|
|
274
|
+
async function importAnalysisElevationProfileElevationProfileLineGround() {
|
|
275
|
+
if (isAMD) {
|
|
276
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineGround");
|
|
277
|
+
}
|
|
278
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineGround.js");
|
|
279
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
280
|
+
}
|
|
281
|
+
async function newAnalysisElevationProfileElevationProfileLineGround(properties) {
|
|
282
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineGround();
|
|
283
|
+
return new ModConstructor(properties);
|
|
284
|
+
}
|
|
285
|
+
async function importAnalysisElevationProfileElevationProfileLineInput() {
|
|
286
|
+
if (isAMD) {
|
|
287
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineInput");
|
|
288
|
+
}
|
|
289
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineInput.js");
|
|
290
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
291
|
+
}
|
|
292
|
+
async function newAnalysisElevationProfileElevationProfileLineInput(properties) {
|
|
293
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineInput();
|
|
294
|
+
return new ModConstructor(properties);
|
|
295
|
+
}
|
|
296
|
+
async function importAnalysisElevationProfileElevationProfileLineQuery() {
|
|
297
|
+
if (isAMD) {
|
|
298
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineQuery");
|
|
299
|
+
}
|
|
300
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineQuery.js");
|
|
301
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
302
|
+
}
|
|
303
|
+
async function newAnalysisElevationProfileElevationProfileLineQuery(properties) {
|
|
304
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineQuery();
|
|
305
|
+
return new ModConstructor(properties);
|
|
306
|
+
}
|
|
307
|
+
async function importAnalysisElevationProfileElevationProfileLineScene() {
|
|
308
|
+
if (isAMD) {
|
|
309
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineScene");
|
|
310
|
+
}
|
|
311
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineScene.js");
|
|
312
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
|
+
}
|
|
314
|
+
async function newAnalysisElevationProfileElevationProfileLineScene(properties) {
|
|
315
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineScene();
|
|
316
|
+
return new ModConstructor(properties);
|
|
317
|
+
}
|
|
318
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
326
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
329
|
+
async function importAnalysisElevationProfileElevationProfileDisplayUnits() {
|
|
330
|
+
if (isAMD) {
|
|
331
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileDisplayUnits");
|
|
332
|
+
}
|
|
333
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileDisplayUnits.js");
|
|
334
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
|
+
}
|
|
336
|
+
async function newAnalysisElevationProfileElevationProfileDisplayUnits(properties) {
|
|
337
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileDisplayUnits();
|
|
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,39 @@ 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
|
+
}
|
|
373
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
374
|
+
if (isAMD) {
|
|
375
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
376
|
+
}
|
|
377
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
378
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
379
|
+
}
|
|
380
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
381
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
382
|
+
return new ModConstructor(properties);
|
|
383
|
+
}
|
|
384
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
385
|
+
if (isAMD) {
|
|
386
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
387
|
+
}
|
|
388
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
389
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
390
|
+
}
|
|
391
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
392
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
393
|
+
return new ModConstructor(properties);
|
|
394
|
+
}
|
|
241
395
|
async function importCoreAccessor() {
|
|
242
396
|
if (isAMD) {
|
|
243
397
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -744,28 +898,6 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
744
898
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
745
899
|
return new ModConstructor();
|
|
746
900
|
}
|
|
747
|
-
async function importGeometrySupportGeographicTransformation() {
|
|
748
|
-
if (isAMD) {
|
|
749
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
750
|
-
}
|
|
751
|
-
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
752
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
753
|
-
}
|
|
754
|
-
async function newGeometrySupportGeographicTransformation(properties) {
|
|
755
|
-
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
756
|
-
return new ModConstructor(properties);
|
|
757
|
-
}
|
|
758
|
-
async function importGeometrySupportGeographicTransformationStep() {
|
|
759
|
-
if (isAMD) {
|
|
760
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
761
|
-
}
|
|
762
|
-
const module2 = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
763
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
764
|
-
}
|
|
765
|
-
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
766
|
-
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
767
|
-
return new ModConstructor(properties);
|
|
768
|
-
}
|
|
769
901
|
async function importGeometrySupportMeshComponent() {
|
|
770
902
|
if (isAMD) {
|
|
771
903
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -854,6 +986,28 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
854
986
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
855
987
|
return new ModConstructor(properties);
|
|
856
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 importGraphicVectorTileGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1008
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1010
|
+
}
|
|
857
1011
|
async function importAttributeBinsGraphic() {
|
|
858
1012
|
if (isAMD) {
|
|
859
1013
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1481,6 +1635,17 @@ async function newLayersSupportCornersGeoreference(properties) {
|
|
|
1481
1635
|
const ModConstructor = await importLayersSupportCornersGeoreference();
|
|
1482
1636
|
return new ModConstructor(properties);
|
|
1483
1637
|
}
|
|
1638
|
+
async function importLayersSupportDateTimeFieldFormat() {
|
|
1639
|
+
if (isAMD) {
|
|
1640
|
+
return await window.$arcgis.import("esri/layers/support/DateTimeFieldFormat");
|
|
1641
|
+
}
|
|
1642
|
+
const module2 = await import("@arcgis/core/layers/support/DateTimeFieldFormat.js");
|
|
1643
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1644
|
+
}
|
|
1645
|
+
async function newLayersSupportDateTimeFieldFormat(properties) {
|
|
1646
|
+
const ModConstructor = await importLayersSupportDateTimeFieldFormat();
|
|
1647
|
+
return new ModConstructor(properties);
|
|
1648
|
+
}
|
|
1484
1649
|
async function importLayersSupportDimensionalDefinition() {
|
|
1485
1650
|
if (isAMD) {
|
|
1486
1651
|
return await window.$arcgis.import("esri/layers/support/DimensionalDefinition");
|
|
@@ -1657,6 +1822,17 @@ async function newLayersSupportField(properties) {
|
|
|
1657
1822
|
const ModConstructor = await importLayersSupportField();
|
|
1658
1823
|
return new ModConstructor(properties);
|
|
1659
1824
|
}
|
|
1825
|
+
async function importLayersSupportFieldConfiguration() {
|
|
1826
|
+
if (isAMD) {
|
|
1827
|
+
return await window.$arcgis.import("esri/layers/support/FieldConfiguration");
|
|
1828
|
+
}
|
|
1829
|
+
const module2 = await import("@arcgis/core/layers/support/FieldConfiguration.js");
|
|
1830
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1831
|
+
}
|
|
1832
|
+
async function newLayersSupportFieldConfiguration(properties) {
|
|
1833
|
+
const ModConstructor = await importLayersSupportFieldConfiguration();
|
|
1834
|
+
return new ModConstructor(properties);
|
|
1835
|
+
}
|
|
1660
1836
|
async function importLayersSupportFieldsIndex() {
|
|
1661
1837
|
if (isAMD) {
|
|
1662
1838
|
return await window.$arcgis.import("esri/layers/support/FieldsIndex");
|
|
@@ -1800,6 +1976,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1800
1976
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1801
1977
|
return new ModConstructor(properties);
|
|
1802
1978
|
}
|
|
1979
|
+
async function importLayersSupportNumberFieldFormat() {
|
|
1980
|
+
if (isAMD) {
|
|
1981
|
+
return await window.$arcgis.import("esri/layers/support/NumberFieldFormat");
|
|
1982
|
+
}
|
|
1983
|
+
const module2 = await import("@arcgis/core/layers/support/NumberFieldFormat.js");
|
|
1984
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1985
|
+
}
|
|
1986
|
+
async function newLayersSupportNumberFieldFormat(properties) {
|
|
1987
|
+
const ModConstructor = await importLayersSupportNumberFieldFormat();
|
|
1988
|
+
return new ModConstructor(properties);
|
|
1989
|
+
}
|
|
1803
1990
|
async function importLayersSupportOrderByInfo() {
|
|
1804
1991
|
if (isAMD) {
|
|
1805
1992
|
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
@@ -1844,6 +2031,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1844
2031
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1845
2032
|
return new ModConstructor(properties);
|
|
1846
2033
|
}
|
|
2034
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2035
|
+
if (isAMD) {
|
|
2036
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2037
|
+
}
|
|
2038
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2039
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2040
|
+
}
|
|
2041
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2042
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2043
|
+
return new ModConstructor(properties);
|
|
2044
|
+
}
|
|
1847
2045
|
async function importLayersSupportPublishingInfo() {
|
|
1848
2046
|
if (isAMD) {
|
|
1849
2047
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3395,6 +3593,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3395
3593
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3396
3594
|
return new ModConstructor(properties);
|
|
3397
3595
|
}
|
|
3596
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3597
|
+
if (isAMD) {
|
|
3598
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3599
|
+
}
|
|
3600
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3601
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3602
|
+
}
|
|
3603
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3604
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3605
|
+
return new ModConstructor(properties);
|
|
3606
|
+
}
|
|
3607
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3608
|
+
if (isAMD) {
|
|
3609
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3610
|
+
}
|
|
3611
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3612
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3613
|
+
}
|
|
3614
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3615
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3616
|
+
return new ModConstructor(properties);
|
|
3617
|
+
}
|
|
3398
3618
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3399
3619
|
if (isAMD) {
|
|
3400
3620
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3417,6 +3637,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3417
3637
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3418
3638
|
return new ModConstructor(properties);
|
|
3419
3639
|
}
|
|
3640
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3641
|
+
if (isAMD) {
|
|
3642
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3643
|
+
}
|
|
3644
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3645
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3646
|
+
}
|
|
3647
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3648
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3649
|
+
return new ModConstructor(properties);
|
|
3650
|
+
}
|
|
3651
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3652
|
+
if (isAMD) {
|
|
3653
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3654
|
+
}
|
|
3655
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3656
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3657
|
+
}
|
|
3658
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3659
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3660
|
+
return new ModConstructor(properties);
|
|
3661
|
+
}
|
|
3420
3662
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3421
3663
|
if (isAMD) {
|
|
3422
3664
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3428,6 +3670,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3428
3670
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3429
3671
|
return new ModConstructor(properties);
|
|
3430
3672
|
}
|
|
3673
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3674
|
+
if (isAMD) {
|
|
3675
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3676
|
+
}
|
|
3677
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3678
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3679
|
+
}
|
|
3680
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3681
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3682
|
+
return new ModConstructor(properties);
|
|
3683
|
+
}
|
|
3431
3684
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3432
3685
|
if (isAMD) {
|
|
3433
3686
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3549,6 +3802,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3549
3802
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3550
3803
|
return new ModConstructor(properties);
|
|
3551
3804
|
}
|
|
3805
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3806
|
+
if (isAMD) {
|
|
3807
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3808
|
+
}
|
|
3809
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3810
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3811
|
+
}
|
|
3812
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3813
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3814
|
+
return new ModConstructor(properties);
|
|
3815
|
+
}
|
|
3816
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3817
|
+
if (isAMD) {
|
|
3818
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3819
|
+
}
|
|
3820
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3821
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3822
|
+
}
|
|
3823
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3824
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3825
|
+
return new ModConstructor(properties);
|
|
3826
|
+
}
|
|
3827
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3828
|
+
if (isAMD) {
|
|
3829
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3830
|
+
}
|
|
3831
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3832
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3833
|
+
}
|
|
3834
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3835
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3836
|
+
return new ModConstructor(properties);
|
|
3837
|
+
}
|
|
3552
3838
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3553
3839
|
if (isAMD) {
|
|
3554
3840
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -4638,6 +4924,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
4638
4924
|
const ModConstructor = await importRestSupportJobInfo();
|
|
4639
4925
|
return new ModConstructor(properties);
|
|
4640
4926
|
}
|
|
4927
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4928
|
+
if (isAMD) {
|
|
4929
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4930
|
+
}
|
|
4931
|
+
const module2 = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4932
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4933
|
+
}
|
|
4934
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4935
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4936
|
+
return new ModConstructor(properties);
|
|
4937
|
+
}
|
|
4641
4938
|
async function importRestSupportLegendLayer() {
|
|
4642
4939
|
if (isAMD) {
|
|
4643
4940
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -5661,28 +5958,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
5661
5958
|
const ModConstructor = await importTimeTimeInterval();
|
|
5662
5959
|
return new ModConstructor(properties);
|
|
5663
5960
|
}
|
|
5664
|
-
async function importTimeExtent() {
|
|
5665
|
-
if (isAMD) {
|
|
5666
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
5667
|
-
}
|
|
5668
|
-
const module2 = await import("@arcgis/core/TimeExtent.js");
|
|
5669
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5670
|
-
}
|
|
5671
|
-
async function newTimeExtent(properties) {
|
|
5672
|
-
const ModConstructor = await importTimeExtent();
|
|
5673
|
-
return new ModConstructor(properties);
|
|
5674
|
-
}
|
|
5675
|
-
async function importTimeInterval() {
|
|
5676
|
-
if (isAMD) {
|
|
5677
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
5678
|
-
}
|
|
5679
|
-
const module2 = await import("@arcgis/core/TimeInterval.js");
|
|
5680
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5681
|
-
}
|
|
5682
|
-
async function newTimeInterval(properties) {
|
|
5683
|
-
const ModConstructor = await importTimeInterval();
|
|
5684
|
-
return new ModConstructor(properties);
|
|
5685
|
-
}
|
|
5686
5961
|
async function importVersionManagementVersioningState() {
|
|
5687
5962
|
if (isAMD) {
|
|
5688
5963
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -5716,26 +5991,26 @@ async function newViewpoint(properties) {
|
|
|
5716
5991
|
const ModConstructor = await importViewpoint();
|
|
5717
5992
|
return new ModConstructor(properties);
|
|
5718
5993
|
}
|
|
5719
|
-
async function
|
|
5994
|
+
async function importViewsBasemapView() {
|
|
5720
5995
|
if (isAMD) {
|
|
5721
|
-
return await window.$arcgis.import("esri/views/
|
|
5996
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5722
5997
|
}
|
|
5723
|
-
const module2 = await import("@arcgis/core/views/
|
|
5998
|
+
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
5724
5999
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5725
6000
|
}
|
|
5726
|
-
async function
|
|
5727
|
-
const ModConstructor = await
|
|
6001
|
+
async function newViewsBasemapView(properties) {
|
|
6002
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5728
6003
|
return new ModConstructor(properties);
|
|
5729
6004
|
}
|
|
5730
|
-
async function
|
|
6005
|
+
async function importViewsGroundView() {
|
|
5731
6006
|
if (isAMD) {
|
|
5732
|
-
return await window.$arcgis.import("esri/views/
|
|
6007
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5733
6008
|
}
|
|
5734
|
-
const module2 = await import("@arcgis/core/views/
|
|
6009
|
+
const module2 = await import("@arcgis/core/views/GroundView.js");
|
|
5735
6010
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5736
6011
|
}
|
|
5737
|
-
async function
|
|
5738
|
-
const ModConstructor = await
|
|
6012
|
+
async function newViewsGroundView(properties) {
|
|
6013
|
+
const ModConstructor = await importViewsGroundView();
|
|
5739
6014
|
return new ModConstructor(properties);
|
|
5740
6015
|
}
|
|
5741
6016
|
async function importViews2dViewState() {
|
|
@@ -5749,6 +6024,39 @@ async function newViews2dViewState(properties) {
|
|
|
5749
6024
|
const ModConstructor = await importViews2dViewState();
|
|
5750
6025
|
return new ModConstructor(properties);
|
|
5751
6026
|
}
|
|
6027
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6028
|
+
if (isAMD) {
|
|
6029
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
6030
|
+
}
|
|
6031
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
6032
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6033
|
+
}
|
|
6034
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6035
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6036
|
+
return new ModConstructor(properties);
|
|
6037
|
+
}
|
|
6038
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6039
|
+
if (isAMD) {
|
|
6040
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6041
|
+
}
|
|
6042
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6043
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6044
|
+
}
|
|
6045
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6046
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6047
|
+
return new ModConstructor(properties);
|
|
6048
|
+
}
|
|
6049
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6050
|
+
if (isAMD) {
|
|
6051
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6052
|
+
}
|
|
6053
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6054
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6055
|
+
}
|
|
6056
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6057
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6058
|
+
return new ModConstructor(properties);
|
|
6059
|
+
}
|
|
5752
6060
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5753
6061
|
if (isAMD) {
|
|
5754
6062
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5782,6 +6090,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5782
6090
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5783
6091
|
return new ModConstructor(properties);
|
|
5784
6092
|
}
|
|
6093
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6094
|
+
if (isAMD) {
|
|
6095
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6096
|
+
}
|
|
6097
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6098
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6099
|
+
}
|
|
6100
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6101
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6102
|
+
return new ModConstructor(properties);
|
|
6103
|
+
}
|
|
5785
6104
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5786
6105
|
if (isAMD) {
|
|
5787
6106
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5826,6 +6145,39 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5826
6145
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5827
6146
|
return new ModConstructor(properties);
|
|
5828
6147
|
}
|
|
6148
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6149
|
+
if (isAMD) {
|
|
6150
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6151
|
+
}
|
|
6152
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6153
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6154
|
+
}
|
|
6155
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6156
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6157
|
+
return new ModConstructor(properties);
|
|
6158
|
+
}
|
|
6159
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementError() {
|
|
6160
|
+
if (isAMD) {
|
|
6161
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError");
|
|
6162
|
+
}
|
|
6163
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.js");
|
|
6164
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6165
|
+
}
|
|
6166
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementError(name, message, details) {
|
|
6167
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementError();
|
|
6168
|
+
return new ModConstructor(name, message, details);
|
|
6169
|
+
}
|
|
6170
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6171
|
+
if (isAMD) {
|
|
6172
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6173
|
+
}
|
|
6174
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6175
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6176
|
+
}
|
|
6177
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6178
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6179
|
+
return new ModConstructor(properties);
|
|
6180
|
+
}
|
|
5829
6181
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5830
6182
|
if (isAMD) {
|
|
5831
6183
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5914,15 +6266,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5914
6266
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5915
6267
|
return new ModConstructor(properties);
|
|
5916
6268
|
}
|
|
5917
|
-
async function
|
|
6269
|
+
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5918
6270
|
if (isAMD) {
|
|
5919
|
-
return await window.$arcgis.import("esri/views/
|
|
6271
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5920
6272
|
}
|
|
5921
|
-
const module2 = await import("@arcgis/core/views/
|
|
6273
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5922
6274
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5923
6275
|
}
|
|
5924
|
-
async function
|
|
5925
|
-
const ModConstructor = await
|
|
6276
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6277
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
5926
6278
|
return new ModConstructor(properties);
|
|
5927
6279
|
}
|
|
5928
6280
|
async function importViewsDrawDraw() {
|
|
@@ -6002,15 +6354,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
6002
6354
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
6003
6355
|
return new ModConstructor(properties);
|
|
6004
6356
|
}
|
|
6005
|
-
async function
|
|
6357
|
+
async function importViewsInputInput() {
|
|
6006
6358
|
if (isAMD) {
|
|
6007
|
-
return await window.$arcgis.import("esri/views/
|
|
6359
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
6008
6360
|
}
|
|
6009
|
-
const module2 = await import("@arcgis/core/views/
|
|
6361
|
+
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6010
6362
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6011
6363
|
}
|
|
6012
|
-
async function
|
|
6013
|
-
const ModConstructor = await
|
|
6364
|
+
async function newViewsInputInput(properties) {
|
|
6365
|
+
const ModConstructor = await importViewsInputInput();
|
|
6014
6366
|
return new ModConstructor(properties);
|
|
6015
6367
|
}
|
|
6016
6368
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6035,17 +6387,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6035
6387
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6036
6388
|
return new ModConstructor(properties);
|
|
6037
6389
|
}
|
|
6038
|
-
async function importViewsInputInput() {
|
|
6039
|
-
if (isAMD) {
|
|
6040
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6041
|
-
}
|
|
6042
|
-
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6043
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6044
|
-
}
|
|
6045
|
-
async function newViewsInputInput(properties) {
|
|
6046
|
-
const ModConstructor = await importViewsInputInput();
|
|
6047
|
-
return new ModConstructor(properties);
|
|
6048
|
-
}
|
|
6049
6390
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6050
6391
|
if (isAMD) {
|
|
6051
6392
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6134,39 +6475,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6134
6475
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6135
6476
|
return new ModConstructor(properties);
|
|
6136
6477
|
}
|
|
6137
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6138
|
-
if (isAMD) {
|
|
6139
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6140
|
-
}
|
|
6141
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6142
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6143
|
-
}
|
|
6144
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6145
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6146
|
-
return new ModConstructor(properties);
|
|
6147
|
-
}
|
|
6148
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6149
|
-
if (isAMD) {
|
|
6150
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6151
|
-
}
|
|
6152
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6153
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6154
|
-
}
|
|
6155
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6156
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6157
|
-
return new ModConstructor(properties);
|
|
6158
|
-
}
|
|
6159
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6160
|
-
if (isAMD) {
|
|
6161
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6162
|
-
}
|
|
6163
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6164
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6165
|
-
}
|
|
6166
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6167
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6168
|
-
return new ModConstructor(properties);
|
|
6169
|
-
}
|
|
6170
6478
|
async function importViewsLayersDimensionLayerView() {
|
|
6171
6479
|
if (isAMD) {
|
|
6172
6480
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6178,17 +6486,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6178
6486
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6179
6487
|
return new ModConstructor(properties);
|
|
6180
6488
|
}
|
|
6181
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6182
|
-
if (isAMD) {
|
|
6183
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6184
|
-
}
|
|
6185
|
-
const module2 = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6186
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6187
|
-
}
|
|
6188
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6189
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6190
|
-
return new ModConstructor(properties);
|
|
6191
|
-
}
|
|
6192
6489
|
async function importViewsLayersGroupLayerView() {
|
|
6193
6490
|
if (isAMD) {
|
|
6194
6491
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6255,28 +6552,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6255
6552
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6256
6553
|
return new ModConstructor(properties);
|
|
6257
6554
|
}
|
|
6258
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6259
|
-
if (isAMD) {
|
|
6260
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6261
|
-
}
|
|
6262
|
-
const module2 = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6263
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6264
|
-
}
|
|
6265
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6266
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6267
|
-
return new ModConstructor(properties);
|
|
6268
|
-
}
|
|
6269
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6270
|
-
if (isAMD) {
|
|
6271
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6272
|
-
}
|
|
6273
|
-
const module2 = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6274
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6275
|
-
}
|
|
6276
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6277
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6278
|
-
return new ModConstructor(properties);
|
|
6279
|
-
}
|
|
6280
6555
|
async function importViewsLayersSceneLayerView() {
|
|
6281
6556
|
if (isAMD) {
|
|
6282
6557
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6288,17 +6563,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6288
6563
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6289
6564
|
return new ModConstructor(properties);
|
|
6290
6565
|
}
|
|
6291
|
-
async function importViewsLayersStreamLayerView() {
|
|
6292
|
-
if (isAMD) {
|
|
6293
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6294
|
-
}
|
|
6295
|
-
const module2 = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6296
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6297
|
-
}
|
|
6298
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6299
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6300
|
-
return new ModConstructor(properties);
|
|
6301
|
-
}
|
|
6302
6566
|
async function importViewsLayersViewshedLayerView() {
|
|
6303
6567
|
if (isAMD) {
|
|
6304
6568
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7201,6 +7465,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7201
7465
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7202
7466
|
return new ModConstructor(properties);
|
|
7203
7467
|
}
|
|
7468
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7469
|
+
if (isAMD) {
|
|
7470
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7471
|
+
}
|
|
7472
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7473
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7474
|
+
}
|
|
7475
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7476
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7477
|
+
return new ModConstructor(properties);
|
|
7478
|
+
}
|
|
7479
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7480
|
+
if (isAMD) {
|
|
7481
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7482
|
+
}
|
|
7483
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7484
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7485
|
+
}
|
|
7486
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7487
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7488
|
+
return new ModConstructor(properties);
|
|
7489
|
+
}
|
|
7490
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7491
|
+
if (isAMD) {
|
|
7492
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7493
|
+
}
|
|
7494
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7495
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7496
|
+
}
|
|
7497
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7498
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7499
|
+
return new ModConstructor(properties);
|
|
7500
|
+
}
|
|
7501
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7502
|
+
if (isAMD) {
|
|
7503
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7504
|
+
}
|
|
7505
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7506
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7507
|
+
}
|
|
7508
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7509
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7510
|
+
return new ModConstructor(properties);
|
|
7511
|
+
}
|
|
7204
7512
|
async function importWidgetsBookmarks() {
|
|
7205
7513
|
if (isAMD) {
|
|
7206
7514
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -7520,6 +7828,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7520
7828
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7521
7829
|
return new ModConstructor(properties);
|
|
7522
7830
|
}
|
|
7831
|
+
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7832
|
+
if (isAMD) {
|
|
7833
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
7834
|
+
}
|
|
7835
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflow.js");
|
|
7836
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7837
|
+
}
|
|
7838
|
+
async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
7839
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7840
|
+
return new ModConstructor(properties);
|
|
7841
|
+
}
|
|
7523
7842
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7524
7843
|
if (isAMD) {
|
|
7525
7844
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -7883,39 +8202,6 @@ async function newWidgetsFeatureTableGridGroupColumn(properties) {
|
|
|
7883
8202
|
const ModConstructor = await importWidgetsFeatureTableGridGroupColumn();
|
|
7884
8203
|
return new ModConstructor(properties);
|
|
7885
8204
|
}
|
|
7886
|
-
async function importWidgetsFeatureTableGridSupportButtonMenu() {
|
|
7887
|
-
if (isAMD) {
|
|
7888
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenu");
|
|
7889
|
-
}
|
|
7890
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenu.js");
|
|
7891
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7892
|
-
}
|
|
7893
|
-
async function newWidgetsFeatureTableGridSupportButtonMenu(properties) {
|
|
7894
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenu();
|
|
7895
|
-
return new ModConstructor(properties);
|
|
7896
|
-
}
|
|
7897
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuItem() {
|
|
7898
|
-
if (isAMD) {
|
|
7899
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuItem");
|
|
7900
|
-
}
|
|
7901
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuItem.js");
|
|
7902
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7903
|
-
}
|
|
7904
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuItem(properties) {
|
|
7905
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuItem();
|
|
7906
|
-
return new ModConstructor(properties);
|
|
7907
|
-
}
|
|
7908
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuViewModel() {
|
|
7909
|
-
if (isAMD) {
|
|
7910
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuViewModel");
|
|
7911
|
-
}
|
|
7912
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuViewModel.js");
|
|
7913
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7914
|
-
}
|
|
7915
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties) {
|
|
7916
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7917
|
-
return new ModConstructor(properties);
|
|
7918
|
-
}
|
|
7919
8205
|
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7920
8206
|
if (isAMD) {
|
|
7921
8207
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
@@ -9402,13 +9688,6 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9402
9688
|
const module2 = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9403
9689
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9404
9690
|
}
|
|
9405
|
-
async function importGeometryProjection() {
|
|
9406
|
-
if (isAMD) {
|
|
9407
|
-
return await window.$arcgis.import("esri/geometry/projection");
|
|
9408
|
-
}
|
|
9409
|
-
const module2 = await import("@arcgis/core/geometry/projection.js");
|
|
9410
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9411
|
-
}
|
|
9412
9691
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9413
9692
|
if (isAMD) {
|
|
9414
9693
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -9584,6 +9863,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
9584
9863
|
const module2 = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
9585
9864
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9586
9865
|
}
|
|
9866
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9867
|
+
if (isAMD) {
|
|
9868
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9869
|
+
}
|
|
9870
|
+
const module2 = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9871
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
9872
|
+
}
|
|
9587
9873
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
9588
9874
|
if (isAMD) {
|
|
9589
9875
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10032,6 +10318,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10032
10318
|
const module2 = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10033
10319
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10034
10320
|
}
|
|
10321
|
+
async function importRestLastMileDelivery() {
|
|
10322
|
+
if (isAMD) {
|
|
10323
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10324
|
+
}
|
|
10325
|
+
const module2 = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10326
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10327
|
+
}
|
|
10035
10328
|
async function importRestLocator() {
|
|
10036
10329
|
if (isAMD) {
|
|
10037
10330
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -10536,6 +10829,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10536
10829
|
const module2 = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10537
10830
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10538
10831
|
}
|
|
10832
|
+
async function importViews3dWebgl() {
|
|
10833
|
+
if (isAMD) {
|
|
10834
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10835
|
+
}
|
|
10836
|
+
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10837
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10838
|
+
}
|
|
10539
10839
|
async function importViews3dWebglManagedFBO() {
|
|
10540
10840
|
if (isAMD) {
|
|
10541
10841
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10550,13 +10850,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10550
10850
|
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10551
10851
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10552
10852
|
}
|
|
10553
|
-
async function importViews3dWebgl() {
|
|
10554
|
-
if (isAMD) {
|
|
10555
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10556
|
-
}
|
|
10557
|
-
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10558
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10559
|
-
}
|
|
10560
10853
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10561
10854
|
if (isAMD) {
|
|
10562
10855
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10585,11 +10878,11 @@ async function importViewsSupportColorUtils() {
|
|
|
10585
10878
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10586
10879
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10587
10880
|
}
|
|
10588
|
-
async function
|
|
10881
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10589
10882
|
if (isAMD) {
|
|
10590
|
-
return await window.$arcgis.import("esri/widgets/
|
|
10883
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10591
10884
|
}
|
|
10592
|
-
const module2 = await import("@arcgis/core/widgets/
|
|
10885
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10593
10886
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10594
10887
|
}
|
|
10595
10888
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
@@ -10606,6 +10899,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10606
10899
|
const module2 = await import("@arcgis/core/widgets/support/widget.js");
|
|
10607
10900
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10608
10901
|
}
|
|
10902
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10903
|
+
if (isAMD) {
|
|
10904
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10905
|
+
}
|
|
10906
|
+
const module2 = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10907
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10908
|
+
}
|
|
10609
10909
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
10610
10910
|
if (isAMD) {
|
|
10611
10911
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -10613,6 +10913,20 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10613
10913
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10614
10914
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10615
10915
|
}
|
|
10916
|
+
async function importApplicationsComponentsArcadeEditorUtils() {
|
|
10917
|
+
if (isAMD) {
|
|
10918
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeEditorUtils");
|
|
10919
|
+
}
|
|
10920
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeEditorUtils.js");
|
|
10921
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10922
|
+
}
|
|
10923
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10924
|
+
if (isAMD) {
|
|
10925
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10926
|
+
}
|
|
10927
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10928
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10929
|
+
}
|
|
10616
10930
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10617
10931
|
if (isAMD) {
|
|
10618
10932
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10627,6 +10941,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10627
10941
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10628
10942
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10629
10943
|
}
|
|
10944
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10945
|
+
if (isAMD) {
|
|
10946
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10947
|
+
}
|
|
10948
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10949
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10950
|
+
}
|
|
10630
10951
|
async function importApplicationsComponentsFontUtils() {
|
|
10631
10952
|
if (isAMD) {
|
|
10632
10953
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10634,6 +10955,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10634
10955
|
const module2 = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10635
10956
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10636
10957
|
}
|
|
10958
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
10959
|
+
if (isAMD) {
|
|
10960
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
10961
|
+
}
|
|
10962
|
+
const module2 = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
10963
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10964
|
+
}
|
|
10637
10965
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10638
10966
|
if (isAMD) {
|
|
10639
10967
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10648,6 +10976,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10648
10976
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10649
10977
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10650
10978
|
}
|
|
10979
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10980
|
+
if (isAMD) {
|
|
10981
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10982
|
+
}
|
|
10983
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10984
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10985
|
+
}
|
|
10651
10986
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10652
10987
|
if (isAMD) {
|
|
10653
10988
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10676,6 +11011,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10676
11011
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10677
11012
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10678
11013
|
}
|
|
11014
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11015
|
+
if (isAMD) {
|
|
11016
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11017
|
+
}
|
|
11018
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11019
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11020
|
+
}
|
|
10679
11021
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10680
11022
|
if (isAMD) {
|
|
10681
11023
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10690,6 +11032,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10690
11032
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10691
11033
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10692
11034
|
}
|
|
11035
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11036
|
+
if (isAMD) {
|
|
11037
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11038
|
+
}
|
|
11039
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11040
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11041
|
+
}
|
|
10693
11042
|
async function importApplicationsComponentsStyleUtils() {
|
|
10694
11043
|
if (isAMD) {
|
|
10695
11044
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10751,6 +11100,16 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
10751
11100
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
10752
11101
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
10753
11102
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11103
|
+
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11104
|
+
exports.importAnalysisElevationProfileElevationProfileDisplayUnits = importAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
11105
|
+
exports.importAnalysisElevationProfileElevationProfileLine = importAnalysisElevationProfileElevationProfileLine;
|
|
11106
|
+
exports.importAnalysisElevationProfileElevationProfileLineChartOptions = importAnalysisElevationProfileElevationProfileLineChartOptions;
|
|
11107
|
+
exports.importAnalysisElevationProfileElevationProfileLineGround = importAnalysisElevationProfileElevationProfileLineGround;
|
|
11108
|
+
exports.importAnalysisElevationProfileElevationProfileLineInput = importAnalysisElevationProfileElevationProfileLineInput;
|
|
11109
|
+
exports.importAnalysisElevationProfileElevationProfileLineQuery = importAnalysisElevationProfileElevationProfileLineQuery;
|
|
11110
|
+
exports.importAnalysisElevationProfileElevationProfileLineScene = importAnalysisElevationProfileElevationProfileLineScene;
|
|
11111
|
+
exports.importAnalysisElevationProfileElevationProfileLineViewOptions = importAnalysisElevationProfileElevationProfileLineViewOptions;
|
|
11112
|
+
exports.importAnalysisElevationProfileElevationProfileViewOptions = importAnalysisElevationProfileElevationProfileViewOptions;
|
|
10754
11113
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
10755
11114
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
10756
11115
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
@@ -10760,18 +11119,30 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10760
11119
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10761
11120
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10762
11121
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
11122
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
11123
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions;
|
|
11124
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits = importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits;
|
|
11125
|
+
exports.importAnalysisVolumeMeasurementVolumeMeasurementInputUnits = importAnalysisVolumeMeasurementVolumeMeasurementInputUnits;
|
|
11126
|
+
exports.importApplicationsComponentsActionUtils = importApplicationsComponentsActionUtils;
|
|
10763
11127
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
11128
|
+
exports.importApplicationsComponentsArcadeEditorUtils = importApplicationsComponentsArcadeEditorUtils;
|
|
11129
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10764
11130
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10765
11131
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
11132
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10766
11133
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
11134
|
+
exports.importApplicationsComponentsFormatUtils = importApplicationsComponentsFormatUtils;
|
|
10767
11135
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10768
11136
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
11137
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10769
11138
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10770
11139
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10771
11140
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10772
11141
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
11142
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10773
11143
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10774
11144
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
11145
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10775
11146
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10776
11147
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10777
11148
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10868,6 +11239,7 @@ exports.importGeometryOperatorsGeodeticAreaOperator = importGeometryOperatorsGeo
|
|
|
10868
11239
|
exports.importGeometryOperatorsGeodeticDensifyOperator = importGeometryOperatorsGeodeticDensifyOperator;
|
|
10869
11240
|
exports.importGeometryOperatorsGeodeticDistanceOperator = importGeometryOperatorsGeodeticDistanceOperator;
|
|
10870
11241
|
exports.importGeometryOperatorsGeodeticLengthOperator = importGeometryOperatorsGeodeticLengthOperator;
|
|
11242
|
+
exports.importGeometryOperatorsGeodeticUtilsOperator = importGeometryOperatorsGeodeticUtilsOperator;
|
|
10871
11243
|
exports.importGeometryOperatorsGraphicBufferOperator = importGeometryOperatorsGraphicBufferOperator;
|
|
10872
11244
|
exports.importGeometryOperatorsIntegrateOperator = importGeometryOperatorsIntegrateOperator;
|
|
10873
11245
|
exports.importGeometryOperatorsIntersectionOperator = importGeometryOperatorsIntersectionOperator;
|
|
@@ -10901,11 +11273,8 @@ exports.importGeometryOperatorsWithinOperator = importGeometryOperatorsWithinOpe
|
|
|
10901
11273
|
exports.importGeometryPoint = importGeometryPoint;
|
|
10902
11274
|
exports.importGeometryPolygon = importGeometryPolygon;
|
|
10903
11275
|
exports.importGeometryPolyline = importGeometryPolyline;
|
|
10904
|
-
exports.importGeometryProjection = importGeometryProjection;
|
|
10905
11276
|
exports.importGeometrySpatialReference = importGeometrySpatialReference;
|
|
10906
11277
|
exports.importGeometrySupportGeodesicUtils = importGeometrySupportGeodesicUtils;
|
|
10907
|
-
exports.importGeometrySupportGeographicTransformation = importGeometrySupportGeographicTransformation;
|
|
10908
|
-
exports.importGeometrySupportGeographicTransformationStep = importGeometrySupportGeographicTransformationStep;
|
|
10909
11278
|
exports.importGeometrySupportJsonUtils = importGeometrySupportJsonUtils;
|
|
10910
11279
|
exports.importGeometrySupportMeshComponent = importGeometrySupportMeshComponent;
|
|
10911
11280
|
exports.importGeometrySupportMeshGeoreferencedVertexSpace = importGeometrySupportMeshGeoreferencedVertexSpace;
|
|
@@ -10919,6 +11288,8 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
10919
11288
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
10920
11289
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
10921
11290
|
exports.importGraphic = importGraphic;
|
|
11291
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11292
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
10922
11293
|
exports.importGround = importGround;
|
|
10923
11294
|
exports.importIdentityCredential = importIdentityCredential;
|
|
10924
11295
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -10984,6 +11355,7 @@ exports.importLayersSupportCodedValueDomain = importLayersSupportCodedValueDomai
|
|
|
10984
11355
|
exports.importLayersSupportControlPointsGeoreference = importLayersSupportControlPointsGeoreference;
|
|
10985
11356
|
exports.importLayersSupportCornersGeoreference = importLayersSupportCornersGeoreference;
|
|
10986
11357
|
exports.importLayersSupportCsvUtils = importLayersSupportCsvUtils;
|
|
11358
|
+
exports.importLayersSupportDateTimeFieldFormat = importLayersSupportDateTimeFieldFormat;
|
|
10987
11359
|
exports.importLayersSupportDimensionalDefinition = importLayersSupportDimensionalDefinition;
|
|
10988
11360
|
exports.importLayersSupportDisplayFilter = importLayersSupportDisplayFilter;
|
|
10989
11361
|
exports.importLayersSupportDisplayFilterInfo = importLayersSupportDisplayFilterInfo;
|
|
@@ -11000,6 +11372,7 @@ exports.importLayersSupportFeatureReductionSelection = importLayersSupportFeatur
|
|
|
11000
11372
|
exports.importLayersSupportFeatureTemplate = importLayersSupportFeatureTemplate;
|
|
11001
11373
|
exports.importLayersSupportFeatureType = importLayersSupportFeatureType;
|
|
11002
11374
|
exports.importLayersSupportField = importLayersSupportField;
|
|
11375
|
+
exports.importLayersSupportFieldConfiguration = importLayersSupportFieldConfiguration;
|
|
11003
11376
|
exports.importLayersSupportFieldUtils = importLayersSupportFieldUtils;
|
|
11004
11377
|
exports.importLayersSupportFieldsIndex = importLayersSupportFieldsIndex;
|
|
11005
11378
|
exports.importLayersSupportGeometryFieldsInfo = importLayersSupportGeometryFieldsInfo;
|
|
@@ -11014,11 +11387,13 @@ exports.importLayersSupportLocalMediaElementSource = importLayersSupportLocalMed
|
|
|
11014
11387
|
exports.importLayersSupportMapImage = importLayersSupportMapImage;
|
|
11015
11388
|
exports.importLayersSupportMosaicRule = importLayersSupportMosaicRule;
|
|
11016
11389
|
exports.importLayersSupportMultidimensionalSubset = importLayersSupportMultidimensionalSubset;
|
|
11390
|
+
exports.importLayersSupportNumberFieldFormat = importLayersSupportNumberFieldFormat;
|
|
11017
11391
|
exports.importLayersSupportOrderByInfo = importLayersSupportOrderByInfo;
|
|
11018
11392
|
exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetEncodingLocation;
|
|
11019
11393
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
11020
11394
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
11021
11395
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11396
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
11022
11397
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
11023
11398
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
11024
11399
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11179,10 +11554,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11179
11554
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11180
11555
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11181
11556
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11557
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11182
11558
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11559
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11183
11560
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11184
11561
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11562
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11563
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11185
11564
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11565
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11186
11566
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11187
11567
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11188
11568
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11194,6 +11574,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11194
11574
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11195
11575
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11196
11576
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11577
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11578
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11579
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11197
11580
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11198
11581
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11199
11582
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11209,6 +11592,7 @@ exports.importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity =
|
|
|
11209
11592
|
exports.importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter = importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter;
|
|
11210
11593
|
exports.importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection = importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection;
|
|
11211
11594
|
exports.importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings;
|
|
11595
|
+
exports.importRestLastMileDelivery = importRestLastMileDelivery;
|
|
11212
11596
|
exports.importRestLocator = importRestLocator;
|
|
11213
11597
|
exports.importRestNetworkService = importRestNetworkService;
|
|
11214
11598
|
exports.importRestNetworksQueryAssociations = importRestNetworksQueryAssociations;
|
|
@@ -11305,6 +11689,7 @@ exports.importRestSupportImageVolume = importRestSupportImageVolume;
|
|
|
11305
11689
|
exports.importRestSupportImageVolumeParameters = importRestSupportImageVolumeParameters;
|
|
11306
11690
|
exports.importRestSupportImageVolumeResult = importRestSupportImageVolumeResult;
|
|
11307
11691
|
exports.importRestSupportJobInfo = importRestSupportJobInfo;
|
|
11692
|
+
exports.importRestSupportLastMileDeliveryParameters = importRestSupportLastMileDeliveryParameters;
|
|
11308
11693
|
exports.importRestSupportLegendLayer = importRestSupportLegendLayer;
|
|
11309
11694
|
exports.importRestSupportLengthsParameters = importRestSupportLengthsParameters;
|
|
11310
11695
|
exports.importRestSupportLinearUnit = importRestSupportLinearUnit;
|
|
@@ -11455,8 +11840,6 @@ exports.importTablesElementsAttributeTableElement = importTablesElementsAttribut
|
|
|
11455
11840
|
exports.importTablesElementsAttributeTableFieldElement = importTablesElementsAttributeTableFieldElement;
|
|
11456
11841
|
exports.importTablesElementsAttributeTableGroupElement = importTablesElementsAttributeTableGroupElement;
|
|
11457
11842
|
exports.importTablesElementsAttributeTableRelationshipElement = importTablesElementsAttributeTableRelationshipElement;
|
|
11458
|
-
exports.importTimeExtent = importTimeExtent;
|
|
11459
|
-
exports.importTimeInterval = importTimeInterval;
|
|
11460
11843
|
exports.importTimeTimeExtent = importTimeTimeExtent;
|
|
11461
11844
|
exports.importTimeTimeInterval = importTimeTimeInterval;
|
|
11462
11845
|
exports.importVersionManagementUtils = importVersionManagementUtils;
|
|
@@ -11464,16 +11847,21 @@ exports.importVersionManagementVersionAdaptersUtils = importVersionManagementVer
|
|
|
11464
11847
|
exports.importVersionManagementVersionManagementService = importVersionManagementVersionManagementService;
|
|
11465
11848
|
exports.importVersionManagementVersioningState = importVersionManagementVersioningState;
|
|
11466
11849
|
exports.importViewpoint = importViewpoint;
|
|
11850
|
+
exports.importViews2dAnalysisElevationProfileAnalysisView2D = importViews2dAnalysisElevationProfileAnalysisView2D;
|
|
11467
11851
|
exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
11468
11852
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
11469
11853
|
exports.importViews2dViewState = importViews2dViewState;
|
|
11470
11854
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11471
11855
|
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11472
11856
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
11857
|
+
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11473
11858
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11474
11859
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11475
11860
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11476
11861
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11862
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11863
|
+
exports.importViews3dAnalysisVolumeMeasurementVolumeMeasurementError = importViews3dAnalysisVolumeMeasurementVolumeMeasurementError;
|
|
11864
|
+
exports.importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult = importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult;
|
|
11477
11865
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11478
11866
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11479
11867
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11487,6 +11875,7 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11487
11875
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11488
11876
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11489
11877
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
11878
|
+
exports.importViewsAnalysisElevationProfileElevationProfileResult = importViewsAnalysisElevationProfileElevationProfileResult;
|
|
11490
11879
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11491
11880
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11492
11881
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11508,21 +11897,14 @@ exports.importViewsInteractiveSnappingSnappingOptions = importViewsInteractiveSn
|
|
|
11508
11897
|
exports.importViewsInteractiveTooltip = importViewsInteractiveTooltip;
|
|
11509
11898
|
exports.importViewsLayersBuildingComponentSublayerView = importViewsLayersBuildingComponentSublayerView;
|
|
11510
11899
|
exports.importViewsLayersBuildingSceneLayerView = importViewsLayersBuildingSceneLayerView;
|
|
11511
|
-
exports.importViewsLayersCatalogDynamicGroupLayerView = importViewsLayersCatalogDynamicGroupLayerView;
|
|
11512
|
-
exports.importViewsLayersCatalogFootprintLayerView = importViewsLayersCatalogFootprintLayerView;
|
|
11513
|
-
exports.importViewsLayersCatalogLayerView = importViewsLayersCatalogLayerView;
|
|
11514
11900
|
exports.importViewsLayersDimensionLayerView = importViewsLayersDimensionLayerView;
|
|
11515
|
-
exports.importViewsLayersFeatureLayerView = importViewsLayersFeatureLayerView;
|
|
11516
11901
|
exports.importViewsLayersGroupLayerView = importViewsLayersGroupLayerView;
|
|
11517
11902
|
exports.importViewsLayersImageryLayerView = importViewsLayersImageryLayerView;
|
|
11518
11903
|
exports.importViewsLayersImageryTileLayerView = importViewsLayersImageryTileLayerView;
|
|
11519
11904
|
exports.importViewsLayersLayerView = importViewsLayersLayerView;
|
|
11520
11905
|
exports.importViewsLayersLineOfSightLayerView = importViewsLayersLineOfSightLayerView;
|
|
11521
11906
|
exports.importViewsLayersMediaLayerView = importViewsLayersMediaLayerView;
|
|
11522
|
-
exports.importViewsLayersOGCFeatureLayerView = importViewsLayersOGCFeatureLayerView;
|
|
11523
|
-
exports.importViewsLayersPointCloudLayerView = importViewsLayersPointCloudLayerView;
|
|
11524
11907
|
exports.importViewsLayersSceneLayerView = importViewsLayersSceneLayerView;
|
|
11525
|
-
exports.importViewsLayersStreamLayerView = importViewsLayersStreamLayerView;
|
|
11526
11908
|
exports.importViewsLayersViewshedLayerView = importViewsLayersViewshedLayerView;
|
|
11527
11909
|
exports.importViewsLinkChartView = importViewsLinkChartView;
|
|
11528
11910
|
exports.importViewsMagnifier = importViewsMagnifier;
|
|
@@ -11607,6 +11989,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11607
11989
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11608
11990
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11609
11991
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
11992
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
11993
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
11994
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11610
11995
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11611
11996
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11612
11997
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11636,6 +12021,8 @@ exports.importWidgetsEditorCreateFeaturesWorkflow = importWidgetsEditorCreateFea
|
|
|
11636
12021
|
exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreateFeaturesWorkflowData;
|
|
11637
12022
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
11638
12023
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
12024
|
+
exports.importWidgetsEditorSplitFeatureWorkflow = importWidgetsEditorSplitFeatureWorkflow;
|
|
12025
|
+
exports.importWidgetsEditorSplitFeatureWorkflowData = importWidgetsEditorSplitFeatureWorkflowData;
|
|
11639
12026
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
11640
12027
|
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
11641
12028
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
@@ -11666,9 +12053,6 @@ exports.importWidgetsFeatureTableFeatureTableViewModel = importWidgetsFeatureTab
|
|
|
11666
12053
|
exports.importWidgetsFeatureTableFieldColumn = importWidgetsFeatureTableFieldColumn;
|
|
11667
12054
|
exports.importWidgetsFeatureTableGridColumn = importWidgetsFeatureTableGridColumn;
|
|
11668
12055
|
exports.importWidgetsFeatureTableGridGroupColumn = importWidgetsFeatureTableGridGroupColumn;
|
|
11669
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenu = importWidgetsFeatureTableGridSupportButtonMenu;
|
|
11670
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenuItem = importWidgetsFeatureTableGridSupportButtonMenuItem;
|
|
11671
|
-
exports.importWidgetsFeatureTableGridSupportButtonMenuViewModel = importWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
11672
12056
|
exports.importWidgetsFeatureTableRelationshipColumn = importWidgetsFeatureTableRelationshipColumn;
|
|
11673
12057
|
exports.importWidgetsFeatureTableSupportAttachmentsColumnTemplate = importWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
11674
12058
|
exports.importWidgetsFeatureTableSupportAttachmentsViewOptions = importWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
@@ -11803,6 +12187,16 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
11803
12187
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
11804
12188
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
11805
12189
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12190
|
+
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12191
|
+
exports.newAnalysisElevationProfileElevationProfileDisplayUnits = newAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
12192
|
+
exports.newAnalysisElevationProfileElevationProfileLine = newAnalysisElevationProfileElevationProfileLine;
|
|
12193
|
+
exports.newAnalysisElevationProfileElevationProfileLineChartOptions = newAnalysisElevationProfileElevationProfileLineChartOptions;
|
|
12194
|
+
exports.newAnalysisElevationProfileElevationProfileLineGround = newAnalysisElevationProfileElevationProfileLineGround;
|
|
12195
|
+
exports.newAnalysisElevationProfileElevationProfileLineInput = newAnalysisElevationProfileElevationProfileLineInput;
|
|
12196
|
+
exports.newAnalysisElevationProfileElevationProfileLineQuery = newAnalysisElevationProfileElevationProfileLineQuery;
|
|
12197
|
+
exports.newAnalysisElevationProfileElevationProfileLineScene = newAnalysisElevationProfileElevationProfileLineScene;
|
|
12198
|
+
exports.newAnalysisElevationProfileElevationProfileLineViewOptions = newAnalysisElevationProfileElevationProfileLineViewOptions;
|
|
12199
|
+
exports.newAnalysisElevationProfileElevationProfileViewOptions = newAnalysisElevationProfileElevationProfileViewOptions;
|
|
11806
12200
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
11807
12201
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
11808
12202
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
@@ -11812,6 +12206,10 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11812
12206
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11813
12207
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11814
12208
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12209
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12210
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions;
|
|
12211
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits = newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits;
|
|
12212
|
+
exports.newAnalysisVolumeMeasurementVolumeMeasurementInputUnits = newAnalysisVolumeMeasurementVolumeMeasurementInputUnits;
|
|
11815
12213
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11816
12214
|
exports.newBasemap = newBasemap;
|
|
11817
12215
|
exports.newCamera = newCamera;
|
|
@@ -11863,8 +12261,6 @@ exports.newGeometryPoint = newGeometryPoint;
|
|
|
11863
12261
|
exports.newGeometryPolygon = newGeometryPolygon;
|
|
11864
12262
|
exports.newGeometryPolyline = newGeometryPolyline;
|
|
11865
12263
|
exports.newGeometrySpatialReference = newGeometrySpatialReference;
|
|
11866
|
-
exports.newGeometrySupportGeographicTransformation = newGeometrySupportGeographicTransformation;
|
|
11867
|
-
exports.newGeometrySupportGeographicTransformationStep = newGeometrySupportGeographicTransformationStep;
|
|
11868
12264
|
exports.newGeometrySupportMeshComponent = newGeometrySupportMeshComponent;
|
|
11869
12265
|
exports.newGeometrySupportMeshGeoreferencedVertexSpace = newGeometrySupportMeshGeoreferencedVertexSpace;
|
|
11870
12266
|
exports.newGeometrySupportMeshLocalVertexSpace = newGeometrySupportMeshLocalVertexSpace;
|
|
@@ -11874,6 +12270,8 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
11874
12270
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
11875
12271
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
11876
12272
|
exports.newGraphic = newGraphic;
|
|
12273
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12274
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
11877
12275
|
exports.newGround = newGround;
|
|
11878
12276
|
exports.newIdentityCredential = newIdentityCredential;
|
|
11879
12277
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
|
@@ -11929,6 +12327,7 @@ exports.newLayersSupportBuildingSummaryStatistics = newLayersSupportBuildingSumm
|
|
|
11929
12327
|
exports.newLayersSupportCodedValueDomain = newLayersSupportCodedValueDomain;
|
|
11930
12328
|
exports.newLayersSupportControlPointsGeoreference = newLayersSupportControlPointsGeoreference;
|
|
11931
12329
|
exports.newLayersSupportCornersGeoreference = newLayersSupportCornersGeoreference;
|
|
12330
|
+
exports.newLayersSupportDateTimeFieldFormat = newLayersSupportDateTimeFieldFormat;
|
|
11932
12331
|
exports.newLayersSupportDimensionalDefinition = newLayersSupportDimensionalDefinition;
|
|
11933
12332
|
exports.newLayersSupportDisplayFilter = newLayersSupportDisplayFilter;
|
|
11934
12333
|
exports.newLayersSupportDisplayFilterInfo = newLayersSupportDisplayFilterInfo;
|
|
@@ -11945,6 +12344,7 @@ exports.newLayersSupportFeatureReductionSelection = newLayersSupportFeatureReduc
|
|
|
11945
12344
|
exports.newLayersSupportFeatureTemplate = newLayersSupportFeatureTemplate;
|
|
11946
12345
|
exports.newLayersSupportFeatureType = newLayersSupportFeatureType;
|
|
11947
12346
|
exports.newLayersSupportField = newLayersSupportField;
|
|
12347
|
+
exports.newLayersSupportFieldConfiguration = newLayersSupportFieldConfiguration;
|
|
11948
12348
|
exports.newLayersSupportFieldsIndex = newLayersSupportFieldsIndex;
|
|
11949
12349
|
exports.newLayersSupportGeometryFieldsInfo = newLayersSupportGeometryFieldsInfo;
|
|
11950
12350
|
exports.newLayersSupportImageElement = newLayersSupportImageElement;
|
|
@@ -11958,10 +12358,12 @@ exports.newLayersSupportLocalMediaElementSource = newLayersSupportLocalMediaElem
|
|
|
11958
12358
|
exports.newLayersSupportMapImage = newLayersSupportMapImage;
|
|
11959
12359
|
exports.newLayersSupportMosaicRule = newLayersSupportMosaicRule;
|
|
11960
12360
|
exports.newLayersSupportMultidimensionalSubset = newLayersSupportMultidimensionalSubset;
|
|
12361
|
+
exports.newLayersSupportNumberFieldFormat = newLayersSupportNumberFieldFormat;
|
|
11961
12362
|
exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
11962
12363
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11963
12364
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11964
12365
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12366
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11965
12367
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11966
12368
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11967
12369
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12102,10 +12504,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12102
12504
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12103
12505
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12104
12506
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12507
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12105
12508
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12509
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12106
12510
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12107
12511
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12512
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12513
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12108
12514
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12515
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12109
12516
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12110
12517
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12111
12518
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12117,6 +12524,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12117
12524
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12118
12525
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12119
12526
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12527
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12528
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12529
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12120
12530
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12121
12531
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12122
12532
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12216,6 +12626,7 @@ exports.newRestSupportImageVolume = newRestSupportImageVolume;
|
|
|
12216
12626
|
exports.newRestSupportImageVolumeParameters = newRestSupportImageVolumeParameters;
|
|
12217
12627
|
exports.newRestSupportImageVolumeResult = newRestSupportImageVolumeResult;
|
|
12218
12628
|
exports.newRestSupportJobInfo = newRestSupportJobInfo;
|
|
12629
|
+
exports.newRestSupportLastMileDeliveryParameters = newRestSupportLastMileDeliveryParameters;
|
|
12219
12630
|
exports.newRestSupportLegendLayer = newRestSupportLegendLayer;
|
|
12220
12631
|
exports.newRestSupportLengthsParameters = newRestSupportLengthsParameters;
|
|
12221
12632
|
exports.newRestSupportLinearUnit = newRestSupportLinearUnit;
|
|
@@ -12307,23 +12718,26 @@ exports.newTablesElementsAttributeTableElement = newTablesElementsAttributeTable
|
|
|
12307
12718
|
exports.newTablesElementsAttributeTableFieldElement = newTablesElementsAttributeTableFieldElement;
|
|
12308
12719
|
exports.newTablesElementsAttributeTableGroupElement = newTablesElementsAttributeTableGroupElement;
|
|
12309
12720
|
exports.newTablesElementsAttributeTableRelationshipElement = newTablesElementsAttributeTableRelationshipElement;
|
|
12310
|
-
exports.newTimeExtent = newTimeExtent;
|
|
12311
|
-
exports.newTimeInterval = newTimeInterval;
|
|
12312
12721
|
exports.newTimeTimeExtent = newTimeTimeExtent;
|
|
12313
12722
|
exports.newTimeTimeInterval = newTimeTimeInterval;
|
|
12314
12723
|
exports.newVersionManagementVersionManagementService = newVersionManagementVersionManagementService;
|
|
12315
12724
|
exports.newVersionManagementVersioningState = newVersionManagementVersioningState;
|
|
12316
12725
|
exports.newViewpoint = newViewpoint;
|
|
12726
|
+
exports.newViews2dAnalysisElevationProfileAnalysisView2D = newViews2dAnalysisElevationProfileAnalysisView2D;
|
|
12317
12727
|
exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
12318
12728
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
12319
12729
|
exports.newViews2dViewState = newViews2dViewState;
|
|
12320
12730
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12321
12731
|
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12322
12732
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12733
|
+
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12323
12734
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12324
12735
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12325
12736
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12326
12737
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12738
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12739
|
+
exports.newViews3dAnalysisVolumeMeasurementVolumeMeasurementError = newViews3dAnalysisVolumeMeasurementVolumeMeasurementError;
|
|
12740
|
+
exports.newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult = newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult;
|
|
12327
12741
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12328
12742
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12329
12743
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12332,6 +12746,7 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12332
12746
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12333
12747
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12334
12748
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12749
|
+
exports.newViewsAnalysisElevationProfileElevationProfileResult = newViewsAnalysisElevationProfileElevationProfileResult;
|
|
12335
12750
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12336
12751
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12337
12752
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12352,21 +12767,14 @@ exports.newViewsInteractiveSnappingSnappingOptions = newViewsInteractiveSnapping
|
|
|
12352
12767
|
exports.newViewsInteractiveTooltip = newViewsInteractiveTooltip;
|
|
12353
12768
|
exports.newViewsLayersBuildingComponentSublayerView = newViewsLayersBuildingComponentSublayerView;
|
|
12354
12769
|
exports.newViewsLayersBuildingSceneLayerView = newViewsLayersBuildingSceneLayerView;
|
|
12355
|
-
exports.newViewsLayersCatalogDynamicGroupLayerView = newViewsLayersCatalogDynamicGroupLayerView;
|
|
12356
|
-
exports.newViewsLayersCatalogFootprintLayerView = newViewsLayersCatalogFootprintLayerView;
|
|
12357
|
-
exports.newViewsLayersCatalogLayerView = newViewsLayersCatalogLayerView;
|
|
12358
12770
|
exports.newViewsLayersDimensionLayerView = newViewsLayersDimensionLayerView;
|
|
12359
|
-
exports.newViewsLayersFeatureLayerView = newViewsLayersFeatureLayerView;
|
|
12360
12771
|
exports.newViewsLayersGroupLayerView = newViewsLayersGroupLayerView;
|
|
12361
12772
|
exports.newViewsLayersImageryLayerView = newViewsLayersImageryLayerView;
|
|
12362
12773
|
exports.newViewsLayersImageryTileLayerView = newViewsLayersImageryTileLayerView;
|
|
12363
12774
|
exports.newViewsLayersLayerView = newViewsLayersLayerView;
|
|
12364
12775
|
exports.newViewsLayersLineOfSightLayerView = newViewsLayersLineOfSightLayerView;
|
|
12365
12776
|
exports.newViewsLayersMediaLayerView = newViewsLayersMediaLayerView;
|
|
12366
|
-
exports.newViewsLayersOGCFeatureLayerView = newViewsLayersOGCFeatureLayerView;
|
|
12367
|
-
exports.newViewsLayersPointCloudLayerView = newViewsLayersPointCloudLayerView;
|
|
12368
12777
|
exports.newViewsLayersSceneLayerView = newViewsLayersSceneLayerView;
|
|
12369
|
-
exports.newViewsLayersStreamLayerView = newViewsLayersStreamLayerView;
|
|
12370
12778
|
exports.newViewsLayersViewshedLayerView = newViewsLayersViewshedLayerView;
|
|
12371
12779
|
exports.newViewsLinkChartView = newViewsLinkChartView;
|
|
12372
12780
|
exports.newViewsMagnifier = newViewsMagnifier;
|
|
@@ -12449,6 +12857,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12449
12857
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12450
12858
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12451
12859
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12860
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12861
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12862
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12863
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12452
12864
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12453
12865
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12454
12866
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|
|
@@ -12478,6 +12890,7 @@ exports.newWidgetsEditorCreateFeaturesWorkflow = newWidgetsEditorCreateFeaturesW
|
|
|
12478
12890
|
exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeaturesWorkflowData;
|
|
12479
12891
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12480
12892
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
12893
|
+
exports.newWidgetsEditorSplitFeatureWorkflow = newWidgetsEditorSplitFeatureWorkflow;
|
|
12481
12894
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
12482
12895
|
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12483
12896
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
@@ -12508,9 +12921,6 @@ exports.newWidgetsFeatureTableFeatureTableViewModel = newWidgetsFeatureTableFeat
|
|
|
12508
12921
|
exports.newWidgetsFeatureTableFieldColumn = newWidgetsFeatureTableFieldColumn;
|
|
12509
12922
|
exports.newWidgetsFeatureTableGridColumn = newWidgetsFeatureTableGridColumn;
|
|
12510
12923
|
exports.newWidgetsFeatureTableGridGroupColumn = newWidgetsFeatureTableGridGroupColumn;
|
|
12511
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenu = newWidgetsFeatureTableGridSupportButtonMenu;
|
|
12512
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenuItem = newWidgetsFeatureTableGridSupportButtonMenuItem;
|
|
12513
|
-
exports.newWidgetsFeatureTableGridSupportButtonMenuViewModel = newWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
12514
12924
|
exports.newWidgetsFeatureTableRelationshipColumn = newWidgetsFeatureTableRelationshipColumn;
|
|
12515
12925
|
exports.newWidgetsFeatureTableSupportAttachmentsColumnTemplate = newWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
12516
12926
|
exports.newWidgetsFeatureTableSupportAttachmentsViewOptions = newWidgetsFeatureTableSupportAttachmentsViewOptions;
|