@arcgis/core-adapter 5.0.0-next.5 → 5.0.0-next.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +539 -97
- package/dist/index.d.cts +92 -21
- package/dist/index.d.ts +92 -21
- package/dist/index.js +539 -97
- package/package.json +1 -1
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 importAnalysisDistanceMeasurementAnalysis() {
|
|
143
|
+
if (isAMD) {
|
|
144
|
+
return await window.$arcgis.import("esri/analysis/DistanceMeasurementAnalysis");
|
|
145
|
+
}
|
|
146
|
+
const module2 = await import("@arcgis/core/analysis/DistanceMeasurementAnalysis.js");
|
|
147
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
148
|
+
}
|
|
149
|
+
async function newAnalysisDistanceMeasurementAnalysis(properties) {
|
|
150
|
+
const ModConstructor = await importAnalysisDistanceMeasurementAnalysis();
|
|
151
|
+
return new ModConstructor(properties);
|
|
152
|
+
}
|
|
142
153
|
async function importAnalysisElevationProfileAnalysis() {
|
|
143
154
|
if (isAMD) {
|
|
144
155
|
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
@@ -194,6 +205,17 @@ async function newAnalysisLineOfSightAnalysisTarget(properties) {
|
|
|
194
205
|
const ModConstructor = await importAnalysisLineOfSightAnalysisTarget();
|
|
195
206
|
return new ModConstructor(properties);
|
|
196
207
|
}
|
|
208
|
+
async function importAnalysisShadowCastAnalysis() {
|
|
209
|
+
if (isAMD) {
|
|
210
|
+
return await window.$arcgis.import("esri/analysis/ShadowCastAnalysis");
|
|
211
|
+
}
|
|
212
|
+
const module2 = await import("@arcgis/core/analysis/ShadowCastAnalysis.js");
|
|
213
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
214
|
+
}
|
|
215
|
+
async function newAnalysisShadowCastAnalysis(properties) {
|
|
216
|
+
const ModConstructor = await importAnalysisShadowCastAnalysis();
|
|
217
|
+
return new ModConstructor(properties);
|
|
218
|
+
}
|
|
197
219
|
async function importAnalysisSliceAnalysis() {
|
|
198
220
|
if (isAMD) {
|
|
199
221
|
return await window.$arcgis.import("esri/analysis/SliceAnalysis");
|
|
@@ -348,6 +370,39 @@ async function newAnalysisElevationProfileElevationProfileViewOptions(properties
|
|
|
348
370
|
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
349
371
|
return new ModConstructor(properties);
|
|
350
372
|
}
|
|
373
|
+
async function importAnalysisShadowCastDiscreteOptions() {
|
|
374
|
+
if (isAMD) {
|
|
375
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DiscreteOptions");
|
|
376
|
+
}
|
|
377
|
+
const module2 = await import("@arcgis/core/analysis/ShadowCast/DiscreteOptions.js");
|
|
378
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
379
|
+
}
|
|
380
|
+
async function newAnalysisShadowCastDiscreteOptions(properties) {
|
|
381
|
+
const ModConstructor = await importAnalysisShadowCastDiscreteOptions();
|
|
382
|
+
return new ModConstructor(properties);
|
|
383
|
+
}
|
|
384
|
+
async function importAnalysisShadowCastDurationOptions() {
|
|
385
|
+
if (isAMD) {
|
|
386
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DurationOptions");
|
|
387
|
+
}
|
|
388
|
+
const module2 = await import("@arcgis/core/analysis/ShadowCast/DurationOptions.js");
|
|
389
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
390
|
+
}
|
|
391
|
+
async function newAnalysisShadowCastDurationOptions(properties) {
|
|
392
|
+
const ModConstructor = await importAnalysisShadowCastDurationOptions();
|
|
393
|
+
return new ModConstructor(properties);
|
|
394
|
+
}
|
|
395
|
+
async function importAnalysisShadowCastThresholdOptions() {
|
|
396
|
+
if (isAMD) {
|
|
397
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/ThresholdOptions");
|
|
398
|
+
}
|
|
399
|
+
const module2 = await import("@arcgis/core/analysis/ShadowCast/ThresholdOptions.js");
|
|
400
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
401
|
+
}
|
|
402
|
+
async function newAnalysisShadowCastThresholdOptions(properties) {
|
|
403
|
+
const ModConstructor = await importAnalysisShadowCastThresholdOptions();
|
|
404
|
+
return new ModConstructor(properties);
|
|
405
|
+
}
|
|
351
406
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
352
407
|
if (isAMD) {
|
|
353
408
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -447,6 +502,28 @@ async function newCoreWorkersConnection() {
|
|
|
447
502
|
const ModConstructor = await importCoreWorkersConnection();
|
|
448
503
|
return new ModConstructor();
|
|
449
504
|
}
|
|
505
|
+
async function importEditingSharedTemplatesSharedTemplate() {
|
|
506
|
+
if (isAMD) {
|
|
507
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
508
|
+
}
|
|
509
|
+
const module2 = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
510
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
511
|
+
}
|
|
512
|
+
async function newEditingSharedTemplatesSharedTemplate() {
|
|
513
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplate();
|
|
514
|
+
return new ModConstructor();
|
|
515
|
+
}
|
|
516
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
517
|
+
if (isAMD) {
|
|
518
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
519
|
+
}
|
|
520
|
+
const module2 = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
521
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
522
|
+
}
|
|
523
|
+
async function newEditingSharedTemplatesSharedTemplateMetadata() {
|
|
524
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplateMetadata();
|
|
525
|
+
return new ModConstructor();
|
|
526
|
+
}
|
|
450
527
|
async function importEffectsFocusAreas() {
|
|
451
528
|
if (isAMD) {
|
|
452
529
|
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
@@ -1840,9 +1917,9 @@ async function importLayersSupportFieldsIndex() {
|
|
|
1840
1917
|
const module2 = await import("@arcgis/core/layers/support/FieldsIndex.js");
|
|
1841
1918
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
1842
1919
|
}
|
|
1843
|
-
async function newLayersSupportFieldsIndex(
|
|
1920
|
+
async function newLayersSupportFieldsIndex(fields) {
|
|
1844
1921
|
const ModConstructor = await importLayersSupportFieldsIndex();
|
|
1845
|
-
return new ModConstructor(
|
|
1922
|
+
return new ModConstructor(fields);
|
|
1846
1923
|
}
|
|
1847
1924
|
async function importLayersSupportGeometryFieldsInfo() {
|
|
1848
1925
|
if (isAMD) {
|
|
@@ -2185,6 +2262,17 @@ async function newLayersSupportSiteLayerInfo(properties) {
|
|
|
2185
2262
|
const ModConstructor = await importLayersSupportSiteLayerInfo();
|
|
2186
2263
|
return new ModConstructor(properties);
|
|
2187
2264
|
}
|
|
2265
|
+
async function importLayersSupportStreamConnection() {
|
|
2266
|
+
if (isAMD) {
|
|
2267
|
+
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
2268
|
+
}
|
|
2269
|
+
const module2 = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
2270
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2271
|
+
}
|
|
2272
|
+
async function newLayersSupportStreamConnection() {
|
|
2273
|
+
const ModConstructor = await importLayersSupportStreamConnection();
|
|
2274
|
+
return new ModConstructor();
|
|
2275
|
+
}
|
|
2188
2276
|
async function importLayersSupportSublayer() {
|
|
2189
2277
|
if (isAMD) {
|
|
2190
2278
|
return await window.$arcgis.import("esri/layers/support/Sublayer");
|
|
@@ -2361,6 +2449,17 @@ async function newLayersVoxelVoxelTransferFunctionStyle(properties) {
|
|
|
2361
2449
|
const ModConstructor = await importLayersVoxelVoxelTransferFunctionStyle();
|
|
2362
2450
|
return new ModConstructor(properties);
|
|
2363
2451
|
}
|
|
2452
|
+
async function importLayersVoxelVoxelVariable() {
|
|
2453
|
+
if (isAMD) {
|
|
2454
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
2455
|
+
}
|
|
2456
|
+
const module2 = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
2457
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2458
|
+
}
|
|
2459
|
+
async function newLayersVoxelVoxelVariable(properties) {
|
|
2460
|
+
const ModConstructor = await importLayersVoxelVoxelVariable();
|
|
2461
|
+
return new ModConstructor(properties);
|
|
2462
|
+
}
|
|
2364
2463
|
async function importLayersVoxelVoxelVariableStyle() {
|
|
2365
2464
|
if (isAMD) {
|
|
2366
2465
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVariableStyle");
|
|
@@ -2372,6 +2471,17 @@ async function newLayersVoxelVoxelVariableStyle(properties) {
|
|
|
2372
2471
|
const ModConstructor = await importLayersVoxelVoxelVariableStyle();
|
|
2373
2472
|
return new ModConstructor(properties);
|
|
2374
2473
|
}
|
|
2474
|
+
async function importLayersVoxelVoxelVolume() {
|
|
2475
|
+
if (isAMD) {
|
|
2476
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
2477
|
+
}
|
|
2478
|
+
const module2 = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
2479
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2480
|
+
}
|
|
2481
|
+
async function newLayersVoxelVoxelVolume() {
|
|
2482
|
+
const ModConstructor = await importLayersVoxelVoxelVolume();
|
|
2483
|
+
return new ModConstructor();
|
|
2484
|
+
}
|
|
2375
2485
|
async function importLayersVoxelVoxelVolumeStyle() {
|
|
2376
2486
|
if (isAMD) {
|
|
2377
2487
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVolumeStyle");
|
|
@@ -2603,6 +2713,17 @@ async function newMap(properties) {
|
|
|
2603
2713
|
const ModConstructor = await importMap();
|
|
2604
2714
|
return new ModConstructor(properties);
|
|
2605
2715
|
}
|
|
2716
|
+
async function importNetworksCircuitManager() {
|
|
2717
|
+
if (isAMD) {
|
|
2718
|
+
return await window.$arcgis.import("esri/networks/CircuitManager");
|
|
2719
|
+
}
|
|
2720
|
+
const module2 = await import("@arcgis/core/networks/CircuitManager.js");
|
|
2721
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2722
|
+
}
|
|
2723
|
+
async function newNetworksCircuitManager(properties) {
|
|
2724
|
+
const ModConstructor = await importNetworksCircuitManager();
|
|
2725
|
+
return new ModConstructor(properties);
|
|
2726
|
+
}
|
|
2606
2727
|
async function importNetworksNetwork() {
|
|
2607
2728
|
if (isAMD) {
|
|
2608
2729
|
return await window.$arcgis.import("esri/networks/Network");
|
|
@@ -2614,6 +2735,17 @@ async function newNetworksNetwork(properties) {
|
|
|
2614
2735
|
const ModConstructor = await importNetworksNetwork();
|
|
2615
2736
|
return new ModConstructor(properties);
|
|
2616
2737
|
}
|
|
2738
|
+
async function importNetworksUnitIdentifierManager() {
|
|
2739
|
+
if (isAMD) {
|
|
2740
|
+
return await window.$arcgis.import("esri/networks/UnitIdentifierManager");
|
|
2741
|
+
}
|
|
2742
|
+
const module2 = await import("@arcgis/core/networks/UnitIdentifierManager.js");
|
|
2743
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2744
|
+
}
|
|
2745
|
+
async function newNetworksUnitIdentifierManager(properties) {
|
|
2746
|
+
const ModConstructor = await importNetworksUnitIdentifierManager();
|
|
2747
|
+
return new ModConstructor(properties);
|
|
2748
|
+
}
|
|
2617
2749
|
async function importNetworksUtilityNetwork() {
|
|
2618
2750
|
if (isAMD) {
|
|
2619
2751
|
return await window.$arcgis.import("esri/networks/UtilityNetwork");
|
|
@@ -2625,6 +2757,61 @@ async function newNetworksUtilityNetwork(properties) {
|
|
|
2625
2757
|
const ModConstructor = await importNetworksUtilityNetwork();
|
|
2626
2758
|
return new ModConstructor(properties);
|
|
2627
2759
|
}
|
|
2760
|
+
async function importNetworksSupportCircuit() {
|
|
2761
|
+
if (isAMD) {
|
|
2762
|
+
return await window.$arcgis.import("esri/networks/support/Circuit");
|
|
2763
|
+
}
|
|
2764
|
+
const module2 = await import("@arcgis/core/networks/support/Circuit.js");
|
|
2765
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2766
|
+
}
|
|
2767
|
+
async function newNetworksSupportCircuit(properties) {
|
|
2768
|
+
const ModConstructor = await importNetworksSupportCircuit();
|
|
2769
|
+
return new ModConstructor(properties);
|
|
2770
|
+
}
|
|
2771
|
+
async function importNetworksSupportCircuitPath() {
|
|
2772
|
+
if (isAMD) {
|
|
2773
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPath");
|
|
2774
|
+
}
|
|
2775
|
+
const module2 = await import("@arcgis/core/networks/support/CircuitPath.js");
|
|
2776
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2777
|
+
}
|
|
2778
|
+
async function newNetworksSupportCircuitPath(properties) {
|
|
2779
|
+
const ModConstructor = await importNetworksSupportCircuitPath();
|
|
2780
|
+
return new ModConstructor(properties);
|
|
2781
|
+
}
|
|
2782
|
+
async function importNetworksSupportCircuitPathConnectivityElement() {
|
|
2783
|
+
if (isAMD) {
|
|
2784
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPathConnectivityElement");
|
|
2785
|
+
}
|
|
2786
|
+
const module2 = await import("@arcgis/core/networks/support/CircuitPathConnectivityElement.js");
|
|
2787
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2788
|
+
}
|
|
2789
|
+
async function newNetworksSupportCircuitPathConnectivityElement(properties) {
|
|
2790
|
+
const ModConstructor = await importNetworksSupportCircuitPathConnectivityElement();
|
|
2791
|
+
return new ModConstructor(properties);
|
|
2792
|
+
}
|
|
2793
|
+
async function importNetworksSupportCircuitSection() {
|
|
2794
|
+
if (isAMD) {
|
|
2795
|
+
return await window.$arcgis.import("esri/networks/support/CircuitSection");
|
|
2796
|
+
}
|
|
2797
|
+
const module2 = await import("@arcgis/core/networks/support/CircuitSection.js");
|
|
2798
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2799
|
+
}
|
|
2800
|
+
async function newNetworksSupportCircuitSection(properties) {
|
|
2801
|
+
const ModConstructor = await importNetworksSupportCircuitSection();
|
|
2802
|
+
return new ModConstructor(properties);
|
|
2803
|
+
}
|
|
2804
|
+
async function importNetworksSupportCircuitLocation() {
|
|
2805
|
+
if (isAMD) {
|
|
2806
|
+
return await window.$arcgis.import("esri/networks/support/CircuitLocation");
|
|
2807
|
+
}
|
|
2808
|
+
const module2 = await import("@arcgis/core/networks/support/CircuitLocation.js");
|
|
2809
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2810
|
+
}
|
|
2811
|
+
async function newNetworksSupportCircuitLocation(properties) {
|
|
2812
|
+
const ModConstructor = await importNetworksSupportCircuitLocation();
|
|
2813
|
+
return new ModConstructor(properties);
|
|
2814
|
+
}
|
|
2628
2815
|
async function importNetworksSupportNamedTraceConfiguration() {
|
|
2629
2816
|
if (isAMD) {
|
|
2630
2817
|
return await window.$arcgis.import("esri/networks/support/NamedTraceConfiguration");
|
|
@@ -2647,6 +2834,17 @@ async function newNetworksSupportNetworkSystemLayers(properties) {
|
|
|
2647
2834
|
const ModConstructor = await importNetworksSupportNetworkSystemLayers();
|
|
2648
2835
|
return new ModConstructor(properties);
|
|
2649
2836
|
}
|
|
2837
|
+
async function importNetworksSupportSubcircuit() {
|
|
2838
|
+
if (isAMD) {
|
|
2839
|
+
return await window.$arcgis.import("esri/networks/support/Subcircuit");
|
|
2840
|
+
}
|
|
2841
|
+
const module2 = await import("@arcgis/core/networks/support/Subcircuit.js");
|
|
2842
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2843
|
+
}
|
|
2844
|
+
async function newNetworksSupportSubcircuit(properties) {
|
|
2845
|
+
const ModConstructor = await importNetworksSupportSubcircuit();
|
|
2846
|
+
return new ModConstructor(properties);
|
|
2847
|
+
}
|
|
2650
2848
|
async function importNetworksSupportTerminal() {
|
|
2651
2849
|
if (isAMD) {
|
|
2652
2850
|
return await window.$arcgis.import("esri/networks/support/Terminal");
|
|
@@ -3538,6 +3736,17 @@ async function newRestFeatureServiceFeatureService(properties) {
|
|
|
3538
3736
|
const ModConstructor = await importRestFeatureServiceFeatureService();
|
|
3539
3737
|
return new ModConstructor(properties);
|
|
3540
3738
|
}
|
|
3739
|
+
async function importRestGeoprocessorGPOptions() {
|
|
3740
|
+
if (isAMD) {
|
|
3741
|
+
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
3742
|
+
}
|
|
3743
|
+
const module2 = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
3744
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3745
|
+
}
|
|
3746
|
+
async function newRestGeoprocessorGPOptions() {
|
|
3747
|
+
const ModConstructor = await importRestGeoprocessorGPOptions();
|
|
3748
|
+
return new ModConstructor();
|
|
3749
|
+
}
|
|
3541
3750
|
async function importRestKnowledgeGraphDataModel() {
|
|
3542
3751
|
if (isAMD) {
|
|
3543
3752
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/DataModel");
|
|
@@ -3648,6 +3857,17 @@ async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
|
3648
3857
|
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3649
3858
|
return new ModConstructor(properties);
|
|
3650
3859
|
}
|
|
3860
|
+
async function importRestKnowledgeGraphGraphDataModelSingletonOperationResult() {
|
|
3861
|
+
if (isAMD) {
|
|
3862
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelSingletonOperationResult");
|
|
3863
|
+
}
|
|
3864
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelSingletonOperationResult.js");
|
|
3865
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3866
|
+
}
|
|
3867
|
+
async function newRestKnowledgeGraphGraphDataModelSingletonOperationResult(properties) {
|
|
3868
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelSingletonOperationResult();
|
|
3869
|
+
return new ModConstructor(properties);
|
|
3870
|
+
}
|
|
3651
3871
|
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3652
3872
|
if (isAMD) {
|
|
3653
3873
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
@@ -3989,6 +4209,39 @@ async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(pr
|
|
|
3989
4209
|
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3990
4210
|
return new ModConstructor(properties);
|
|
3991
4211
|
}
|
|
4212
|
+
async function importRestNetworksCircuitsSupportCircuitTraceResult() {
|
|
4213
|
+
if (isAMD) {
|
|
4214
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitTraceResult");
|
|
4215
|
+
}
|
|
4216
|
+
const module2 = await import("@arcgis/core/rest/networks/circuits/support/CircuitTraceResult.js");
|
|
4217
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4218
|
+
}
|
|
4219
|
+
async function newRestNetworksCircuitsSupportCircuitTraceResult(properties) {
|
|
4220
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitTraceResult();
|
|
4221
|
+
return new ModConstructor(properties);
|
|
4222
|
+
}
|
|
4223
|
+
async function importRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4224
|
+
if (isAMD) {
|
|
4225
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitVerifyResult");
|
|
4226
|
+
}
|
|
4227
|
+
const module2 = await import("@arcgis/core/rest/networks/circuits/support/CircuitVerifyResult.js");
|
|
4228
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4229
|
+
}
|
|
4230
|
+
async function newRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4231
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitVerifyResult();
|
|
4232
|
+
return new ModConstructor();
|
|
4233
|
+
}
|
|
4234
|
+
async function importRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4235
|
+
if (isAMD) {
|
|
4236
|
+
return await window.$arcgis.import("esri/rest/networks/unitIdentifiers/support/UnitQueryResult");
|
|
4237
|
+
}
|
|
4238
|
+
const module2 = await import("@arcgis/core/rest/networks/unitIdentifiers/support/UnitQueryResult.js");
|
|
4239
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4240
|
+
}
|
|
4241
|
+
async function newRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4242
|
+
const ModConstructor = await importRestNetworksUnitIdentifiersSupportUnitQueryResult();
|
|
4243
|
+
return new ModConstructor();
|
|
4244
|
+
}
|
|
3992
4245
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3993
4246
|
if (isAMD) {
|
|
3994
4247
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4077,6 +4330,17 @@ async function newRestNetworksSupportSynthesizeAssociationGeometriesParameters(p
|
|
|
4077
4330
|
const ModConstructor = await importRestNetworksSupportSynthesizeAssociationGeometriesParameters();
|
|
4078
4331
|
return new ModConstructor(properties);
|
|
4079
4332
|
}
|
|
4333
|
+
async function importRestNetworksSupportTelecomNetworkElement() {
|
|
4334
|
+
if (isAMD) {
|
|
4335
|
+
return await window.$arcgis.import("esri/rest/networks/support/TelecomNetworkElement");
|
|
4336
|
+
}
|
|
4337
|
+
const module2 = await import("@arcgis/core/rest/networks/support/TelecomNetworkElement.js");
|
|
4338
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4339
|
+
}
|
|
4340
|
+
async function newRestNetworksSupportTelecomNetworkElement(properties) {
|
|
4341
|
+
const ModConstructor = await importRestNetworksSupportTelecomNetworkElement();
|
|
4342
|
+
return new ModConstructor(properties);
|
|
4343
|
+
}
|
|
4080
4344
|
async function importRestNetworksSupportTraceLocation() {
|
|
4081
4345
|
if (isAMD) {
|
|
4082
4346
|
return await window.$arcgis.import("esri/rest/networks/support/TraceLocation");
|
|
@@ -4121,6 +4385,17 @@ async function newRestNetworksSupportValidateNetworkTopologyParameters(propertie
|
|
|
4121
4385
|
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyParameters();
|
|
4122
4386
|
return new ModConstructor(properties);
|
|
4123
4387
|
}
|
|
4388
|
+
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4389
|
+
if (isAMD) {
|
|
4390
|
+
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
4391
|
+
}
|
|
4392
|
+
const module2 = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
4393
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4394
|
+
}
|
|
4395
|
+
async function newRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4396
|
+
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyResult();
|
|
4397
|
+
return new ModConstructor();
|
|
4398
|
+
}
|
|
4124
4399
|
async function importRestQuerySupportAttachmentInfo() {
|
|
4125
4400
|
if (isAMD) {
|
|
4126
4401
|
return await window.$arcgis.import("esri/rest/query/support/AttachmentInfo");
|
|
@@ -4968,6 +5243,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
4968
5243
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
4969
5244
|
return new ModConstructor(properties);
|
|
4970
5245
|
}
|
|
5246
|
+
async function importRestSupportLocateSetting() {
|
|
5247
|
+
if (isAMD) {
|
|
5248
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5249
|
+
}
|
|
5250
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5251
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5252
|
+
}
|
|
5253
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5254
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5255
|
+
return new ModConstructor(properties);
|
|
5256
|
+
}
|
|
5257
|
+
async function importRestSupportLocateSettingBase() {
|
|
5258
|
+
if (isAMD) {
|
|
5259
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5260
|
+
}
|
|
5261
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5262
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5263
|
+
}
|
|
5264
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5265
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5266
|
+
return new ModConstructor(properties);
|
|
5267
|
+
}
|
|
5268
|
+
async function importRestSupportLocateSettingSource() {
|
|
5269
|
+
if (isAMD) {
|
|
5270
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5271
|
+
}
|
|
5272
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5273
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5274
|
+
}
|
|
5275
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5276
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5277
|
+
return new ModConstructor(properties);
|
|
5278
|
+
}
|
|
5279
|
+
async function importRestSupportLocateSettings() {
|
|
5280
|
+
if (isAMD) {
|
|
5281
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5282
|
+
}
|
|
5283
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5284
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5285
|
+
}
|
|
5286
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5287
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5288
|
+
return new ModConstructor(properties);
|
|
5289
|
+
}
|
|
5290
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5291
|
+
if (isAMD) {
|
|
5292
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5293
|
+
}
|
|
5294
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5295
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5296
|
+
}
|
|
5297
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5298
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5299
|
+
return new ModConstructor(properties);
|
|
5300
|
+
}
|
|
4971
5301
|
async function importRestSupportMapToImageParameters() {
|
|
4972
5302
|
if (isAMD) {
|
|
4973
5303
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -6024,6 +6354,28 @@ async function newViews2dViewState(properties) {
|
|
|
6024
6354
|
const ModConstructor = await importViews2dViewState();
|
|
6025
6355
|
return new ModConstructor(properties);
|
|
6026
6356
|
}
|
|
6357
|
+
async function importViews2dAnalysisAreaMeasurementAnalysisView2D() {
|
|
6358
|
+
if (isAMD) {
|
|
6359
|
+
return await window.$arcgis.import("esri/views/2d/analysis/AreaMeasurementAnalysisView2D");
|
|
6360
|
+
}
|
|
6361
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/AreaMeasurementAnalysisView2D.js");
|
|
6362
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6363
|
+
}
|
|
6364
|
+
async function newViews2dAnalysisAreaMeasurementAnalysisView2D(properties) {
|
|
6365
|
+
const ModConstructor = await importViews2dAnalysisAreaMeasurementAnalysisView2D();
|
|
6366
|
+
return new ModConstructor(properties);
|
|
6367
|
+
}
|
|
6368
|
+
async function importViews2dAnalysisDistanceMeasurementAnalysisView2D() {
|
|
6369
|
+
if (isAMD) {
|
|
6370
|
+
return await window.$arcgis.import("esri/views/2d/analysis/DistanceMeasurementAnalysisView2D");
|
|
6371
|
+
}
|
|
6372
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/DistanceMeasurementAnalysisView2D.js");
|
|
6373
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6374
|
+
}
|
|
6375
|
+
async function newViews2dAnalysisDistanceMeasurementAnalysisView2D(properties) {
|
|
6376
|
+
const ModConstructor = await importViews2dAnalysisDistanceMeasurementAnalysisView2D();
|
|
6377
|
+
return new ModConstructor(properties);
|
|
6378
|
+
}
|
|
6027
6379
|
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6028
6380
|
if (isAMD) {
|
|
6029
6381
|
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
@@ -6123,6 +6475,17 @@ async function newViews3dAnalysisLineOfSightAnalysisView3D(properties) {
|
|
|
6123
6475
|
const ModConstructor = await importViews3dAnalysisLineOfSightAnalysisView3D();
|
|
6124
6476
|
return new ModConstructor(properties);
|
|
6125
6477
|
}
|
|
6478
|
+
async function importViews3dAnalysisShadowCastAnalysisView3D() {
|
|
6479
|
+
if (isAMD) {
|
|
6480
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ShadowCastAnalysisView3D");
|
|
6481
|
+
}
|
|
6482
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ShadowCastAnalysisView3D.js");
|
|
6483
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6484
|
+
}
|
|
6485
|
+
async function newViews3dAnalysisShadowCastAnalysisView3D(properties) {
|
|
6486
|
+
const ModConstructor = await importViews3dAnalysisShadowCastAnalysisView3D();
|
|
6487
|
+
return new ModConstructor(properties);
|
|
6488
|
+
}
|
|
6126
6489
|
async function importViews3dAnalysisSliceAnalysisView3D() {
|
|
6127
6490
|
if (isAMD) {
|
|
6128
6491
|
return await window.$arcgis.import("esri/views/3d/analysis/SliceAnalysisView3D");
|
|
@@ -6255,6 +6618,28 @@ async function newViews3dEnvironmentVirtualLighting(properties) {
|
|
|
6255
6618
|
const ModConstructor = await importViews3dEnvironmentVirtualLighting();
|
|
6256
6619
|
return new ModConstructor(properties);
|
|
6257
6620
|
}
|
|
6621
|
+
async function importViews3dWebglManagedFBO() {
|
|
6622
|
+
if (isAMD) {
|
|
6623
|
+
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
6624
|
+
}
|
|
6625
|
+
const module2 = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
6626
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6627
|
+
}
|
|
6628
|
+
async function newViews3dWebglManagedFBO() {
|
|
6629
|
+
const ModConstructor = await importViews3dWebglManagedFBO();
|
|
6630
|
+
return new ModConstructor();
|
|
6631
|
+
}
|
|
6632
|
+
async function importViews3dWebglRenderCamera() {
|
|
6633
|
+
if (isAMD) {
|
|
6634
|
+
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
6635
|
+
}
|
|
6636
|
+
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
6637
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6638
|
+
}
|
|
6639
|
+
async function newViews3dWebglRenderCamera() {
|
|
6640
|
+
const ModConstructor = await importViews3dWebglRenderCamera();
|
|
6641
|
+
return new ModConstructor();
|
|
6642
|
+
}
|
|
6258
6643
|
async function importViews3dWebglRenderNode() {
|
|
6259
6644
|
if (isAMD) {
|
|
6260
6645
|
return await window.$arcgis.import("esri/views/3d/webgl/RenderNode");
|
|
@@ -6266,6 +6651,28 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6266
6651
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6267
6652
|
return new ModConstructor(properties);
|
|
6268
6653
|
}
|
|
6654
|
+
async function importViews3dSupportLayerPerformanceInfo() {
|
|
6655
|
+
if (isAMD) {
|
|
6656
|
+
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
6657
|
+
}
|
|
6658
|
+
const module2 = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
6659
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6660
|
+
}
|
|
6661
|
+
async function newViews3dSupportLayerPerformanceInfo() {
|
|
6662
|
+
const ModConstructor = await importViews3dSupportLayerPerformanceInfo();
|
|
6663
|
+
return new ModConstructor();
|
|
6664
|
+
}
|
|
6665
|
+
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
6666
|
+
if (isAMD) {
|
|
6667
|
+
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
6668
|
+
}
|
|
6669
|
+
const module2 = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
6670
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6671
|
+
}
|
|
6672
|
+
async function newViews3dSupportSceneViewPerformanceInfo() {
|
|
6673
|
+
const ModConstructor = await importViews3dSupportSceneViewPerformanceInfo();
|
|
6674
|
+
return new ModConstructor();
|
|
6675
|
+
}
|
|
6269
6676
|
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6270
6677
|
if (isAMD) {
|
|
6271
6678
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
@@ -6288,6 +6695,17 @@ async function newViewsAnalysisElevationProfileElevationProfileResult(properties
|
|
|
6288
6695
|
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
6289
6696
|
return new ModConstructor(properties);
|
|
6290
6697
|
}
|
|
6698
|
+
async function importViewsAnalysisLengthDimensionResult() {
|
|
6699
|
+
if (isAMD) {
|
|
6700
|
+
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
6701
|
+
}
|
|
6702
|
+
const module2 = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
6703
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6704
|
+
}
|
|
6705
|
+
async function newViewsAnalysisLengthDimensionResult() {
|
|
6706
|
+
const ModConstructor = await importViewsAnalysisLengthDimensionResult();
|
|
6707
|
+
return new ModConstructor();
|
|
6708
|
+
}
|
|
6291
6709
|
async function importViewsDrawDraw() {
|
|
6292
6710
|
if (isAMD) {
|
|
6293
6711
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -7839,6 +8257,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7839
8257
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7840
8258
|
return new ModConstructor(properties);
|
|
7841
8259
|
}
|
|
8260
|
+
async function importWidgetsEditorMergeFeaturesWorkflow() {
|
|
8261
|
+
if (isAMD) {
|
|
8262
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflow");
|
|
8263
|
+
}
|
|
8264
|
+
const module2 = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflow.js");
|
|
8265
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8266
|
+
}
|
|
8267
|
+
async function newWidgetsEditorMergeFeaturesWorkflow(properties) {
|
|
8268
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflow();
|
|
8269
|
+
return new ModConstructor(properties);
|
|
8270
|
+
}
|
|
8271
|
+
async function importWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8272
|
+
if (isAMD) {
|
|
8273
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflowData");
|
|
8274
|
+
}
|
|
8275
|
+
const module2 = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflowData.js");
|
|
8276
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8277
|
+
}
|
|
8278
|
+
async function newWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8279
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflowData();
|
|
8280
|
+
return new ModConstructor();
|
|
8281
|
+
}
|
|
7842
8282
|
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7843
8283
|
if (isAMD) {
|
|
7844
8284
|
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
@@ -7850,6 +8290,28 @@ async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
|
7850
8290
|
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7851
8291
|
return new ModConstructor(properties);
|
|
7852
8292
|
}
|
|
8293
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
8294
|
+
if (isAMD) {
|
|
8295
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
8296
|
+
}
|
|
8297
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
8298
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8299
|
+
}
|
|
8300
|
+
async function newWidgetsEditorSplitFeatureWorkflowData() {
|
|
8301
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflowData();
|
|
8302
|
+
return new ModConstructor();
|
|
8303
|
+
}
|
|
8304
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
8305
|
+
if (isAMD) {
|
|
8306
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
8307
|
+
}
|
|
8308
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
8309
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8310
|
+
}
|
|
8311
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
8312
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
8313
|
+
return new ModConstructor(properties);
|
|
8314
|
+
}
|
|
7853
8315
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7854
8316
|
if (isAMD) {
|
|
7855
8317
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -9643,20 +10105,6 @@ async function importCoreWorkers() {
|
|
|
9643
10105
|
const module2 = await import("@arcgis/core/core/workers.js");
|
|
9644
10106
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9645
10107
|
}
|
|
9646
|
-
async function importEditingSharedTemplatesSharedTemplate() {
|
|
9647
|
-
if (isAMD) {
|
|
9648
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
9649
|
-
}
|
|
9650
|
-
const module2 = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
9651
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9652
|
-
}
|
|
9653
|
-
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
9654
|
-
if (isAMD) {
|
|
9655
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
9656
|
-
}
|
|
9657
|
-
const module2 = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
9658
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9659
|
-
}
|
|
9660
10108
|
async function importFormElementsInputs() {
|
|
9661
10109
|
if (isAMD) {
|
|
9662
10110
|
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
@@ -9692,13 +10140,6 @@ async function importGeometryGeometryEngine() {
|
|
|
9692
10140
|
const module2 = await import("@arcgis/core/geometry/geometryEngine.js");
|
|
9693
10141
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9694
10142
|
}
|
|
9695
|
-
async function importGeometryGeometryEngineAsync() {
|
|
9696
|
-
if (isAMD) {
|
|
9697
|
-
return await window.$arcgis.import("esri/geometry/geometryEngineAsync");
|
|
9698
|
-
}
|
|
9699
|
-
const module2 = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9700
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9701
|
-
}
|
|
9702
10143
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9703
10144
|
if (isAMD) {
|
|
9704
10145
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -10196,27 +10637,6 @@ async function importLayersSupportRasterFunctionUtils() {
|
|
|
10196
10637
|
const module2 = await import("@arcgis/core/layers/support/rasterFunctionUtils.js");
|
|
10197
10638
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10198
10639
|
}
|
|
10199
|
-
async function importLayersSupportStreamConnection() {
|
|
10200
|
-
if (isAMD) {
|
|
10201
|
-
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
10202
|
-
}
|
|
10203
|
-
const module2 = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
10204
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10205
|
-
}
|
|
10206
|
-
async function importLayersVoxelVoxelVariable() {
|
|
10207
|
-
if (isAMD) {
|
|
10208
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
10209
|
-
}
|
|
10210
|
-
const module2 = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
10211
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10212
|
-
}
|
|
10213
|
-
async function importLayersVoxelVoxelVolume() {
|
|
10214
|
-
if (isAMD) {
|
|
10215
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
10216
|
-
}
|
|
10217
|
-
const module2 = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
10218
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10219
|
-
}
|
|
10220
10640
|
async function importPointCloudRenderers() {
|
|
10221
10641
|
if (isAMD) {
|
|
10222
10642
|
return await window.$arcgis.import("esri/pointCloudRenderers");
|
|
@@ -10301,13 +10721,6 @@ async function importRestGeoprocessor() {
|
|
|
10301
10721
|
const module2 = await import("@arcgis/core/rest/geoprocessor.js");
|
|
10302
10722
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10303
10723
|
}
|
|
10304
|
-
async function importRestGeoprocessorGPOptions() {
|
|
10305
|
-
if (isAMD) {
|
|
10306
|
-
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
10307
|
-
}
|
|
10308
|
-
const module2 = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
10309
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10310
|
-
}
|
|
10311
10724
|
async function importRestIdentify() {
|
|
10312
10725
|
if (isAMD) {
|
|
10313
10726
|
return await window.$arcgis.import("esri/rest/identify");
|
|
@@ -10350,13 +10763,6 @@ async function importRestNetworksQueryAssociations() {
|
|
|
10350
10763
|
const module2 = await import("@arcgis/core/rest/networks/queryAssociations.js");
|
|
10351
10764
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10352
10765
|
}
|
|
10353
|
-
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
10354
|
-
if (isAMD) {
|
|
10355
|
-
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
10356
|
-
}
|
|
10357
|
-
const module2 = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
10358
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10359
|
-
}
|
|
10360
10766
|
async function importRestNetworksSynthesizeAssociationGeometries() {
|
|
10361
10767
|
if (isAMD) {
|
|
10362
10768
|
return await window.$arcgis.import("esri/rest/networks/synthesizeAssociationGeometries");
|
|
@@ -10847,39 +11253,11 @@ async function importViews3dWebgl() {
|
|
|
10847
11253
|
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10848
11254
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10849
11255
|
}
|
|
10850
|
-
async function
|
|
10851
|
-
if (isAMD) {
|
|
10852
|
-
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
10853
|
-
}
|
|
10854
|
-
const module2 = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
10855
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10856
|
-
}
|
|
10857
|
-
async function importViews3dWebglRenderCamera() {
|
|
11256
|
+
async function importViewsSupportAttributionItem() {
|
|
10858
11257
|
if (isAMD) {
|
|
10859
|
-
return await window.$arcgis.import("esri/views/
|
|
11258
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
10860
11259
|
}
|
|
10861
|
-
const module2 = await import("@arcgis/core/views/
|
|
10862
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10863
|
-
}
|
|
10864
|
-
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10865
|
-
if (isAMD) {
|
|
10866
|
-
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
10867
|
-
}
|
|
10868
|
-
const module2 = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
10869
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10870
|
-
}
|
|
10871
|
-
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
10872
|
-
if (isAMD) {
|
|
10873
|
-
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
10874
|
-
}
|
|
10875
|
-
const module2 = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
10876
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10877
|
-
}
|
|
10878
|
-
async function importViewsAnalysisLengthDimensionResult() {
|
|
10879
|
-
if (isAMD) {
|
|
10880
|
-
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
10881
|
-
}
|
|
10882
|
-
const module2 = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
11260
|
+
const module2 = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
10883
11261
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10884
11262
|
}
|
|
10885
11263
|
async function importViewsSupportColorUtils() {
|
|
@@ -10889,13 +11267,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10889
11267
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10890
11268
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10891
11269
|
}
|
|
10892
|
-
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10893
|
-
if (isAMD) {
|
|
10894
|
-
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10895
|
-
}
|
|
10896
|
-
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10897
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10898
|
-
}
|
|
10899
11270
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10900
11271
|
if (isAMD) {
|
|
10901
11272
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11111,6 +11482,7 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
11111
11482
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
11112
11483
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
11113
11484
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11485
|
+
exports.importAnalysisDistanceMeasurementAnalysis = importAnalysisDistanceMeasurementAnalysis;
|
|
11114
11486
|
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11115
11487
|
exports.importAnalysisElevationProfileElevationProfileDisplayUnits = importAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
11116
11488
|
exports.importAnalysisElevationProfileElevationProfileLine = importAnalysisElevationProfileElevationProfileLine;
|
|
@@ -11125,6 +11497,10 @@ exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
|
11125
11497
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
11126
11498
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
11127
11499
|
exports.importAnalysisLineOfSightAnalysisTarget = importAnalysisLineOfSightAnalysisTarget;
|
|
11500
|
+
exports.importAnalysisShadowCastAnalysis = importAnalysisShadowCastAnalysis;
|
|
11501
|
+
exports.importAnalysisShadowCastDiscreteOptions = importAnalysisShadowCastDiscreteOptions;
|
|
11502
|
+
exports.importAnalysisShadowCastDurationOptions = importAnalysisShadowCastDurationOptions;
|
|
11503
|
+
exports.importAnalysisShadowCastThresholdOptions = importAnalysisShadowCastThresholdOptions;
|
|
11128
11504
|
exports.importAnalysisSliceAnalysis = importAnalysisSliceAnalysis;
|
|
11129
11505
|
exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
11130
11506
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
@@ -11221,7 +11597,6 @@ exports.importGeometryCoordinateFormatter = importGeometryCoordinateFormatter;
|
|
|
11221
11597
|
exports.importGeometryExtent = importGeometryExtent;
|
|
11222
11598
|
exports.importGeometryGeometry = importGeometryGeometry;
|
|
11223
11599
|
exports.importGeometryGeometryEngine = importGeometryGeometryEngine;
|
|
11224
|
-
exports.importGeometryGeometryEngineAsync = importGeometryGeometryEngineAsync;
|
|
11225
11600
|
exports.importGeometryHeightModelInfo = importGeometryHeightModelInfo;
|
|
11226
11601
|
exports.importGeometryMesh = importGeometryMesh;
|
|
11227
11602
|
exports.importGeometryMultipoint = importGeometryMultipoint;
|
|
@@ -11461,15 +11836,23 @@ exports.importLinkChartLinkChartProperties = importLinkChartLinkChartProperties;
|
|
|
11461
11836
|
exports.importLinkChartNonspatialDataDisplay = importLinkChartNonspatialDataDisplay;
|
|
11462
11837
|
exports.importLinkChartOrganicLayoutSettings = importLinkChartOrganicLayoutSettings;
|
|
11463
11838
|
exports.importMap = importMap;
|
|
11839
|
+
exports.importNetworksCircuitManager = importNetworksCircuitManager;
|
|
11464
11840
|
exports.importNetworksNetwork = importNetworksNetwork;
|
|
11841
|
+
exports.importNetworksSupportCircuit = importNetworksSupportCircuit;
|
|
11842
|
+
exports.importNetworksSupportCircuitLocation = importNetworksSupportCircuitLocation;
|
|
11843
|
+
exports.importNetworksSupportCircuitPath = importNetworksSupportCircuitPath;
|
|
11844
|
+
exports.importNetworksSupportCircuitPathConnectivityElement = importNetworksSupportCircuitPathConnectivityElement;
|
|
11845
|
+
exports.importNetworksSupportCircuitSection = importNetworksSupportCircuitSection;
|
|
11465
11846
|
exports.importNetworksSupportNamedTraceConfiguration = importNetworksSupportNamedTraceConfiguration;
|
|
11466
11847
|
exports.importNetworksSupportNetworkSystemLayers = importNetworksSupportNetworkSystemLayers;
|
|
11848
|
+
exports.importNetworksSupportSubcircuit = importNetworksSupportSubcircuit;
|
|
11467
11849
|
exports.importNetworksSupportTerminal = importNetworksSupportTerminal;
|
|
11468
11850
|
exports.importNetworksSupportTerminalConfiguration = importNetworksSupportTerminalConfiguration;
|
|
11469
11851
|
exports.importNetworksSupportTopologyValidationJobInfo = importNetworksSupportTopologyValidationJobInfo;
|
|
11470
11852
|
exports.importNetworksSupportTraceConfiguration = importNetworksSupportTraceConfiguration;
|
|
11471
11853
|
exports.importNetworksSupportTraceJobInfo = importNetworksSupportTraceJobInfo;
|
|
11472
11854
|
exports.importNetworksSupportUNTraceConfiguration = importNetworksSupportUNTraceConfiguration;
|
|
11855
|
+
exports.importNetworksUnitIdentifierManager = importNetworksUnitIdentifierManager;
|
|
11473
11856
|
exports.importNetworksUtilityNetwork = importNetworksUtilityNetwork;
|
|
11474
11857
|
exports.importPointCloudRenderers = importPointCloudRenderers;
|
|
11475
11858
|
exports.importPopupContent = importPopupContent;
|
|
@@ -11571,6 +11954,7 @@ exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGrap
|
|
|
11571
11954
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11572
11955
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11573
11956
|
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11957
|
+
exports.importRestKnowledgeGraphGraphDataModelSingletonOperationResult = importRestKnowledgeGraphGraphDataModelSingletonOperationResult;
|
|
11574
11958
|
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11575
11959
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11576
11960
|
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
@@ -11606,6 +11990,8 @@ exports.importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = impo
|
|
|
11606
11990
|
exports.importRestLastMileDelivery = importRestLastMileDelivery;
|
|
11607
11991
|
exports.importRestLocator = importRestLocator;
|
|
11608
11992
|
exports.importRestNetworkService = importRestNetworkService;
|
|
11993
|
+
exports.importRestNetworksCircuitsSupportCircuitTraceResult = importRestNetworksCircuitsSupportCircuitTraceResult;
|
|
11994
|
+
exports.importRestNetworksCircuitsSupportCircuitVerifyResult = importRestNetworksCircuitsSupportCircuitVerifyResult;
|
|
11609
11995
|
exports.importRestNetworksQueryAssociations = importRestNetworksQueryAssociations;
|
|
11610
11996
|
exports.importRestNetworksSupportAggregatedGeometry = importRestNetworksSupportAggregatedGeometry;
|
|
11611
11997
|
exports.importRestNetworksSupportAssociation = importRestNetworksSupportAssociation;
|
|
@@ -11615,6 +12001,7 @@ exports.importRestNetworksSupportNetworkElement = importRestNetworksSupportNetwo
|
|
|
11615
12001
|
exports.importRestNetworksSupportQueryAssociationsParameters = importRestNetworksSupportQueryAssociationsParameters;
|
|
11616
12002
|
exports.importRestNetworksSupportQueryAssociationsResult = importRestNetworksSupportQueryAssociationsResult;
|
|
11617
12003
|
exports.importRestNetworksSupportSynthesizeAssociationGeometriesParameters = importRestNetworksSupportSynthesizeAssociationGeometriesParameters;
|
|
12004
|
+
exports.importRestNetworksSupportTelecomNetworkElement = importRestNetworksSupportTelecomNetworkElement;
|
|
11618
12005
|
exports.importRestNetworksSupportTraceLocation = importRestNetworksSupportTraceLocation;
|
|
11619
12006
|
exports.importRestNetworksSupportTraceParameters = importRestNetworksSupportTraceParameters;
|
|
11620
12007
|
exports.importRestNetworksSupportTraceResult = importRestNetworksSupportTraceResult;
|
|
@@ -11622,6 +12009,7 @@ exports.importRestNetworksSupportValidateNetworkTopologyParameters = importRestN
|
|
|
11622
12009
|
exports.importRestNetworksSupportValidateNetworkTopologyResult = importRestNetworksSupportValidateNetworkTopologyResult;
|
|
11623
12010
|
exports.importRestNetworksSynthesizeAssociationGeometries = importRestNetworksSynthesizeAssociationGeometries;
|
|
11624
12011
|
exports.importRestNetworksTrace = importRestNetworksTrace;
|
|
12012
|
+
exports.importRestNetworksUnitIdentifiersSupportUnitQueryResult = importRestNetworksUnitIdentifiersSupportUnitQueryResult;
|
|
11625
12013
|
exports.importRestPlaces = importRestPlaces;
|
|
11626
12014
|
exports.importRestPrint = importRestPrint;
|
|
11627
12015
|
exports.importRestQuery = importRestQuery;
|
|
@@ -11704,6 +12092,11 @@ exports.importRestSupportLastMileDeliveryParameters = importRestSupportLastMileD
|
|
|
11704
12092
|
exports.importRestSupportLegendLayer = importRestSupportLegendLayer;
|
|
11705
12093
|
exports.importRestSupportLengthsParameters = importRestSupportLengthsParameters;
|
|
11706
12094
|
exports.importRestSupportLinearUnit = importRestSupportLinearUnit;
|
|
12095
|
+
exports.importRestSupportLocateSetting = importRestSupportLocateSetting;
|
|
12096
|
+
exports.importRestSupportLocateSettingBase = importRestSupportLocateSettingBase;
|
|
12097
|
+
exports.importRestSupportLocateSettingSource = importRestSupportLocateSettingSource;
|
|
12098
|
+
exports.importRestSupportLocateSettings = importRestSupportLocateSettings;
|
|
12099
|
+
exports.importRestSupportLocateSettingsOverrides = importRestSupportLocateSettingsOverrides;
|
|
11707
12100
|
exports.importRestSupportMapToImageParameters = importRestSupportMapToImageParameters;
|
|
11708
12101
|
exports.importRestSupportMeasureAreaFromImageResult = importRestSupportMeasureAreaFromImageResult;
|
|
11709
12102
|
exports.importRestSupportMeasureFromImageParameters = importRestSupportMeasureFromImageParameters;
|
|
@@ -11858,6 +12251,8 @@ exports.importVersionManagementVersionAdaptersUtils = importVersionManagementVer
|
|
|
11858
12251
|
exports.importVersionManagementVersionManagementService = importVersionManagementVersionManagementService;
|
|
11859
12252
|
exports.importVersionManagementVersioningState = importVersionManagementVersioningState;
|
|
11860
12253
|
exports.importViewpoint = importViewpoint;
|
|
12254
|
+
exports.importViews2dAnalysisAreaMeasurementAnalysisView2D = importViews2dAnalysisAreaMeasurementAnalysisView2D;
|
|
12255
|
+
exports.importViews2dAnalysisDistanceMeasurementAnalysisView2D = importViews2dAnalysisDistanceMeasurementAnalysisView2D;
|
|
11861
12256
|
exports.importViews2dAnalysisElevationProfileAnalysisView2D = importViews2dAnalysisElevationProfileAnalysisView2D;
|
|
11862
12257
|
exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
11863
12258
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
@@ -11868,6 +12263,7 @@ exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3d
|
|
|
11868
12263
|
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11869
12264
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11870
12265
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12266
|
+
exports.importViews3dAnalysisShadowCastAnalysisView3D = importViews3dAnalysisShadowCastAnalysisView3D;
|
|
11871
12267
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11872
12268
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11873
12269
|
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
@@ -11925,6 +12321,7 @@ exports.importViewsNavigationGamepadGamepadSettings = importViewsNavigationGamep
|
|
|
11925
12321
|
exports.importViewsNavigationNavigation = importViewsNavigationNavigation;
|
|
11926
12322
|
exports.importViewsNavigationNavigationActionMap = importViewsNavigationNavigationActionMap;
|
|
11927
12323
|
exports.importViewsSceneView = importViewsSceneView;
|
|
12324
|
+
exports.importViewsSupportAttributionItem = importViewsSupportAttributionItem;
|
|
11928
12325
|
exports.importViewsSupportColorUtils = importViewsSupportColorUtils;
|
|
11929
12326
|
exports.importViewsSupportHighlightOptions = importViewsSupportHighlightOptions;
|
|
11930
12327
|
exports.importViewsTheme = importViewsTheme;
|
|
@@ -12033,9 +12430,12 @@ exports.importWidgetsEditorCreateFeaturesWorkflow = importWidgetsEditorCreateFea
|
|
|
12033
12430
|
exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreateFeaturesWorkflowData;
|
|
12034
12431
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
12035
12432
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
12433
|
+
exports.importWidgetsEditorMergeFeaturesWorkflow = importWidgetsEditorMergeFeaturesWorkflow;
|
|
12434
|
+
exports.importWidgetsEditorMergeFeaturesWorkflowData = importWidgetsEditorMergeFeaturesWorkflowData;
|
|
12036
12435
|
exports.importWidgetsEditorSplitFeatureWorkflow = importWidgetsEditorSplitFeatureWorkflow;
|
|
12037
12436
|
exports.importWidgetsEditorSplitFeatureWorkflowData = importWidgetsEditorSplitFeatureWorkflowData;
|
|
12038
12437
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
12438
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflow = importWidgetsEditorUpdateFeaturesWorkflow;
|
|
12039
12439
|
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12040
12440
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
12041
12441
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
@@ -12199,6 +12599,7 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
12199
12599
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
12200
12600
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
12201
12601
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12602
|
+
exports.newAnalysisDistanceMeasurementAnalysis = newAnalysisDistanceMeasurementAnalysis;
|
|
12202
12603
|
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12203
12604
|
exports.newAnalysisElevationProfileElevationProfileDisplayUnits = newAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
12204
12605
|
exports.newAnalysisElevationProfileElevationProfileLine = newAnalysisElevationProfileElevationProfileLine;
|
|
@@ -12213,6 +12614,10 @@ exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
|
12213
12614
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
12214
12615
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
12215
12616
|
exports.newAnalysisLineOfSightAnalysisTarget = newAnalysisLineOfSightAnalysisTarget;
|
|
12617
|
+
exports.newAnalysisShadowCastAnalysis = newAnalysisShadowCastAnalysis;
|
|
12618
|
+
exports.newAnalysisShadowCastDiscreteOptions = newAnalysisShadowCastDiscreteOptions;
|
|
12619
|
+
exports.newAnalysisShadowCastDurationOptions = newAnalysisShadowCastDurationOptions;
|
|
12620
|
+
exports.newAnalysisShadowCastThresholdOptions = newAnalysisShadowCastThresholdOptions;
|
|
12216
12621
|
exports.newAnalysisSliceAnalysis = newAnalysisSliceAnalysis;
|
|
12217
12622
|
exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
12218
12623
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
@@ -12232,6 +12637,8 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
12232
12637
|
exports.newCoreError = newCoreError;
|
|
12233
12638
|
exports.newCoreHandles = newCoreHandles;
|
|
12234
12639
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12640
|
+
exports.newEditingSharedTemplatesSharedTemplate = newEditingSharedTemplatesSharedTemplate;
|
|
12641
|
+
exports.newEditingSharedTemplatesSharedTemplateMetadata = newEditingSharedTemplatesSharedTemplateMetadata;
|
|
12235
12642
|
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12236
12643
|
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12237
12644
|
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
@@ -12389,6 +12796,7 @@ exports.newLayersSupportSceneFilter = newLayersSupportSceneFilter;
|
|
|
12389
12796
|
exports.newLayersSupportSceneModification = newLayersSupportSceneModification;
|
|
12390
12797
|
exports.newLayersSupportSceneModifications = newLayersSupportSceneModifications;
|
|
12391
12798
|
exports.newLayersSupportSiteLayerInfo = newLayersSupportSiteLayerInfo;
|
|
12799
|
+
exports.newLayersSupportStreamConnection = newLayersSupportStreamConnection;
|
|
12392
12800
|
exports.newLayersSupportSublayer = newLayersSupportSublayer;
|
|
12393
12801
|
exports.newLayersSupportSubtype = newLayersSupportSubtype;
|
|
12394
12802
|
exports.newLayersSupportSubtypeSublayer = newLayersSupportSubtypeSublayer;
|
|
@@ -12414,7 +12822,9 @@ exports.newLayersVoxelLayer = newLayersVoxelLayer;
|
|
|
12414
12822
|
exports.newLayersVoxelVoxelDynamicSection = newLayersVoxelVoxelDynamicSection;
|
|
12415
12823
|
exports.newLayersVoxelVoxelSlice = newLayersVoxelVoxelSlice;
|
|
12416
12824
|
exports.newLayersVoxelVoxelTransferFunctionStyle = newLayersVoxelVoxelTransferFunctionStyle;
|
|
12825
|
+
exports.newLayersVoxelVoxelVariable = newLayersVoxelVoxelVariable;
|
|
12417
12826
|
exports.newLayersVoxelVoxelVariableStyle = newLayersVoxelVoxelVariableStyle;
|
|
12827
|
+
exports.newLayersVoxelVoxelVolume = newLayersVoxelVoxelVolume;
|
|
12418
12828
|
exports.newLayersVoxelVoxelVolumeStyle = newLayersVoxelVoxelVolumeStyle;
|
|
12419
12829
|
exports.newLayersWCSLayer = newLayersWCSLayer;
|
|
12420
12830
|
exports.newLayersWFSLayer = newLayersWFSLayer;
|
|
@@ -12427,15 +12837,23 @@ exports.newLinkChartLinkChartProperties = newLinkChartLinkChartProperties;
|
|
|
12427
12837
|
exports.newLinkChartNonspatialDataDisplay = newLinkChartNonspatialDataDisplay;
|
|
12428
12838
|
exports.newLinkChartOrganicLayoutSettings = newLinkChartOrganicLayoutSettings;
|
|
12429
12839
|
exports.newMap = newMap;
|
|
12840
|
+
exports.newNetworksCircuitManager = newNetworksCircuitManager;
|
|
12430
12841
|
exports.newNetworksNetwork = newNetworksNetwork;
|
|
12842
|
+
exports.newNetworksSupportCircuit = newNetworksSupportCircuit;
|
|
12843
|
+
exports.newNetworksSupportCircuitLocation = newNetworksSupportCircuitLocation;
|
|
12844
|
+
exports.newNetworksSupportCircuitPath = newNetworksSupportCircuitPath;
|
|
12845
|
+
exports.newNetworksSupportCircuitPathConnectivityElement = newNetworksSupportCircuitPathConnectivityElement;
|
|
12846
|
+
exports.newNetworksSupportCircuitSection = newNetworksSupportCircuitSection;
|
|
12431
12847
|
exports.newNetworksSupportNamedTraceConfiguration = newNetworksSupportNamedTraceConfiguration;
|
|
12432
12848
|
exports.newNetworksSupportNetworkSystemLayers = newNetworksSupportNetworkSystemLayers;
|
|
12849
|
+
exports.newNetworksSupportSubcircuit = newNetworksSupportSubcircuit;
|
|
12433
12850
|
exports.newNetworksSupportTerminal = newNetworksSupportTerminal;
|
|
12434
12851
|
exports.newNetworksSupportTerminalConfiguration = newNetworksSupportTerminalConfiguration;
|
|
12435
12852
|
exports.newNetworksSupportTopologyValidationJobInfo = newNetworksSupportTopologyValidationJobInfo;
|
|
12436
12853
|
exports.newNetworksSupportTraceConfiguration = newNetworksSupportTraceConfiguration;
|
|
12437
12854
|
exports.newNetworksSupportTraceJobInfo = newNetworksSupportTraceJobInfo;
|
|
12438
12855
|
exports.newNetworksSupportUNTraceConfiguration = newNetworksSupportUNTraceConfiguration;
|
|
12856
|
+
exports.newNetworksUnitIdentifierManager = newNetworksUnitIdentifierManager;
|
|
12439
12857
|
exports.newNetworksUtilityNetwork = newNetworksUtilityNetwork;
|
|
12440
12858
|
exports.newPopupContentAttachmentsContent = newPopupContentAttachmentsContent;
|
|
12441
12859
|
exports.newPopupContentBarChartMediaInfo = newPopupContentBarChartMediaInfo;
|
|
@@ -12512,6 +12930,7 @@ exports.newRenderersVisualVariablesSupportOpacityStop = newRenderersVisualVariab
|
|
|
12512
12930
|
exports.newRenderersVisualVariablesSupportSizeStop = newRenderersVisualVariablesSupportSizeStop;
|
|
12513
12931
|
exports.newRenderersVisualVariablesVisualVariable = newRenderersVisualVariablesVisualVariable;
|
|
12514
12932
|
exports.newRestFeatureServiceFeatureService = newRestFeatureServiceFeatureService;
|
|
12933
|
+
exports.newRestGeoprocessorGPOptions = newRestGeoprocessorGPOptions;
|
|
12515
12934
|
exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
12516
12935
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12517
12936
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
@@ -12522,6 +12941,7 @@ exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraph
|
|
|
12522
12941
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12523
12942
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12524
12943
|
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12944
|
+
exports.newRestKnowledgeGraphGraphDataModelSingletonOperationResult = newRestKnowledgeGraphGraphDataModelSingletonOperationResult;
|
|
12525
12945
|
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12526
12946
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12527
12947
|
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
@@ -12553,6 +12973,8 @@ exports.newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity = ne
|
|
|
12553
12973
|
exports.newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter = newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter;
|
|
12554
12974
|
exports.newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection = newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection;
|
|
12555
12975
|
exports.newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings;
|
|
12976
|
+
exports.newRestNetworksCircuitsSupportCircuitTraceResult = newRestNetworksCircuitsSupportCircuitTraceResult;
|
|
12977
|
+
exports.newRestNetworksCircuitsSupportCircuitVerifyResult = newRestNetworksCircuitsSupportCircuitVerifyResult;
|
|
12556
12978
|
exports.newRestNetworksSupportAggregatedGeometry = newRestNetworksSupportAggregatedGeometry;
|
|
12557
12979
|
exports.newRestNetworksSupportAssociation = newRestNetworksSupportAssociation;
|
|
12558
12980
|
exports.newRestNetworksSupportAssociationGeometriesResult = newRestNetworksSupportAssociationGeometriesResult;
|
|
@@ -12561,10 +12983,13 @@ exports.newRestNetworksSupportNetworkElement = newRestNetworksSupportNetworkElem
|
|
|
12561
12983
|
exports.newRestNetworksSupportQueryAssociationsParameters = newRestNetworksSupportQueryAssociationsParameters;
|
|
12562
12984
|
exports.newRestNetworksSupportQueryAssociationsResult = newRestNetworksSupportQueryAssociationsResult;
|
|
12563
12985
|
exports.newRestNetworksSupportSynthesizeAssociationGeometriesParameters = newRestNetworksSupportSynthesizeAssociationGeometriesParameters;
|
|
12986
|
+
exports.newRestNetworksSupportTelecomNetworkElement = newRestNetworksSupportTelecomNetworkElement;
|
|
12564
12987
|
exports.newRestNetworksSupportTraceLocation = newRestNetworksSupportTraceLocation;
|
|
12565
12988
|
exports.newRestNetworksSupportTraceParameters = newRestNetworksSupportTraceParameters;
|
|
12566
12989
|
exports.newRestNetworksSupportTraceResult = newRestNetworksSupportTraceResult;
|
|
12567
12990
|
exports.newRestNetworksSupportValidateNetworkTopologyParameters = newRestNetworksSupportValidateNetworkTopologyParameters;
|
|
12991
|
+
exports.newRestNetworksSupportValidateNetworkTopologyResult = newRestNetworksSupportValidateNetworkTopologyResult;
|
|
12992
|
+
exports.newRestNetworksUnitIdentifiersSupportUnitQueryResult = newRestNetworksUnitIdentifiersSupportUnitQueryResult;
|
|
12568
12993
|
exports.newRestQuerySupportAttachmentInfo = newRestQuerySupportAttachmentInfo;
|
|
12569
12994
|
exports.newRestSupportAddressCandidate = newRestSupportAddressCandidate;
|
|
12570
12995
|
exports.newRestSupportAlgorithmicColorRamp = newRestSupportAlgorithmicColorRamp;
|
|
@@ -12642,6 +13067,11 @@ exports.newRestSupportLastMileDeliveryParameters = newRestSupportLastMileDeliver
|
|
|
12642
13067
|
exports.newRestSupportLegendLayer = newRestSupportLegendLayer;
|
|
12643
13068
|
exports.newRestSupportLengthsParameters = newRestSupportLengthsParameters;
|
|
12644
13069
|
exports.newRestSupportLinearUnit = newRestSupportLinearUnit;
|
|
13070
|
+
exports.newRestSupportLocateSetting = newRestSupportLocateSetting;
|
|
13071
|
+
exports.newRestSupportLocateSettingBase = newRestSupportLocateSettingBase;
|
|
13072
|
+
exports.newRestSupportLocateSettingSource = newRestSupportLocateSettingSource;
|
|
13073
|
+
exports.newRestSupportLocateSettings = newRestSupportLocateSettings;
|
|
13074
|
+
exports.newRestSupportLocateSettingsOverrides = newRestSupportLocateSettingsOverrides;
|
|
12645
13075
|
exports.newRestSupportMapToImageParameters = newRestSupportMapToImageParameters;
|
|
12646
13076
|
exports.newRestSupportMeasureAreaFromImageResult = newRestSupportMeasureAreaFromImageResult;
|
|
12647
13077
|
exports.newRestSupportMeasureFromImageParameters = newRestSupportMeasureFromImageParameters;
|
|
@@ -12735,6 +13165,8 @@ exports.newTimeTimeInterval = newTimeTimeInterval;
|
|
|
12735
13165
|
exports.newVersionManagementVersionManagementService = newVersionManagementVersionManagementService;
|
|
12736
13166
|
exports.newVersionManagementVersioningState = newVersionManagementVersioningState;
|
|
12737
13167
|
exports.newViewpoint = newViewpoint;
|
|
13168
|
+
exports.newViews2dAnalysisAreaMeasurementAnalysisView2D = newViews2dAnalysisAreaMeasurementAnalysisView2D;
|
|
13169
|
+
exports.newViews2dAnalysisDistanceMeasurementAnalysisView2D = newViews2dAnalysisDistanceMeasurementAnalysisView2D;
|
|
12738
13170
|
exports.newViews2dAnalysisElevationProfileAnalysisView2D = newViews2dAnalysisElevationProfileAnalysisView2D;
|
|
12739
13171
|
exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
12740
13172
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
@@ -12745,6 +13177,7 @@ exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalys
|
|
|
12745
13177
|
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12746
13178
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12747
13179
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
13180
|
+
exports.newViews3dAnalysisShadowCastAnalysisView3D = newViews3dAnalysisShadowCastAnalysisView3D;
|
|
12748
13181
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12749
13182
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12750
13183
|
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
@@ -12757,9 +13190,14 @@ exports.newViews3dEnvironmentSnowyWeather = newViews3dEnvironmentSnowyWeather;
|
|
|
12757
13190
|
exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
12758
13191
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12759
13192
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
13193
|
+
exports.newViews3dSupportLayerPerformanceInfo = newViews3dSupportLayerPerformanceInfo;
|
|
13194
|
+
exports.newViews3dSupportSceneViewPerformanceInfo = newViews3dSupportSceneViewPerformanceInfo;
|
|
13195
|
+
exports.newViews3dWebglManagedFBO = newViews3dWebglManagedFBO;
|
|
13196
|
+
exports.newViews3dWebglRenderCamera = newViews3dWebglRenderCamera;
|
|
12760
13197
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12761
13198
|
exports.newViewsAnalysisElevationProfileElevationProfileError = newViewsAnalysisElevationProfileElevationProfileError;
|
|
12762
13199
|
exports.newViewsAnalysisElevationProfileElevationProfileResult = newViewsAnalysisElevationProfileElevationProfileResult;
|
|
13200
|
+
exports.newViewsAnalysisLengthDimensionResult = newViewsAnalysisLengthDimensionResult;
|
|
12763
13201
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12764
13202
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12765
13203
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12903,8 +13341,12 @@ exports.newWidgetsEditorCreateFeaturesWorkflow = newWidgetsEditorCreateFeaturesW
|
|
|
12903
13341
|
exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeaturesWorkflowData;
|
|
12904
13342
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12905
13343
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
13344
|
+
exports.newWidgetsEditorMergeFeaturesWorkflow = newWidgetsEditorMergeFeaturesWorkflow;
|
|
13345
|
+
exports.newWidgetsEditorMergeFeaturesWorkflowData = newWidgetsEditorMergeFeaturesWorkflowData;
|
|
12906
13346
|
exports.newWidgetsEditorSplitFeatureWorkflow = newWidgetsEditorSplitFeatureWorkflow;
|
|
13347
|
+
exports.newWidgetsEditorSplitFeatureWorkflowData = newWidgetsEditorSplitFeatureWorkflowData;
|
|
12907
13348
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
13349
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflow = newWidgetsEditorUpdateFeaturesWorkflow;
|
|
12908
13350
|
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12909
13351
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12910
13352
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|