@arcgis/core-adapter 5.0.0-next.4 → 5.0.0-next.41
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 +526 -89
- package/dist/index.d.cts +90 -20
- package/dist/index.d.ts +90 -20
- package/dist/index.js +526 -89
- 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");
|
|
@@ -3989,6 +4198,39 @@ async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(pr
|
|
|
3989
4198
|
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3990
4199
|
return new ModConstructor(properties);
|
|
3991
4200
|
}
|
|
4201
|
+
async function importRestNetworksCircuitsSupportCircuitTraceResult() {
|
|
4202
|
+
if (isAMD) {
|
|
4203
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitTraceResult");
|
|
4204
|
+
}
|
|
4205
|
+
const module2 = await import("@arcgis/core/rest/networks/circuits/support/CircuitTraceResult.js");
|
|
4206
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4207
|
+
}
|
|
4208
|
+
async function newRestNetworksCircuitsSupportCircuitTraceResult(properties) {
|
|
4209
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitTraceResult();
|
|
4210
|
+
return new ModConstructor(properties);
|
|
4211
|
+
}
|
|
4212
|
+
async function importRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4213
|
+
if (isAMD) {
|
|
4214
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitVerifyResult");
|
|
4215
|
+
}
|
|
4216
|
+
const module2 = await import("@arcgis/core/rest/networks/circuits/support/CircuitVerifyResult.js");
|
|
4217
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4218
|
+
}
|
|
4219
|
+
async function newRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4220
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitVerifyResult();
|
|
4221
|
+
return new ModConstructor();
|
|
4222
|
+
}
|
|
4223
|
+
async function importRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4224
|
+
if (isAMD) {
|
|
4225
|
+
return await window.$arcgis.import("esri/rest/networks/unitIdentifiers/support/UnitQueryResult");
|
|
4226
|
+
}
|
|
4227
|
+
const module2 = await import("@arcgis/core/rest/networks/unitIdentifiers/support/UnitQueryResult.js");
|
|
4228
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4229
|
+
}
|
|
4230
|
+
async function newRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4231
|
+
const ModConstructor = await importRestNetworksUnitIdentifiersSupportUnitQueryResult();
|
|
4232
|
+
return new ModConstructor();
|
|
4233
|
+
}
|
|
3992
4234
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3993
4235
|
if (isAMD) {
|
|
3994
4236
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4077,6 +4319,17 @@ async function newRestNetworksSupportSynthesizeAssociationGeometriesParameters(p
|
|
|
4077
4319
|
const ModConstructor = await importRestNetworksSupportSynthesizeAssociationGeometriesParameters();
|
|
4078
4320
|
return new ModConstructor(properties);
|
|
4079
4321
|
}
|
|
4322
|
+
async function importRestNetworksSupportTelecomNetworkElement() {
|
|
4323
|
+
if (isAMD) {
|
|
4324
|
+
return await window.$arcgis.import("esri/rest/networks/support/TelecomNetworkElement");
|
|
4325
|
+
}
|
|
4326
|
+
const module2 = await import("@arcgis/core/rest/networks/support/TelecomNetworkElement.js");
|
|
4327
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4328
|
+
}
|
|
4329
|
+
async function newRestNetworksSupportTelecomNetworkElement(properties) {
|
|
4330
|
+
const ModConstructor = await importRestNetworksSupportTelecomNetworkElement();
|
|
4331
|
+
return new ModConstructor(properties);
|
|
4332
|
+
}
|
|
4080
4333
|
async function importRestNetworksSupportTraceLocation() {
|
|
4081
4334
|
if (isAMD) {
|
|
4082
4335
|
return await window.$arcgis.import("esri/rest/networks/support/TraceLocation");
|
|
@@ -4121,6 +4374,17 @@ async function newRestNetworksSupportValidateNetworkTopologyParameters(propertie
|
|
|
4121
4374
|
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyParameters();
|
|
4122
4375
|
return new ModConstructor(properties);
|
|
4123
4376
|
}
|
|
4377
|
+
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4378
|
+
if (isAMD) {
|
|
4379
|
+
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
4380
|
+
}
|
|
4381
|
+
const module2 = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
4382
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4383
|
+
}
|
|
4384
|
+
async function newRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4385
|
+
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyResult();
|
|
4386
|
+
return new ModConstructor();
|
|
4387
|
+
}
|
|
4124
4388
|
async function importRestQuerySupportAttachmentInfo() {
|
|
4125
4389
|
if (isAMD) {
|
|
4126
4390
|
return await window.$arcgis.import("esri/rest/query/support/AttachmentInfo");
|
|
@@ -4968,6 +5232,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
4968
5232
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
4969
5233
|
return new ModConstructor(properties);
|
|
4970
5234
|
}
|
|
5235
|
+
async function importRestSupportLocateSetting() {
|
|
5236
|
+
if (isAMD) {
|
|
5237
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5238
|
+
}
|
|
5239
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5240
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5241
|
+
}
|
|
5242
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5243
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5244
|
+
return new ModConstructor(properties);
|
|
5245
|
+
}
|
|
5246
|
+
async function importRestSupportLocateSettingBase() {
|
|
5247
|
+
if (isAMD) {
|
|
5248
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5249
|
+
}
|
|
5250
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5251
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5252
|
+
}
|
|
5253
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5254
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5255
|
+
return new ModConstructor(properties);
|
|
5256
|
+
}
|
|
5257
|
+
async function importRestSupportLocateSettingSource() {
|
|
5258
|
+
if (isAMD) {
|
|
5259
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5260
|
+
}
|
|
5261
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5262
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5263
|
+
}
|
|
5264
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5265
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5266
|
+
return new ModConstructor(properties);
|
|
5267
|
+
}
|
|
5268
|
+
async function importRestSupportLocateSettings() {
|
|
5269
|
+
if (isAMD) {
|
|
5270
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5271
|
+
}
|
|
5272
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5273
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5274
|
+
}
|
|
5275
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5276
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5277
|
+
return new ModConstructor(properties);
|
|
5278
|
+
}
|
|
5279
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5280
|
+
if (isAMD) {
|
|
5281
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5282
|
+
}
|
|
5283
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5284
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5285
|
+
}
|
|
5286
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5287
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5288
|
+
return new ModConstructor(properties);
|
|
5289
|
+
}
|
|
4971
5290
|
async function importRestSupportMapToImageParameters() {
|
|
4972
5291
|
if (isAMD) {
|
|
4973
5292
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -6024,6 +6343,28 @@ async function newViews2dViewState(properties) {
|
|
|
6024
6343
|
const ModConstructor = await importViews2dViewState();
|
|
6025
6344
|
return new ModConstructor(properties);
|
|
6026
6345
|
}
|
|
6346
|
+
async function importViews2dAnalysisAreaMeasurementAnalysisView2D() {
|
|
6347
|
+
if (isAMD) {
|
|
6348
|
+
return await window.$arcgis.import("esri/views/2d/analysis/AreaMeasurementAnalysisView2D");
|
|
6349
|
+
}
|
|
6350
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/AreaMeasurementAnalysisView2D.js");
|
|
6351
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6352
|
+
}
|
|
6353
|
+
async function newViews2dAnalysisAreaMeasurementAnalysisView2D(properties) {
|
|
6354
|
+
const ModConstructor = await importViews2dAnalysisAreaMeasurementAnalysisView2D();
|
|
6355
|
+
return new ModConstructor(properties);
|
|
6356
|
+
}
|
|
6357
|
+
async function importViews2dAnalysisDistanceMeasurementAnalysisView2D() {
|
|
6358
|
+
if (isAMD) {
|
|
6359
|
+
return await window.$arcgis.import("esri/views/2d/analysis/DistanceMeasurementAnalysisView2D");
|
|
6360
|
+
}
|
|
6361
|
+
const module2 = await import("@arcgis/core/views/2d/analysis/DistanceMeasurementAnalysisView2D.js");
|
|
6362
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6363
|
+
}
|
|
6364
|
+
async function newViews2dAnalysisDistanceMeasurementAnalysisView2D(properties) {
|
|
6365
|
+
const ModConstructor = await importViews2dAnalysisDistanceMeasurementAnalysisView2D();
|
|
6366
|
+
return new ModConstructor(properties);
|
|
6367
|
+
}
|
|
6027
6368
|
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6028
6369
|
if (isAMD) {
|
|
6029
6370
|
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
@@ -6123,6 +6464,17 @@ async function newViews3dAnalysisLineOfSightAnalysisView3D(properties) {
|
|
|
6123
6464
|
const ModConstructor = await importViews3dAnalysisLineOfSightAnalysisView3D();
|
|
6124
6465
|
return new ModConstructor(properties);
|
|
6125
6466
|
}
|
|
6467
|
+
async function importViews3dAnalysisShadowCastAnalysisView3D() {
|
|
6468
|
+
if (isAMD) {
|
|
6469
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ShadowCastAnalysisView3D");
|
|
6470
|
+
}
|
|
6471
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ShadowCastAnalysisView3D.js");
|
|
6472
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6473
|
+
}
|
|
6474
|
+
async function newViews3dAnalysisShadowCastAnalysisView3D(properties) {
|
|
6475
|
+
const ModConstructor = await importViews3dAnalysisShadowCastAnalysisView3D();
|
|
6476
|
+
return new ModConstructor(properties);
|
|
6477
|
+
}
|
|
6126
6478
|
async function importViews3dAnalysisSliceAnalysisView3D() {
|
|
6127
6479
|
if (isAMD) {
|
|
6128
6480
|
return await window.$arcgis.import("esri/views/3d/analysis/SliceAnalysisView3D");
|
|
@@ -6255,6 +6607,28 @@ async function newViews3dEnvironmentVirtualLighting(properties) {
|
|
|
6255
6607
|
const ModConstructor = await importViews3dEnvironmentVirtualLighting();
|
|
6256
6608
|
return new ModConstructor(properties);
|
|
6257
6609
|
}
|
|
6610
|
+
async function importViews3dWebglManagedFBO() {
|
|
6611
|
+
if (isAMD) {
|
|
6612
|
+
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
6613
|
+
}
|
|
6614
|
+
const module2 = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
6615
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6616
|
+
}
|
|
6617
|
+
async function newViews3dWebglManagedFBO() {
|
|
6618
|
+
const ModConstructor = await importViews3dWebglManagedFBO();
|
|
6619
|
+
return new ModConstructor();
|
|
6620
|
+
}
|
|
6621
|
+
async function importViews3dWebglRenderCamera() {
|
|
6622
|
+
if (isAMD) {
|
|
6623
|
+
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
6624
|
+
}
|
|
6625
|
+
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
6626
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6627
|
+
}
|
|
6628
|
+
async function newViews3dWebglRenderCamera() {
|
|
6629
|
+
const ModConstructor = await importViews3dWebglRenderCamera();
|
|
6630
|
+
return new ModConstructor();
|
|
6631
|
+
}
|
|
6258
6632
|
async function importViews3dWebglRenderNode() {
|
|
6259
6633
|
if (isAMD) {
|
|
6260
6634
|
return await window.$arcgis.import("esri/views/3d/webgl/RenderNode");
|
|
@@ -6266,6 +6640,28 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6266
6640
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6267
6641
|
return new ModConstructor(properties);
|
|
6268
6642
|
}
|
|
6643
|
+
async function importViews3dSupportLayerPerformanceInfo() {
|
|
6644
|
+
if (isAMD) {
|
|
6645
|
+
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
6646
|
+
}
|
|
6647
|
+
const module2 = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
6648
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6649
|
+
}
|
|
6650
|
+
async function newViews3dSupportLayerPerformanceInfo() {
|
|
6651
|
+
const ModConstructor = await importViews3dSupportLayerPerformanceInfo();
|
|
6652
|
+
return new ModConstructor();
|
|
6653
|
+
}
|
|
6654
|
+
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
6655
|
+
if (isAMD) {
|
|
6656
|
+
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
6657
|
+
}
|
|
6658
|
+
const module2 = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
6659
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6660
|
+
}
|
|
6661
|
+
async function newViews3dSupportSceneViewPerformanceInfo() {
|
|
6662
|
+
const ModConstructor = await importViews3dSupportSceneViewPerformanceInfo();
|
|
6663
|
+
return new ModConstructor();
|
|
6664
|
+
}
|
|
6269
6665
|
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6270
6666
|
if (isAMD) {
|
|
6271
6667
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
@@ -6288,6 +6684,17 @@ async function newViewsAnalysisElevationProfileElevationProfileResult(properties
|
|
|
6288
6684
|
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
6289
6685
|
return new ModConstructor(properties);
|
|
6290
6686
|
}
|
|
6687
|
+
async function importViewsAnalysisLengthDimensionResult() {
|
|
6688
|
+
if (isAMD) {
|
|
6689
|
+
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
6690
|
+
}
|
|
6691
|
+
const module2 = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
6692
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6693
|
+
}
|
|
6694
|
+
async function newViewsAnalysisLengthDimensionResult() {
|
|
6695
|
+
const ModConstructor = await importViewsAnalysisLengthDimensionResult();
|
|
6696
|
+
return new ModConstructor();
|
|
6697
|
+
}
|
|
6291
6698
|
async function importViewsDrawDraw() {
|
|
6292
6699
|
if (isAMD) {
|
|
6293
6700
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -7839,6 +8246,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7839
8246
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7840
8247
|
return new ModConstructor(properties);
|
|
7841
8248
|
}
|
|
8249
|
+
async function importWidgetsEditorMergeFeaturesWorkflow() {
|
|
8250
|
+
if (isAMD) {
|
|
8251
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflow");
|
|
8252
|
+
}
|
|
8253
|
+
const module2 = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflow.js");
|
|
8254
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8255
|
+
}
|
|
8256
|
+
async function newWidgetsEditorMergeFeaturesWorkflow(properties) {
|
|
8257
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflow();
|
|
8258
|
+
return new ModConstructor(properties);
|
|
8259
|
+
}
|
|
8260
|
+
async function importWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8261
|
+
if (isAMD) {
|
|
8262
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflowData");
|
|
8263
|
+
}
|
|
8264
|
+
const module2 = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflowData.js");
|
|
8265
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8266
|
+
}
|
|
8267
|
+
async function newWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8268
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflowData();
|
|
8269
|
+
return new ModConstructor();
|
|
8270
|
+
}
|
|
7842
8271
|
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7843
8272
|
if (isAMD) {
|
|
7844
8273
|
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
@@ -7850,6 +8279,28 @@ async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
|
7850
8279
|
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7851
8280
|
return new ModConstructor(properties);
|
|
7852
8281
|
}
|
|
8282
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
8283
|
+
if (isAMD) {
|
|
8284
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
8285
|
+
}
|
|
8286
|
+
const module2 = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
8287
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8288
|
+
}
|
|
8289
|
+
async function newWidgetsEditorSplitFeatureWorkflowData() {
|
|
8290
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflowData();
|
|
8291
|
+
return new ModConstructor();
|
|
8292
|
+
}
|
|
8293
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
8294
|
+
if (isAMD) {
|
|
8295
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
8296
|
+
}
|
|
8297
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
8298
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8299
|
+
}
|
|
8300
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
8301
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
8302
|
+
return new ModConstructor(properties);
|
|
8303
|
+
}
|
|
7853
8304
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7854
8305
|
if (isAMD) {
|
|
7855
8306
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -9643,20 +10094,6 @@ async function importCoreWorkers() {
|
|
|
9643
10094
|
const module2 = await import("@arcgis/core/core/workers.js");
|
|
9644
10095
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9645
10096
|
}
|
|
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
10097
|
async function importFormElementsInputs() {
|
|
9661
10098
|
if (isAMD) {
|
|
9662
10099
|
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
@@ -10196,27 +10633,6 @@ async function importLayersSupportRasterFunctionUtils() {
|
|
|
10196
10633
|
const module2 = await import("@arcgis/core/layers/support/rasterFunctionUtils.js");
|
|
10197
10634
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10198
10635
|
}
|
|
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
10636
|
async function importPointCloudRenderers() {
|
|
10221
10637
|
if (isAMD) {
|
|
10222
10638
|
return await window.$arcgis.import("esri/pointCloudRenderers");
|
|
@@ -10301,13 +10717,6 @@ async function importRestGeoprocessor() {
|
|
|
10301
10717
|
const module2 = await import("@arcgis/core/rest/geoprocessor.js");
|
|
10302
10718
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10303
10719
|
}
|
|
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
10720
|
async function importRestIdentify() {
|
|
10312
10721
|
if (isAMD) {
|
|
10313
10722
|
return await window.$arcgis.import("esri/rest/identify");
|
|
@@ -10350,13 +10759,6 @@ async function importRestNetworksQueryAssociations() {
|
|
|
10350
10759
|
const module2 = await import("@arcgis/core/rest/networks/queryAssociations.js");
|
|
10351
10760
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10352
10761
|
}
|
|
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
10762
|
async function importRestNetworksSynthesizeAssociationGeometries() {
|
|
10361
10763
|
if (isAMD) {
|
|
10362
10764
|
return await window.$arcgis.import("esri/rest/networks/synthesizeAssociationGeometries");
|
|
@@ -10847,39 +11249,11 @@ async function importViews3dWebgl() {
|
|
|
10847
11249
|
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
10848
11250
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10849
11251
|
}
|
|
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() {
|
|
10858
|
-
if (isAMD) {
|
|
10859
|
-
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
10860
|
-
}
|
|
10861
|
-
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
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() {
|
|
11252
|
+
async function importViewsSupportAttributionItem() {
|
|
10872
11253
|
if (isAMD) {
|
|
10873
|
-
return await window.$arcgis.import("esri/views/
|
|
11254
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
10874
11255
|
}
|
|
10875
|
-
const module2 = await import("@arcgis/core/views/
|
|
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");
|
|
11256
|
+
const module2 = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
10883
11257
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10884
11258
|
}
|
|
10885
11259
|
async function importViewsSupportColorUtils() {
|
|
@@ -10889,13 +11263,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10889
11263
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10890
11264
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10891
11265
|
}
|
|
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
11266
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10900
11267
|
if (isAMD) {
|
|
10901
11268
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11111,6 +11478,7 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
11111
11478
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
11112
11479
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
11113
11480
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11481
|
+
exports.importAnalysisDistanceMeasurementAnalysis = importAnalysisDistanceMeasurementAnalysis;
|
|
11114
11482
|
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11115
11483
|
exports.importAnalysisElevationProfileElevationProfileDisplayUnits = importAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
11116
11484
|
exports.importAnalysisElevationProfileElevationProfileLine = importAnalysisElevationProfileElevationProfileLine;
|
|
@@ -11125,6 +11493,10 @@ exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
|
11125
11493
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
11126
11494
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
11127
11495
|
exports.importAnalysisLineOfSightAnalysisTarget = importAnalysisLineOfSightAnalysisTarget;
|
|
11496
|
+
exports.importAnalysisShadowCastAnalysis = importAnalysisShadowCastAnalysis;
|
|
11497
|
+
exports.importAnalysisShadowCastDiscreteOptions = importAnalysisShadowCastDiscreteOptions;
|
|
11498
|
+
exports.importAnalysisShadowCastDurationOptions = importAnalysisShadowCastDurationOptions;
|
|
11499
|
+
exports.importAnalysisShadowCastThresholdOptions = importAnalysisShadowCastThresholdOptions;
|
|
11128
11500
|
exports.importAnalysisSliceAnalysis = importAnalysisSliceAnalysis;
|
|
11129
11501
|
exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
11130
11502
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
@@ -11461,15 +11833,23 @@ exports.importLinkChartLinkChartProperties = importLinkChartLinkChartProperties;
|
|
|
11461
11833
|
exports.importLinkChartNonspatialDataDisplay = importLinkChartNonspatialDataDisplay;
|
|
11462
11834
|
exports.importLinkChartOrganicLayoutSettings = importLinkChartOrganicLayoutSettings;
|
|
11463
11835
|
exports.importMap = importMap;
|
|
11836
|
+
exports.importNetworksCircuitManager = importNetworksCircuitManager;
|
|
11464
11837
|
exports.importNetworksNetwork = importNetworksNetwork;
|
|
11838
|
+
exports.importNetworksSupportCircuit = importNetworksSupportCircuit;
|
|
11839
|
+
exports.importNetworksSupportCircuitLocation = importNetworksSupportCircuitLocation;
|
|
11840
|
+
exports.importNetworksSupportCircuitPath = importNetworksSupportCircuitPath;
|
|
11841
|
+
exports.importNetworksSupportCircuitPathConnectivityElement = importNetworksSupportCircuitPathConnectivityElement;
|
|
11842
|
+
exports.importNetworksSupportCircuitSection = importNetworksSupportCircuitSection;
|
|
11465
11843
|
exports.importNetworksSupportNamedTraceConfiguration = importNetworksSupportNamedTraceConfiguration;
|
|
11466
11844
|
exports.importNetworksSupportNetworkSystemLayers = importNetworksSupportNetworkSystemLayers;
|
|
11845
|
+
exports.importNetworksSupportSubcircuit = importNetworksSupportSubcircuit;
|
|
11467
11846
|
exports.importNetworksSupportTerminal = importNetworksSupportTerminal;
|
|
11468
11847
|
exports.importNetworksSupportTerminalConfiguration = importNetworksSupportTerminalConfiguration;
|
|
11469
11848
|
exports.importNetworksSupportTopologyValidationJobInfo = importNetworksSupportTopologyValidationJobInfo;
|
|
11470
11849
|
exports.importNetworksSupportTraceConfiguration = importNetworksSupportTraceConfiguration;
|
|
11471
11850
|
exports.importNetworksSupportTraceJobInfo = importNetworksSupportTraceJobInfo;
|
|
11472
11851
|
exports.importNetworksSupportUNTraceConfiguration = importNetworksSupportUNTraceConfiguration;
|
|
11852
|
+
exports.importNetworksUnitIdentifierManager = importNetworksUnitIdentifierManager;
|
|
11473
11853
|
exports.importNetworksUtilityNetwork = importNetworksUtilityNetwork;
|
|
11474
11854
|
exports.importPointCloudRenderers = importPointCloudRenderers;
|
|
11475
11855
|
exports.importPopupContent = importPopupContent;
|
|
@@ -11606,6 +11986,8 @@ exports.importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = impo
|
|
|
11606
11986
|
exports.importRestLastMileDelivery = importRestLastMileDelivery;
|
|
11607
11987
|
exports.importRestLocator = importRestLocator;
|
|
11608
11988
|
exports.importRestNetworkService = importRestNetworkService;
|
|
11989
|
+
exports.importRestNetworksCircuitsSupportCircuitTraceResult = importRestNetworksCircuitsSupportCircuitTraceResult;
|
|
11990
|
+
exports.importRestNetworksCircuitsSupportCircuitVerifyResult = importRestNetworksCircuitsSupportCircuitVerifyResult;
|
|
11609
11991
|
exports.importRestNetworksQueryAssociations = importRestNetworksQueryAssociations;
|
|
11610
11992
|
exports.importRestNetworksSupportAggregatedGeometry = importRestNetworksSupportAggregatedGeometry;
|
|
11611
11993
|
exports.importRestNetworksSupportAssociation = importRestNetworksSupportAssociation;
|
|
@@ -11615,6 +11997,7 @@ exports.importRestNetworksSupportNetworkElement = importRestNetworksSupportNetwo
|
|
|
11615
11997
|
exports.importRestNetworksSupportQueryAssociationsParameters = importRestNetworksSupportQueryAssociationsParameters;
|
|
11616
11998
|
exports.importRestNetworksSupportQueryAssociationsResult = importRestNetworksSupportQueryAssociationsResult;
|
|
11617
11999
|
exports.importRestNetworksSupportSynthesizeAssociationGeometriesParameters = importRestNetworksSupportSynthesizeAssociationGeometriesParameters;
|
|
12000
|
+
exports.importRestNetworksSupportTelecomNetworkElement = importRestNetworksSupportTelecomNetworkElement;
|
|
11618
12001
|
exports.importRestNetworksSupportTraceLocation = importRestNetworksSupportTraceLocation;
|
|
11619
12002
|
exports.importRestNetworksSupportTraceParameters = importRestNetworksSupportTraceParameters;
|
|
11620
12003
|
exports.importRestNetworksSupportTraceResult = importRestNetworksSupportTraceResult;
|
|
@@ -11622,6 +12005,7 @@ exports.importRestNetworksSupportValidateNetworkTopologyParameters = importRestN
|
|
|
11622
12005
|
exports.importRestNetworksSupportValidateNetworkTopologyResult = importRestNetworksSupportValidateNetworkTopologyResult;
|
|
11623
12006
|
exports.importRestNetworksSynthesizeAssociationGeometries = importRestNetworksSynthesizeAssociationGeometries;
|
|
11624
12007
|
exports.importRestNetworksTrace = importRestNetworksTrace;
|
|
12008
|
+
exports.importRestNetworksUnitIdentifiersSupportUnitQueryResult = importRestNetworksUnitIdentifiersSupportUnitQueryResult;
|
|
11625
12009
|
exports.importRestPlaces = importRestPlaces;
|
|
11626
12010
|
exports.importRestPrint = importRestPrint;
|
|
11627
12011
|
exports.importRestQuery = importRestQuery;
|
|
@@ -11704,6 +12088,11 @@ exports.importRestSupportLastMileDeliveryParameters = importRestSupportLastMileD
|
|
|
11704
12088
|
exports.importRestSupportLegendLayer = importRestSupportLegendLayer;
|
|
11705
12089
|
exports.importRestSupportLengthsParameters = importRestSupportLengthsParameters;
|
|
11706
12090
|
exports.importRestSupportLinearUnit = importRestSupportLinearUnit;
|
|
12091
|
+
exports.importRestSupportLocateSetting = importRestSupportLocateSetting;
|
|
12092
|
+
exports.importRestSupportLocateSettingBase = importRestSupportLocateSettingBase;
|
|
12093
|
+
exports.importRestSupportLocateSettingSource = importRestSupportLocateSettingSource;
|
|
12094
|
+
exports.importRestSupportLocateSettings = importRestSupportLocateSettings;
|
|
12095
|
+
exports.importRestSupportLocateSettingsOverrides = importRestSupportLocateSettingsOverrides;
|
|
11707
12096
|
exports.importRestSupportMapToImageParameters = importRestSupportMapToImageParameters;
|
|
11708
12097
|
exports.importRestSupportMeasureAreaFromImageResult = importRestSupportMeasureAreaFromImageResult;
|
|
11709
12098
|
exports.importRestSupportMeasureFromImageParameters = importRestSupportMeasureFromImageParameters;
|
|
@@ -11858,6 +12247,8 @@ exports.importVersionManagementVersionAdaptersUtils = importVersionManagementVer
|
|
|
11858
12247
|
exports.importVersionManagementVersionManagementService = importVersionManagementVersionManagementService;
|
|
11859
12248
|
exports.importVersionManagementVersioningState = importVersionManagementVersioningState;
|
|
11860
12249
|
exports.importViewpoint = importViewpoint;
|
|
12250
|
+
exports.importViews2dAnalysisAreaMeasurementAnalysisView2D = importViews2dAnalysisAreaMeasurementAnalysisView2D;
|
|
12251
|
+
exports.importViews2dAnalysisDistanceMeasurementAnalysisView2D = importViews2dAnalysisDistanceMeasurementAnalysisView2D;
|
|
11861
12252
|
exports.importViews2dAnalysisElevationProfileAnalysisView2D = importViews2dAnalysisElevationProfileAnalysisView2D;
|
|
11862
12253
|
exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
11863
12254
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
@@ -11868,6 +12259,7 @@ exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3d
|
|
|
11868
12259
|
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11869
12260
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11870
12261
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12262
|
+
exports.importViews3dAnalysisShadowCastAnalysisView3D = importViews3dAnalysisShadowCastAnalysisView3D;
|
|
11871
12263
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11872
12264
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11873
12265
|
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
@@ -11925,6 +12317,7 @@ exports.importViewsNavigationGamepadGamepadSettings = importViewsNavigationGamep
|
|
|
11925
12317
|
exports.importViewsNavigationNavigation = importViewsNavigationNavigation;
|
|
11926
12318
|
exports.importViewsNavigationNavigationActionMap = importViewsNavigationNavigationActionMap;
|
|
11927
12319
|
exports.importViewsSceneView = importViewsSceneView;
|
|
12320
|
+
exports.importViewsSupportAttributionItem = importViewsSupportAttributionItem;
|
|
11928
12321
|
exports.importViewsSupportColorUtils = importViewsSupportColorUtils;
|
|
11929
12322
|
exports.importViewsSupportHighlightOptions = importViewsSupportHighlightOptions;
|
|
11930
12323
|
exports.importViewsTheme = importViewsTheme;
|
|
@@ -12033,9 +12426,12 @@ exports.importWidgetsEditorCreateFeaturesWorkflow = importWidgetsEditorCreateFea
|
|
|
12033
12426
|
exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreateFeaturesWorkflowData;
|
|
12034
12427
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
12035
12428
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
12429
|
+
exports.importWidgetsEditorMergeFeaturesWorkflow = importWidgetsEditorMergeFeaturesWorkflow;
|
|
12430
|
+
exports.importWidgetsEditorMergeFeaturesWorkflowData = importWidgetsEditorMergeFeaturesWorkflowData;
|
|
12036
12431
|
exports.importWidgetsEditorSplitFeatureWorkflow = importWidgetsEditorSplitFeatureWorkflow;
|
|
12037
12432
|
exports.importWidgetsEditorSplitFeatureWorkflowData = importWidgetsEditorSplitFeatureWorkflowData;
|
|
12038
12433
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
12434
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflow = importWidgetsEditorUpdateFeaturesWorkflow;
|
|
12039
12435
|
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12040
12436
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
12041
12437
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
@@ -12199,6 +12595,7 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
12199
12595
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
12200
12596
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
12201
12597
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12598
|
+
exports.newAnalysisDistanceMeasurementAnalysis = newAnalysisDistanceMeasurementAnalysis;
|
|
12202
12599
|
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12203
12600
|
exports.newAnalysisElevationProfileElevationProfileDisplayUnits = newAnalysisElevationProfileElevationProfileDisplayUnits;
|
|
12204
12601
|
exports.newAnalysisElevationProfileElevationProfileLine = newAnalysisElevationProfileElevationProfileLine;
|
|
@@ -12213,6 +12610,10 @@ exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
|
12213
12610
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
12214
12611
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
12215
12612
|
exports.newAnalysisLineOfSightAnalysisTarget = newAnalysisLineOfSightAnalysisTarget;
|
|
12613
|
+
exports.newAnalysisShadowCastAnalysis = newAnalysisShadowCastAnalysis;
|
|
12614
|
+
exports.newAnalysisShadowCastDiscreteOptions = newAnalysisShadowCastDiscreteOptions;
|
|
12615
|
+
exports.newAnalysisShadowCastDurationOptions = newAnalysisShadowCastDurationOptions;
|
|
12616
|
+
exports.newAnalysisShadowCastThresholdOptions = newAnalysisShadowCastThresholdOptions;
|
|
12216
12617
|
exports.newAnalysisSliceAnalysis = newAnalysisSliceAnalysis;
|
|
12217
12618
|
exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
12218
12619
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
@@ -12232,6 +12633,8 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
12232
12633
|
exports.newCoreError = newCoreError;
|
|
12233
12634
|
exports.newCoreHandles = newCoreHandles;
|
|
12234
12635
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12636
|
+
exports.newEditingSharedTemplatesSharedTemplate = newEditingSharedTemplatesSharedTemplate;
|
|
12637
|
+
exports.newEditingSharedTemplatesSharedTemplateMetadata = newEditingSharedTemplatesSharedTemplateMetadata;
|
|
12235
12638
|
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12236
12639
|
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12237
12640
|
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
@@ -12389,6 +12792,7 @@ exports.newLayersSupportSceneFilter = newLayersSupportSceneFilter;
|
|
|
12389
12792
|
exports.newLayersSupportSceneModification = newLayersSupportSceneModification;
|
|
12390
12793
|
exports.newLayersSupportSceneModifications = newLayersSupportSceneModifications;
|
|
12391
12794
|
exports.newLayersSupportSiteLayerInfo = newLayersSupportSiteLayerInfo;
|
|
12795
|
+
exports.newLayersSupportStreamConnection = newLayersSupportStreamConnection;
|
|
12392
12796
|
exports.newLayersSupportSublayer = newLayersSupportSublayer;
|
|
12393
12797
|
exports.newLayersSupportSubtype = newLayersSupportSubtype;
|
|
12394
12798
|
exports.newLayersSupportSubtypeSublayer = newLayersSupportSubtypeSublayer;
|
|
@@ -12414,7 +12818,9 @@ exports.newLayersVoxelLayer = newLayersVoxelLayer;
|
|
|
12414
12818
|
exports.newLayersVoxelVoxelDynamicSection = newLayersVoxelVoxelDynamicSection;
|
|
12415
12819
|
exports.newLayersVoxelVoxelSlice = newLayersVoxelVoxelSlice;
|
|
12416
12820
|
exports.newLayersVoxelVoxelTransferFunctionStyle = newLayersVoxelVoxelTransferFunctionStyle;
|
|
12821
|
+
exports.newLayersVoxelVoxelVariable = newLayersVoxelVoxelVariable;
|
|
12417
12822
|
exports.newLayersVoxelVoxelVariableStyle = newLayersVoxelVoxelVariableStyle;
|
|
12823
|
+
exports.newLayersVoxelVoxelVolume = newLayersVoxelVoxelVolume;
|
|
12418
12824
|
exports.newLayersVoxelVoxelVolumeStyle = newLayersVoxelVoxelVolumeStyle;
|
|
12419
12825
|
exports.newLayersWCSLayer = newLayersWCSLayer;
|
|
12420
12826
|
exports.newLayersWFSLayer = newLayersWFSLayer;
|
|
@@ -12427,15 +12833,23 @@ exports.newLinkChartLinkChartProperties = newLinkChartLinkChartProperties;
|
|
|
12427
12833
|
exports.newLinkChartNonspatialDataDisplay = newLinkChartNonspatialDataDisplay;
|
|
12428
12834
|
exports.newLinkChartOrganicLayoutSettings = newLinkChartOrganicLayoutSettings;
|
|
12429
12835
|
exports.newMap = newMap;
|
|
12836
|
+
exports.newNetworksCircuitManager = newNetworksCircuitManager;
|
|
12430
12837
|
exports.newNetworksNetwork = newNetworksNetwork;
|
|
12838
|
+
exports.newNetworksSupportCircuit = newNetworksSupportCircuit;
|
|
12839
|
+
exports.newNetworksSupportCircuitLocation = newNetworksSupportCircuitLocation;
|
|
12840
|
+
exports.newNetworksSupportCircuitPath = newNetworksSupportCircuitPath;
|
|
12841
|
+
exports.newNetworksSupportCircuitPathConnectivityElement = newNetworksSupportCircuitPathConnectivityElement;
|
|
12842
|
+
exports.newNetworksSupportCircuitSection = newNetworksSupportCircuitSection;
|
|
12431
12843
|
exports.newNetworksSupportNamedTraceConfiguration = newNetworksSupportNamedTraceConfiguration;
|
|
12432
12844
|
exports.newNetworksSupportNetworkSystemLayers = newNetworksSupportNetworkSystemLayers;
|
|
12845
|
+
exports.newNetworksSupportSubcircuit = newNetworksSupportSubcircuit;
|
|
12433
12846
|
exports.newNetworksSupportTerminal = newNetworksSupportTerminal;
|
|
12434
12847
|
exports.newNetworksSupportTerminalConfiguration = newNetworksSupportTerminalConfiguration;
|
|
12435
12848
|
exports.newNetworksSupportTopologyValidationJobInfo = newNetworksSupportTopologyValidationJobInfo;
|
|
12436
12849
|
exports.newNetworksSupportTraceConfiguration = newNetworksSupportTraceConfiguration;
|
|
12437
12850
|
exports.newNetworksSupportTraceJobInfo = newNetworksSupportTraceJobInfo;
|
|
12438
12851
|
exports.newNetworksSupportUNTraceConfiguration = newNetworksSupportUNTraceConfiguration;
|
|
12852
|
+
exports.newNetworksUnitIdentifierManager = newNetworksUnitIdentifierManager;
|
|
12439
12853
|
exports.newNetworksUtilityNetwork = newNetworksUtilityNetwork;
|
|
12440
12854
|
exports.newPopupContentAttachmentsContent = newPopupContentAttachmentsContent;
|
|
12441
12855
|
exports.newPopupContentBarChartMediaInfo = newPopupContentBarChartMediaInfo;
|
|
@@ -12512,6 +12926,7 @@ exports.newRenderersVisualVariablesSupportOpacityStop = newRenderersVisualVariab
|
|
|
12512
12926
|
exports.newRenderersVisualVariablesSupportSizeStop = newRenderersVisualVariablesSupportSizeStop;
|
|
12513
12927
|
exports.newRenderersVisualVariablesVisualVariable = newRenderersVisualVariablesVisualVariable;
|
|
12514
12928
|
exports.newRestFeatureServiceFeatureService = newRestFeatureServiceFeatureService;
|
|
12929
|
+
exports.newRestGeoprocessorGPOptions = newRestGeoprocessorGPOptions;
|
|
12515
12930
|
exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
12516
12931
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12517
12932
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
@@ -12553,6 +12968,8 @@ exports.newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity = ne
|
|
|
12553
12968
|
exports.newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter = newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter;
|
|
12554
12969
|
exports.newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection = newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection;
|
|
12555
12970
|
exports.newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings = newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings;
|
|
12971
|
+
exports.newRestNetworksCircuitsSupportCircuitTraceResult = newRestNetworksCircuitsSupportCircuitTraceResult;
|
|
12972
|
+
exports.newRestNetworksCircuitsSupportCircuitVerifyResult = newRestNetworksCircuitsSupportCircuitVerifyResult;
|
|
12556
12973
|
exports.newRestNetworksSupportAggregatedGeometry = newRestNetworksSupportAggregatedGeometry;
|
|
12557
12974
|
exports.newRestNetworksSupportAssociation = newRestNetworksSupportAssociation;
|
|
12558
12975
|
exports.newRestNetworksSupportAssociationGeometriesResult = newRestNetworksSupportAssociationGeometriesResult;
|
|
@@ -12561,10 +12978,13 @@ exports.newRestNetworksSupportNetworkElement = newRestNetworksSupportNetworkElem
|
|
|
12561
12978
|
exports.newRestNetworksSupportQueryAssociationsParameters = newRestNetworksSupportQueryAssociationsParameters;
|
|
12562
12979
|
exports.newRestNetworksSupportQueryAssociationsResult = newRestNetworksSupportQueryAssociationsResult;
|
|
12563
12980
|
exports.newRestNetworksSupportSynthesizeAssociationGeometriesParameters = newRestNetworksSupportSynthesizeAssociationGeometriesParameters;
|
|
12981
|
+
exports.newRestNetworksSupportTelecomNetworkElement = newRestNetworksSupportTelecomNetworkElement;
|
|
12564
12982
|
exports.newRestNetworksSupportTraceLocation = newRestNetworksSupportTraceLocation;
|
|
12565
12983
|
exports.newRestNetworksSupportTraceParameters = newRestNetworksSupportTraceParameters;
|
|
12566
12984
|
exports.newRestNetworksSupportTraceResult = newRestNetworksSupportTraceResult;
|
|
12567
12985
|
exports.newRestNetworksSupportValidateNetworkTopologyParameters = newRestNetworksSupportValidateNetworkTopologyParameters;
|
|
12986
|
+
exports.newRestNetworksSupportValidateNetworkTopologyResult = newRestNetworksSupportValidateNetworkTopologyResult;
|
|
12987
|
+
exports.newRestNetworksUnitIdentifiersSupportUnitQueryResult = newRestNetworksUnitIdentifiersSupportUnitQueryResult;
|
|
12568
12988
|
exports.newRestQuerySupportAttachmentInfo = newRestQuerySupportAttachmentInfo;
|
|
12569
12989
|
exports.newRestSupportAddressCandidate = newRestSupportAddressCandidate;
|
|
12570
12990
|
exports.newRestSupportAlgorithmicColorRamp = newRestSupportAlgorithmicColorRamp;
|
|
@@ -12642,6 +13062,11 @@ exports.newRestSupportLastMileDeliveryParameters = newRestSupportLastMileDeliver
|
|
|
12642
13062
|
exports.newRestSupportLegendLayer = newRestSupportLegendLayer;
|
|
12643
13063
|
exports.newRestSupportLengthsParameters = newRestSupportLengthsParameters;
|
|
12644
13064
|
exports.newRestSupportLinearUnit = newRestSupportLinearUnit;
|
|
13065
|
+
exports.newRestSupportLocateSetting = newRestSupportLocateSetting;
|
|
13066
|
+
exports.newRestSupportLocateSettingBase = newRestSupportLocateSettingBase;
|
|
13067
|
+
exports.newRestSupportLocateSettingSource = newRestSupportLocateSettingSource;
|
|
13068
|
+
exports.newRestSupportLocateSettings = newRestSupportLocateSettings;
|
|
13069
|
+
exports.newRestSupportLocateSettingsOverrides = newRestSupportLocateSettingsOverrides;
|
|
12645
13070
|
exports.newRestSupportMapToImageParameters = newRestSupportMapToImageParameters;
|
|
12646
13071
|
exports.newRestSupportMeasureAreaFromImageResult = newRestSupportMeasureAreaFromImageResult;
|
|
12647
13072
|
exports.newRestSupportMeasureFromImageParameters = newRestSupportMeasureFromImageParameters;
|
|
@@ -12735,6 +13160,8 @@ exports.newTimeTimeInterval = newTimeTimeInterval;
|
|
|
12735
13160
|
exports.newVersionManagementVersionManagementService = newVersionManagementVersionManagementService;
|
|
12736
13161
|
exports.newVersionManagementVersioningState = newVersionManagementVersioningState;
|
|
12737
13162
|
exports.newViewpoint = newViewpoint;
|
|
13163
|
+
exports.newViews2dAnalysisAreaMeasurementAnalysisView2D = newViews2dAnalysisAreaMeasurementAnalysisView2D;
|
|
13164
|
+
exports.newViews2dAnalysisDistanceMeasurementAnalysisView2D = newViews2dAnalysisDistanceMeasurementAnalysisView2D;
|
|
12738
13165
|
exports.newViews2dAnalysisElevationProfileAnalysisView2D = newViews2dAnalysisElevationProfileAnalysisView2D;
|
|
12739
13166
|
exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
12740
13167
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
@@ -12745,6 +13172,7 @@ exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalys
|
|
|
12745
13172
|
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12746
13173
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12747
13174
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
13175
|
+
exports.newViews3dAnalysisShadowCastAnalysisView3D = newViews3dAnalysisShadowCastAnalysisView3D;
|
|
12748
13176
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12749
13177
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12750
13178
|
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
@@ -12757,9 +13185,14 @@ exports.newViews3dEnvironmentSnowyWeather = newViews3dEnvironmentSnowyWeather;
|
|
|
12757
13185
|
exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
12758
13186
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12759
13187
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
13188
|
+
exports.newViews3dSupportLayerPerformanceInfo = newViews3dSupportLayerPerformanceInfo;
|
|
13189
|
+
exports.newViews3dSupportSceneViewPerformanceInfo = newViews3dSupportSceneViewPerformanceInfo;
|
|
13190
|
+
exports.newViews3dWebglManagedFBO = newViews3dWebglManagedFBO;
|
|
13191
|
+
exports.newViews3dWebglRenderCamera = newViews3dWebglRenderCamera;
|
|
12760
13192
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12761
13193
|
exports.newViewsAnalysisElevationProfileElevationProfileError = newViewsAnalysisElevationProfileElevationProfileError;
|
|
12762
13194
|
exports.newViewsAnalysisElevationProfileElevationProfileResult = newViewsAnalysisElevationProfileElevationProfileResult;
|
|
13195
|
+
exports.newViewsAnalysisLengthDimensionResult = newViewsAnalysisLengthDimensionResult;
|
|
12763
13196
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12764
13197
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12765
13198
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12903,8 +13336,12 @@ exports.newWidgetsEditorCreateFeaturesWorkflow = newWidgetsEditorCreateFeaturesW
|
|
|
12903
13336
|
exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeaturesWorkflowData;
|
|
12904
13337
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12905
13338
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
13339
|
+
exports.newWidgetsEditorMergeFeaturesWorkflow = newWidgetsEditorMergeFeaturesWorkflow;
|
|
13340
|
+
exports.newWidgetsEditorMergeFeaturesWorkflowData = newWidgetsEditorMergeFeaturesWorkflowData;
|
|
12906
13341
|
exports.newWidgetsEditorSplitFeatureWorkflow = newWidgetsEditorSplitFeatureWorkflow;
|
|
13342
|
+
exports.newWidgetsEditorSplitFeatureWorkflowData = newWidgetsEditorSplitFeatureWorkflowData;
|
|
12907
13343
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
13344
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflow = newWidgetsEditorUpdateFeaturesWorkflow;
|
|
12908
13345
|
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12909
13346
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12910
13347
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|