@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.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisDistanceMeasurementAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/DistanceMeasurementAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/DistanceMeasurementAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisDistanceMeasurementAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisDistanceMeasurementAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisElevationProfileAnalysis() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
@@ -170,6 +181,17 @@ async function newAnalysisLineOfSightAnalysisTarget(properties) {
|
|
|
170
181
|
const ModConstructor = await importAnalysisLineOfSightAnalysisTarget();
|
|
171
182
|
return new ModConstructor(properties);
|
|
172
183
|
}
|
|
184
|
+
async function importAnalysisShadowCastAnalysis() {
|
|
185
|
+
if (isAMD) {
|
|
186
|
+
return await window.$arcgis.import("esri/analysis/ShadowCastAnalysis");
|
|
187
|
+
}
|
|
188
|
+
const module = await import("@arcgis/core/analysis/ShadowCastAnalysis.js");
|
|
189
|
+
return isDefaultModule(module) ? module.default : module;
|
|
190
|
+
}
|
|
191
|
+
async function newAnalysisShadowCastAnalysis(properties) {
|
|
192
|
+
const ModConstructor = await importAnalysisShadowCastAnalysis();
|
|
193
|
+
return new ModConstructor(properties);
|
|
194
|
+
}
|
|
173
195
|
async function importAnalysisSliceAnalysis() {
|
|
174
196
|
if (isAMD) {
|
|
175
197
|
return await window.$arcgis.import("esri/analysis/SliceAnalysis");
|
|
@@ -324,6 +346,39 @@ async function newAnalysisElevationProfileElevationProfileViewOptions(properties
|
|
|
324
346
|
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
325
347
|
return new ModConstructor(properties);
|
|
326
348
|
}
|
|
349
|
+
async function importAnalysisShadowCastDiscreteOptions() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DiscreteOptions");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/DiscreteOptions.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisShadowCastDiscreteOptions(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisShadowCastDiscreteOptions();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
360
|
+
async function importAnalysisShadowCastDurationOptions() {
|
|
361
|
+
if (isAMD) {
|
|
362
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/DurationOptions");
|
|
363
|
+
}
|
|
364
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/DurationOptions.js");
|
|
365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
366
|
+
}
|
|
367
|
+
async function newAnalysisShadowCastDurationOptions(properties) {
|
|
368
|
+
const ModConstructor = await importAnalysisShadowCastDurationOptions();
|
|
369
|
+
return new ModConstructor(properties);
|
|
370
|
+
}
|
|
371
|
+
async function importAnalysisShadowCastThresholdOptions() {
|
|
372
|
+
if (isAMD) {
|
|
373
|
+
return await window.$arcgis.import("esri/analysis/ShadowCast/ThresholdOptions");
|
|
374
|
+
}
|
|
375
|
+
const module = await import("@arcgis/core/analysis/ShadowCast/ThresholdOptions.js");
|
|
376
|
+
return isDefaultModule(module) ? module.default : module;
|
|
377
|
+
}
|
|
378
|
+
async function newAnalysisShadowCastThresholdOptions(properties) {
|
|
379
|
+
const ModConstructor = await importAnalysisShadowCastThresholdOptions();
|
|
380
|
+
return new ModConstructor(properties);
|
|
381
|
+
}
|
|
327
382
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
328
383
|
if (isAMD) {
|
|
329
384
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -423,6 +478,28 @@ async function newCoreWorkersConnection() {
|
|
|
423
478
|
const ModConstructor = await importCoreWorkersConnection();
|
|
424
479
|
return new ModConstructor();
|
|
425
480
|
}
|
|
481
|
+
async function importEditingSharedTemplatesSharedTemplate() {
|
|
482
|
+
if (isAMD) {
|
|
483
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
484
|
+
}
|
|
485
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
486
|
+
return isDefaultModule(module) ? module.default : module;
|
|
487
|
+
}
|
|
488
|
+
async function newEditingSharedTemplatesSharedTemplate() {
|
|
489
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplate();
|
|
490
|
+
return new ModConstructor();
|
|
491
|
+
}
|
|
492
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
493
|
+
if (isAMD) {
|
|
494
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
495
|
+
}
|
|
496
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
497
|
+
return isDefaultModule(module) ? module.default : module;
|
|
498
|
+
}
|
|
499
|
+
async function newEditingSharedTemplatesSharedTemplateMetadata() {
|
|
500
|
+
const ModConstructor = await importEditingSharedTemplatesSharedTemplateMetadata();
|
|
501
|
+
return new ModConstructor();
|
|
502
|
+
}
|
|
426
503
|
async function importEffectsFocusAreas() {
|
|
427
504
|
if (isAMD) {
|
|
428
505
|
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
@@ -1816,9 +1893,9 @@ async function importLayersSupportFieldsIndex() {
|
|
|
1816
1893
|
const module = await import("@arcgis/core/layers/support/FieldsIndex.js");
|
|
1817
1894
|
return isDefaultModule(module) ? module.default : module;
|
|
1818
1895
|
}
|
|
1819
|
-
async function newLayersSupportFieldsIndex(
|
|
1896
|
+
async function newLayersSupportFieldsIndex(fields) {
|
|
1820
1897
|
const ModConstructor = await importLayersSupportFieldsIndex();
|
|
1821
|
-
return new ModConstructor(
|
|
1898
|
+
return new ModConstructor(fields);
|
|
1822
1899
|
}
|
|
1823
1900
|
async function importLayersSupportGeometryFieldsInfo() {
|
|
1824
1901
|
if (isAMD) {
|
|
@@ -2161,6 +2238,17 @@ async function newLayersSupportSiteLayerInfo(properties) {
|
|
|
2161
2238
|
const ModConstructor = await importLayersSupportSiteLayerInfo();
|
|
2162
2239
|
return new ModConstructor(properties);
|
|
2163
2240
|
}
|
|
2241
|
+
async function importLayersSupportStreamConnection() {
|
|
2242
|
+
if (isAMD) {
|
|
2243
|
+
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
2244
|
+
}
|
|
2245
|
+
const module = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
2246
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2247
|
+
}
|
|
2248
|
+
async function newLayersSupportStreamConnection() {
|
|
2249
|
+
const ModConstructor = await importLayersSupportStreamConnection();
|
|
2250
|
+
return new ModConstructor();
|
|
2251
|
+
}
|
|
2164
2252
|
async function importLayersSupportSublayer() {
|
|
2165
2253
|
if (isAMD) {
|
|
2166
2254
|
return await window.$arcgis.import("esri/layers/support/Sublayer");
|
|
@@ -2337,6 +2425,17 @@ async function newLayersVoxelVoxelTransferFunctionStyle(properties) {
|
|
|
2337
2425
|
const ModConstructor = await importLayersVoxelVoxelTransferFunctionStyle();
|
|
2338
2426
|
return new ModConstructor(properties);
|
|
2339
2427
|
}
|
|
2428
|
+
async function importLayersVoxelVoxelVariable() {
|
|
2429
|
+
if (isAMD) {
|
|
2430
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
2431
|
+
}
|
|
2432
|
+
const module = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
2433
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2434
|
+
}
|
|
2435
|
+
async function newLayersVoxelVoxelVariable(properties) {
|
|
2436
|
+
const ModConstructor = await importLayersVoxelVoxelVariable();
|
|
2437
|
+
return new ModConstructor(properties);
|
|
2438
|
+
}
|
|
2340
2439
|
async function importLayersVoxelVoxelVariableStyle() {
|
|
2341
2440
|
if (isAMD) {
|
|
2342
2441
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVariableStyle");
|
|
@@ -2348,6 +2447,17 @@ async function newLayersVoxelVoxelVariableStyle(properties) {
|
|
|
2348
2447
|
const ModConstructor = await importLayersVoxelVoxelVariableStyle();
|
|
2349
2448
|
return new ModConstructor(properties);
|
|
2350
2449
|
}
|
|
2450
|
+
async function importLayersVoxelVoxelVolume() {
|
|
2451
|
+
if (isAMD) {
|
|
2452
|
+
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
2453
|
+
}
|
|
2454
|
+
const module = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
2455
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2456
|
+
}
|
|
2457
|
+
async function newLayersVoxelVoxelVolume() {
|
|
2458
|
+
const ModConstructor = await importLayersVoxelVoxelVolume();
|
|
2459
|
+
return new ModConstructor();
|
|
2460
|
+
}
|
|
2351
2461
|
async function importLayersVoxelVoxelVolumeStyle() {
|
|
2352
2462
|
if (isAMD) {
|
|
2353
2463
|
return await window.$arcgis.import("esri/layers/voxel/VoxelVolumeStyle");
|
|
@@ -2579,6 +2689,17 @@ async function newMap(properties) {
|
|
|
2579
2689
|
const ModConstructor = await importMap();
|
|
2580
2690
|
return new ModConstructor(properties);
|
|
2581
2691
|
}
|
|
2692
|
+
async function importNetworksCircuitManager() {
|
|
2693
|
+
if (isAMD) {
|
|
2694
|
+
return await window.$arcgis.import("esri/networks/CircuitManager");
|
|
2695
|
+
}
|
|
2696
|
+
const module = await import("@arcgis/core/networks/CircuitManager.js");
|
|
2697
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2698
|
+
}
|
|
2699
|
+
async function newNetworksCircuitManager(properties) {
|
|
2700
|
+
const ModConstructor = await importNetworksCircuitManager();
|
|
2701
|
+
return new ModConstructor(properties);
|
|
2702
|
+
}
|
|
2582
2703
|
async function importNetworksNetwork() {
|
|
2583
2704
|
if (isAMD) {
|
|
2584
2705
|
return await window.$arcgis.import("esri/networks/Network");
|
|
@@ -2590,6 +2711,17 @@ async function newNetworksNetwork(properties) {
|
|
|
2590
2711
|
const ModConstructor = await importNetworksNetwork();
|
|
2591
2712
|
return new ModConstructor(properties);
|
|
2592
2713
|
}
|
|
2714
|
+
async function importNetworksUnitIdentifierManager() {
|
|
2715
|
+
if (isAMD) {
|
|
2716
|
+
return await window.$arcgis.import("esri/networks/UnitIdentifierManager");
|
|
2717
|
+
}
|
|
2718
|
+
const module = await import("@arcgis/core/networks/UnitIdentifierManager.js");
|
|
2719
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2720
|
+
}
|
|
2721
|
+
async function newNetworksUnitIdentifierManager(properties) {
|
|
2722
|
+
const ModConstructor = await importNetworksUnitIdentifierManager();
|
|
2723
|
+
return new ModConstructor(properties);
|
|
2724
|
+
}
|
|
2593
2725
|
async function importNetworksUtilityNetwork() {
|
|
2594
2726
|
if (isAMD) {
|
|
2595
2727
|
return await window.$arcgis.import("esri/networks/UtilityNetwork");
|
|
@@ -2601,6 +2733,61 @@ async function newNetworksUtilityNetwork(properties) {
|
|
|
2601
2733
|
const ModConstructor = await importNetworksUtilityNetwork();
|
|
2602
2734
|
return new ModConstructor(properties);
|
|
2603
2735
|
}
|
|
2736
|
+
async function importNetworksSupportCircuit() {
|
|
2737
|
+
if (isAMD) {
|
|
2738
|
+
return await window.$arcgis.import("esri/networks/support/Circuit");
|
|
2739
|
+
}
|
|
2740
|
+
const module = await import("@arcgis/core/networks/support/Circuit.js");
|
|
2741
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2742
|
+
}
|
|
2743
|
+
async function newNetworksSupportCircuit(properties) {
|
|
2744
|
+
const ModConstructor = await importNetworksSupportCircuit();
|
|
2745
|
+
return new ModConstructor(properties);
|
|
2746
|
+
}
|
|
2747
|
+
async function importNetworksSupportCircuitPath() {
|
|
2748
|
+
if (isAMD) {
|
|
2749
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPath");
|
|
2750
|
+
}
|
|
2751
|
+
const module = await import("@arcgis/core/networks/support/CircuitPath.js");
|
|
2752
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2753
|
+
}
|
|
2754
|
+
async function newNetworksSupportCircuitPath(properties) {
|
|
2755
|
+
const ModConstructor = await importNetworksSupportCircuitPath();
|
|
2756
|
+
return new ModConstructor(properties);
|
|
2757
|
+
}
|
|
2758
|
+
async function importNetworksSupportCircuitPathConnectivityElement() {
|
|
2759
|
+
if (isAMD) {
|
|
2760
|
+
return await window.$arcgis.import("esri/networks/support/CircuitPathConnectivityElement");
|
|
2761
|
+
}
|
|
2762
|
+
const module = await import("@arcgis/core/networks/support/CircuitPathConnectivityElement.js");
|
|
2763
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2764
|
+
}
|
|
2765
|
+
async function newNetworksSupportCircuitPathConnectivityElement(properties) {
|
|
2766
|
+
const ModConstructor = await importNetworksSupportCircuitPathConnectivityElement();
|
|
2767
|
+
return new ModConstructor(properties);
|
|
2768
|
+
}
|
|
2769
|
+
async function importNetworksSupportCircuitSection() {
|
|
2770
|
+
if (isAMD) {
|
|
2771
|
+
return await window.$arcgis.import("esri/networks/support/CircuitSection");
|
|
2772
|
+
}
|
|
2773
|
+
const module = await import("@arcgis/core/networks/support/CircuitSection.js");
|
|
2774
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2775
|
+
}
|
|
2776
|
+
async function newNetworksSupportCircuitSection(properties) {
|
|
2777
|
+
const ModConstructor = await importNetworksSupportCircuitSection();
|
|
2778
|
+
return new ModConstructor(properties);
|
|
2779
|
+
}
|
|
2780
|
+
async function importNetworksSupportCircuitLocation() {
|
|
2781
|
+
if (isAMD) {
|
|
2782
|
+
return await window.$arcgis.import("esri/networks/support/CircuitLocation");
|
|
2783
|
+
}
|
|
2784
|
+
const module = await import("@arcgis/core/networks/support/CircuitLocation.js");
|
|
2785
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2786
|
+
}
|
|
2787
|
+
async function newNetworksSupportCircuitLocation(properties) {
|
|
2788
|
+
const ModConstructor = await importNetworksSupportCircuitLocation();
|
|
2789
|
+
return new ModConstructor(properties);
|
|
2790
|
+
}
|
|
2604
2791
|
async function importNetworksSupportNamedTraceConfiguration() {
|
|
2605
2792
|
if (isAMD) {
|
|
2606
2793
|
return await window.$arcgis.import("esri/networks/support/NamedTraceConfiguration");
|
|
@@ -2623,6 +2810,17 @@ async function newNetworksSupportNetworkSystemLayers(properties) {
|
|
|
2623
2810
|
const ModConstructor = await importNetworksSupportNetworkSystemLayers();
|
|
2624
2811
|
return new ModConstructor(properties);
|
|
2625
2812
|
}
|
|
2813
|
+
async function importNetworksSupportSubcircuit() {
|
|
2814
|
+
if (isAMD) {
|
|
2815
|
+
return await window.$arcgis.import("esri/networks/support/Subcircuit");
|
|
2816
|
+
}
|
|
2817
|
+
const module = await import("@arcgis/core/networks/support/Subcircuit.js");
|
|
2818
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2819
|
+
}
|
|
2820
|
+
async function newNetworksSupportSubcircuit(properties) {
|
|
2821
|
+
const ModConstructor = await importNetworksSupportSubcircuit();
|
|
2822
|
+
return new ModConstructor(properties);
|
|
2823
|
+
}
|
|
2626
2824
|
async function importNetworksSupportTerminal() {
|
|
2627
2825
|
if (isAMD) {
|
|
2628
2826
|
return await window.$arcgis.import("esri/networks/support/Terminal");
|
|
@@ -3514,6 +3712,17 @@ async function newRestFeatureServiceFeatureService(properties) {
|
|
|
3514
3712
|
const ModConstructor = await importRestFeatureServiceFeatureService();
|
|
3515
3713
|
return new ModConstructor(properties);
|
|
3516
3714
|
}
|
|
3715
|
+
async function importRestGeoprocessorGPOptions() {
|
|
3716
|
+
if (isAMD) {
|
|
3717
|
+
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
3718
|
+
}
|
|
3719
|
+
const module = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
3720
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3721
|
+
}
|
|
3722
|
+
async function newRestGeoprocessorGPOptions() {
|
|
3723
|
+
const ModConstructor = await importRestGeoprocessorGPOptions();
|
|
3724
|
+
return new ModConstructor();
|
|
3725
|
+
}
|
|
3517
3726
|
async function importRestKnowledgeGraphDataModel() {
|
|
3518
3727
|
if (isAMD) {
|
|
3519
3728
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/DataModel");
|
|
@@ -3624,6 +3833,17 @@ async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
|
3624
3833
|
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3625
3834
|
return new ModConstructor(properties);
|
|
3626
3835
|
}
|
|
3836
|
+
async function importRestKnowledgeGraphGraphDataModelSingletonOperationResult() {
|
|
3837
|
+
if (isAMD) {
|
|
3838
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelSingletonOperationResult");
|
|
3839
|
+
}
|
|
3840
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelSingletonOperationResult.js");
|
|
3841
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3842
|
+
}
|
|
3843
|
+
async function newRestKnowledgeGraphGraphDataModelSingletonOperationResult(properties) {
|
|
3844
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelSingletonOperationResult();
|
|
3845
|
+
return new ModConstructor(properties);
|
|
3846
|
+
}
|
|
3627
3847
|
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3628
3848
|
if (isAMD) {
|
|
3629
3849
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
@@ -3965,6 +4185,39 @@ async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(pr
|
|
|
3965
4185
|
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3966
4186
|
return new ModConstructor(properties);
|
|
3967
4187
|
}
|
|
4188
|
+
async function importRestNetworksCircuitsSupportCircuitTraceResult() {
|
|
4189
|
+
if (isAMD) {
|
|
4190
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitTraceResult");
|
|
4191
|
+
}
|
|
4192
|
+
const module = await import("@arcgis/core/rest/networks/circuits/support/CircuitTraceResult.js");
|
|
4193
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4194
|
+
}
|
|
4195
|
+
async function newRestNetworksCircuitsSupportCircuitTraceResult(properties) {
|
|
4196
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitTraceResult();
|
|
4197
|
+
return new ModConstructor(properties);
|
|
4198
|
+
}
|
|
4199
|
+
async function importRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4200
|
+
if (isAMD) {
|
|
4201
|
+
return await window.$arcgis.import("esri/rest/networks/circuits/support/CircuitVerifyResult");
|
|
4202
|
+
}
|
|
4203
|
+
const module = await import("@arcgis/core/rest/networks/circuits/support/CircuitVerifyResult.js");
|
|
4204
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4205
|
+
}
|
|
4206
|
+
async function newRestNetworksCircuitsSupportCircuitVerifyResult() {
|
|
4207
|
+
const ModConstructor = await importRestNetworksCircuitsSupportCircuitVerifyResult();
|
|
4208
|
+
return new ModConstructor();
|
|
4209
|
+
}
|
|
4210
|
+
async function importRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4211
|
+
if (isAMD) {
|
|
4212
|
+
return await window.$arcgis.import("esri/rest/networks/unitIdentifiers/support/UnitQueryResult");
|
|
4213
|
+
}
|
|
4214
|
+
const module = await import("@arcgis/core/rest/networks/unitIdentifiers/support/UnitQueryResult.js");
|
|
4215
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4216
|
+
}
|
|
4217
|
+
async function newRestNetworksUnitIdentifiersSupportUnitQueryResult() {
|
|
4218
|
+
const ModConstructor = await importRestNetworksUnitIdentifiersSupportUnitQueryResult();
|
|
4219
|
+
return new ModConstructor();
|
|
4220
|
+
}
|
|
3968
4221
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3969
4222
|
if (isAMD) {
|
|
3970
4223
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4053,6 +4306,17 @@ async function newRestNetworksSupportSynthesizeAssociationGeometriesParameters(p
|
|
|
4053
4306
|
const ModConstructor = await importRestNetworksSupportSynthesizeAssociationGeometriesParameters();
|
|
4054
4307
|
return new ModConstructor(properties);
|
|
4055
4308
|
}
|
|
4309
|
+
async function importRestNetworksSupportTelecomNetworkElement() {
|
|
4310
|
+
if (isAMD) {
|
|
4311
|
+
return await window.$arcgis.import("esri/rest/networks/support/TelecomNetworkElement");
|
|
4312
|
+
}
|
|
4313
|
+
const module = await import("@arcgis/core/rest/networks/support/TelecomNetworkElement.js");
|
|
4314
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4315
|
+
}
|
|
4316
|
+
async function newRestNetworksSupportTelecomNetworkElement(properties) {
|
|
4317
|
+
const ModConstructor = await importRestNetworksSupportTelecomNetworkElement();
|
|
4318
|
+
return new ModConstructor(properties);
|
|
4319
|
+
}
|
|
4056
4320
|
async function importRestNetworksSupportTraceLocation() {
|
|
4057
4321
|
if (isAMD) {
|
|
4058
4322
|
return await window.$arcgis.import("esri/rest/networks/support/TraceLocation");
|
|
@@ -4097,6 +4361,17 @@ async function newRestNetworksSupportValidateNetworkTopologyParameters(propertie
|
|
|
4097
4361
|
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyParameters();
|
|
4098
4362
|
return new ModConstructor(properties);
|
|
4099
4363
|
}
|
|
4364
|
+
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4365
|
+
if (isAMD) {
|
|
4366
|
+
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
4367
|
+
}
|
|
4368
|
+
const module = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
4369
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4370
|
+
}
|
|
4371
|
+
async function newRestNetworksSupportValidateNetworkTopologyResult() {
|
|
4372
|
+
const ModConstructor = await importRestNetworksSupportValidateNetworkTopologyResult();
|
|
4373
|
+
return new ModConstructor();
|
|
4374
|
+
}
|
|
4100
4375
|
async function importRestQuerySupportAttachmentInfo() {
|
|
4101
4376
|
if (isAMD) {
|
|
4102
4377
|
return await window.$arcgis.import("esri/rest/query/support/AttachmentInfo");
|
|
@@ -4944,6 +5219,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
4944
5219
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
4945
5220
|
return new ModConstructor(properties);
|
|
4946
5221
|
}
|
|
5222
|
+
async function importRestSupportLocateSetting() {
|
|
5223
|
+
if (isAMD) {
|
|
5224
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5225
|
+
}
|
|
5226
|
+
const module = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5227
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5228
|
+
}
|
|
5229
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5230
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5231
|
+
return new ModConstructor(properties);
|
|
5232
|
+
}
|
|
5233
|
+
async function importRestSupportLocateSettingBase() {
|
|
5234
|
+
if (isAMD) {
|
|
5235
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5236
|
+
}
|
|
5237
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5238
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5239
|
+
}
|
|
5240
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5241
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5242
|
+
return new ModConstructor(properties);
|
|
5243
|
+
}
|
|
5244
|
+
async function importRestSupportLocateSettingSource() {
|
|
5245
|
+
if (isAMD) {
|
|
5246
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5247
|
+
}
|
|
5248
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5249
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5250
|
+
}
|
|
5251
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5252
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5253
|
+
return new ModConstructor(properties);
|
|
5254
|
+
}
|
|
5255
|
+
async function importRestSupportLocateSettings() {
|
|
5256
|
+
if (isAMD) {
|
|
5257
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5258
|
+
}
|
|
5259
|
+
const module = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5261
|
+
}
|
|
5262
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5263
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5264
|
+
return new ModConstructor(properties);
|
|
5265
|
+
}
|
|
5266
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5267
|
+
if (isAMD) {
|
|
5268
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5269
|
+
}
|
|
5270
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5271
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5272
|
+
}
|
|
5273
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5274
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5275
|
+
return new ModConstructor(properties);
|
|
5276
|
+
}
|
|
4947
5277
|
async function importRestSupportMapToImageParameters() {
|
|
4948
5278
|
if (isAMD) {
|
|
4949
5279
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -6000,6 +6330,28 @@ async function newViews2dViewState(properties) {
|
|
|
6000
6330
|
const ModConstructor = await importViews2dViewState();
|
|
6001
6331
|
return new ModConstructor(properties);
|
|
6002
6332
|
}
|
|
6333
|
+
async function importViews2dAnalysisAreaMeasurementAnalysisView2D() {
|
|
6334
|
+
if (isAMD) {
|
|
6335
|
+
return await window.$arcgis.import("esri/views/2d/analysis/AreaMeasurementAnalysisView2D");
|
|
6336
|
+
}
|
|
6337
|
+
const module = await import("@arcgis/core/views/2d/analysis/AreaMeasurementAnalysisView2D.js");
|
|
6338
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6339
|
+
}
|
|
6340
|
+
async function newViews2dAnalysisAreaMeasurementAnalysisView2D(properties) {
|
|
6341
|
+
const ModConstructor = await importViews2dAnalysisAreaMeasurementAnalysisView2D();
|
|
6342
|
+
return new ModConstructor(properties);
|
|
6343
|
+
}
|
|
6344
|
+
async function importViews2dAnalysisDistanceMeasurementAnalysisView2D() {
|
|
6345
|
+
if (isAMD) {
|
|
6346
|
+
return await window.$arcgis.import("esri/views/2d/analysis/DistanceMeasurementAnalysisView2D");
|
|
6347
|
+
}
|
|
6348
|
+
const module = await import("@arcgis/core/views/2d/analysis/DistanceMeasurementAnalysisView2D.js");
|
|
6349
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6350
|
+
}
|
|
6351
|
+
async function newViews2dAnalysisDistanceMeasurementAnalysisView2D(properties) {
|
|
6352
|
+
const ModConstructor = await importViews2dAnalysisDistanceMeasurementAnalysisView2D();
|
|
6353
|
+
return new ModConstructor(properties);
|
|
6354
|
+
}
|
|
6003
6355
|
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6004
6356
|
if (isAMD) {
|
|
6005
6357
|
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
@@ -6099,6 +6451,17 @@ async function newViews3dAnalysisLineOfSightAnalysisView3D(properties) {
|
|
|
6099
6451
|
const ModConstructor = await importViews3dAnalysisLineOfSightAnalysisView3D();
|
|
6100
6452
|
return new ModConstructor(properties);
|
|
6101
6453
|
}
|
|
6454
|
+
async function importViews3dAnalysisShadowCastAnalysisView3D() {
|
|
6455
|
+
if (isAMD) {
|
|
6456
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ShadowCastAnalysisView3D");
|
|
6457
|
+
}
|
|
6458
|
+
const module = await import("@arcgis/core/views/3d/analysis/ShadowCastAnalysisView3D.js");
|
|
6459
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6460
|
+
}
|
|
6461
|
+
async function newViews3dAnalysisShadowCastAnalysisView3D(properties) {
|
|
6462
|
+
const ModConstructor = await importViews3dAnalysisShadowCastAnalysisView3D();
|
|
6463
|
+
return new ModConstructor(properties);
|
|
6464
|
+
}
|
|
6102
6465
|
async function importViews3dAnalysisSliceAnalysisView3D() {
|
|
6103
6466
|
if (isAMD) {
|
|
6104
6467
|
return await window.$arcgis.import("esri/views/3d/analysis/SliceAnalysisView3D");
|
|
@@ -6231,6 +6594,28 @@ async function newViews3dEnvironmentVirtualLighting(properties) {
|
|
|
6231
6594
|
const ModConstructor = await importViews3dEnvironmentVirtualLighting();
|
|
6232
6595
|
return new ModConstructor(properties);
|
|
6233
6596
|
}
|
|
6597
|
+
async function importViews3dWebglManagedFBO() {
|
|
6598
|
+
if (isAMD) {
|
|
6599
|
+
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
6600
|
+
}
|
|
6601
|
+
const module = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
6602
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6603
|
+
}
|
|
6604
|
+
async function newViews3dWebglManagedFBO() {
|
|
6605
|
+
const ModConstructor = await importViews3dWebglManagedFBO();
|
|
6606
|
+
return new ModConstructor();
|
|
6607
|
+
}
|
|
6608
|
+
async function importViews3dWebglRenderCamera() {
|
|
6609
|
+
if (isAMD) {
|
|
6610
|
+
return await window.$arcgis.import("esri/views/3d/webgl/RenderCamera");
|
|
6611
|
+
}
|
|
6612
|
+
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
6613
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6614
|
+
}
|
|
6615
|
+
async function newViews3dWebglRenderCamera() {
|
|
6616
|
+
const ModConstructor = await importViews3dWebglRenderCamera();
|
|
6617
|
+
return new ModConstructor();
|
|
6618
|
+
}
|
|
6234
6619
|
async function importViews3dWebglRenderNode() {
|
|
6235
6620
|
if (isAMD) {
|
|
6236
6621
|
return await window.$arcgis.import("esri/views/3d/webgl/RenderNode");
|
|
@@ -6242,6 +6627,28 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6242
6627
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6243
6628
|
return new ModConstructor(properties);
|
|
6244
6629
|
}
|
|
6630
|
+
async function importViews3dSupportLayerPerformanceInfo() {
|
|
6631
|
+
if (isAMD) {
|
|
6632
|
+
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
6633
|
+
}
|
|
6634
|
+
const module = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
6635
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6636
|
+
}
|
|
6637
|
+
async function newViews3dSupportLayerPerformanceInfo() {
|
|
6638
|
+
const ModConstructor = await importViews3dSupportLayerPerformanceInfo();
|
|
6639
|
+
return new ModConstructor();
|
|
6640
|
+
}
|
|
6641
|
+
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
6642
|
+
if (isAMD) {
|
|
6643
|
+
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
6644
|
+
}
|
|
6645
|
+
const module = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
6646
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6647
|
+
}
|
|
6648
|
+
async function newViews3dSupportSceneViewPerformanceInfo() {
|
|
6649
|
+
const ModConstructor = await importViews3dSupportSceneViewPerformanceInfo();
|
|
6650
|
+
return new ModConstructor();
|
|
6651
|
+
}
|
|
6245
6652
|
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6246
6653
|
if (isAMD) {
|
|
6247
6654
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
@@ -6264,6 +6671,17 @@ async function newViewsAnalysisElevationProfileElevationProfileResult(properties
|
|
|
6264
6671
|
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
6265
6672
|
return new ModConstructor(properties);
|
|
6266
6673
|
}
|
|
6674
|
+
async function importViewsAnalysisLengthDimensionResult() {
|
|
6675
|
+
if (isAMD) {
|
|
6676
|
+
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
6677
|
+
}
|
|
6678
|
+
const module = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
6679
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6680
|
+
}
|
|
6681
|
+
async function newViewsAnalysisLengthDimensionResult() {
|
|
6682
|
+
const ModConstructor = await importViewsAnalysisLengthDimensionResult();
|
|
6683
|
+
return new ModConstructor();
|
|
6684
|
+
}
|
|
6267
6685
|
async function importViewsDrawDraw() {
|
|
6268
6686
|
if (isAMD) {
|
|
6269
6687
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -7815,6 +8233,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7815
8233
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7816
8234
|
return new ModConstructor(properties);
|
|
7817
8235
|
}
|
|
8236
|
+
async function importWidgetsEditorMergeFeaturesWorkflow() {
|
|
8237
|
+
if (isAMD) {
|
|
8238
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflow");
|
|
8239
|
+
}
|
|
8240
|
+
const module = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflow.js");
|
|
8241
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8242
|
+
}
|
|
8243
|
+
async function newWidgetsEditorMergeFeaturesWorkflow(properties) {
|
|
8244
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflow();
|
|
8245
|
+
return new ModConstructor(properties);
|
|
8246
|
+
}
|
|
8247
|
+
async function importWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8248
|
+
if (isAMD) {
|
|
8249
|
+
return await window.$arcgis.import("esri/widgets/Editor/MergeFeaturesWorkflowData");
|
|
8250
|
+
}
|
|
8251
|
+
const module = await import("@arcgis/core/widgets/Editor/MergeFeaturesWorkflowData.js");
|
|
8252
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8253
|
+
}
|
|
8254
|
+
async function newWidgetsEditorMergeFeaturesWorkflowData() {
|
|
8255
|
+
const ModConstructor = await importWidgetsEditorMergeFeaturesWorkflowData();
|
|
8256
|
+
return new ModConstructor();
|
|
8257
|
+
}
|
|
7818
8258
|
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7819
8259
|
if (isAMD) {
|
|
7820
8260
|
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
@@ -7826,6 +8266,28 @@ async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
|
7826
8266
|
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7827
8267
|
return new ModConstructor(properties);
|
|
7828
8268
|
}
|
|
8269
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
8270
|
+
if (isAMD) {
|
|
8271
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
8272
|
+
}
|
|
8273
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
8274
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8275
|
+
}
|
|
8276
|
+
async function newWidgetsEditorSplitFeatureWorkflowData() {
|
|
8277
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflowData();
|
|
8278
|
+
return new ModConstructor();
|
|
8279
|
+
}
|
|
8280
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
8281
|
+
if (isAMD) {
|
|
8282
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
8283
|
+
}
|
|
8284
|
+
const module = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
8285
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8286
|
+
}
|
|
8287
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
8288
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
8289
|
+
return new ModConstructor(properties);
|
|
8290
|
+
}
|
|
7829
8291
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7830
8292
|
if (isAMD) {
|
|
7831
8293
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -9619,20 +10081,6 @@ async function importCoreWorkers() {
|
|
|
9619
10081
|
const module = await import("@arcgis/core/core/workers.js");
|
|
9620
10082
|
return isDefaultModule(module) ? module.default : module;
|
|
9621
10083
|
}
|
|
9622
|
-
async function importEditingSharedTemplatesSharedTemplate() {
|
|
9623
|
-
if (isAMD) {
|
|
9624
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
9625
|
-
}
|
|
9626
|
-
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
9627
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9628
|
-
}
|
|
9629
|
-
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
9630
|
-
if (isAMD) {
|
|
9631
|
-
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
9632
|
-
}
|
|
9633
|
-
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
9634
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9635
|
-
}
|
|
9636
10084
|
async function importFormElementsInputs() {
|
|
9637
10085
|
if (isAMD) {
|
|
9638
10086
|
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
@@ -9668,13 +10116,6 @@ async function importGeometryGeometryEngine() {
|
|
|
9668
10116
|
const module = await import("@arcgis/core/geometry/geometryEngine.js");
|
|
9669
10117
|
return isDefaultModule(module) ? module.default : module;
|
|
9670
10118
|
}
|
|
9671
|
-
async function importGeometryGeometryEngineAsync() {
|
|
9672
|
-
if (isAMD) {
|
|
9673
|
-
return await window.$arcgis.import("esri/geometry/geometryEngineAsync");
|
|
9674
|
-
}
|
|
9675
|
-
const module = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9676
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9677
|
-
}
|
|
9678
10119
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9679
10120
|
if (isAMD) {
|
|
9680
10121
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -10172,27 +10613,6 @@ async function importLayersSupportRasterFunctionUtils() {
|
|
|
10172
10613
|
const module = await import("@arcgis/core/layers/support/rasterFunctionUtils.js");
|
|
10173
10614
|
return isDefaultModule(module) ? module.default : module;
|
|
10174
10615
|
}
|
|
10175
|
-
async function importLayersSupportStreamConnection() {
|
|
10176
|
-
if (isAMD) {
|
|
10177
|
-
return await window.$arcgis.import("esri/layers/support/StreamConnection");
|
|
10178
|
-
}
|
|
10179
|
-
const module = await import("@arcgis/core/layers/support/StreamConnection.js");
|
|
10180
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10181
|
-
}
|
|
10182
|
-
async function importLayersVoxelVoxelVariable() {
|
|
10183
|
-
if (isAMD) {
|
|
10184
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVariable");
|
|
10185
|
-
}
|
|
10186
|
-
const module = await import("@arcgis/core/layers/voxel/VoxelVariable.js");
|
|
10187
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10188
|
-
}
|
|
10189
|
-
async function importLayersVoxelVoxelVolume() {
|
|
10190
|
-
if (isAMD) {
|
|
10191
|
-
return await window.$arcgis.import("esri/layers/voxel/VoxelVolume");
|
|
10192
|
-
}
|
|
10193
|
-
const module = await import("@arcgis/core/layers/voxel/VoxelVolume.js");
|
|
10194
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10195
|
-
}
|
|
10196
10616
|
async function importPointCloudRenderers() {
|
|
10197
10617
|
if (isAMD) {
|
|
10198
10618
|
return await window.$arcgis.import("esri/pointCloudRenderers");
|
|
@@ -10277,13 +10697,6 @@ async function importRestGeoprocessor() {
|
|
|
10277
10697
|
const module = await import("@arcgis/core/rest/geoprocessor.js");
|
|
10278
10698
|
return isDefaultModule(module) ? module.default : module;
|
|
10279
10699
|
}
|
|
10280
|
-
async function importRestGeoprocessorGPOptions() {
|
|
10281
|
-
if (isAMD) {
|
|
10282
|
-
return await window.$arcgis.import("esri/rest/geoprocessor/GPOptions");
|
|
10283
|
-
}
|
|
10284
|
-
const module = await import("@arcgis/core/rest/geoprocessor/GPOptions.js");
|
|
10285
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10286
|
-
}
|
|
10287
10700
|
async function importRestIdentify() {
|
|
10288
10701
|
if (isAMD) {
|
|
10289
10702
|
return await window.$arcgis.import("esri/rest/identify");
|
|
@@ -10326,13 +10739,6 @@ async function importRestNetworksQueryAssociations() {
|
|
|
10326
10739
|
const module = await import("@arcgis/core/rest/networks/queryAssociations.js");
|
|
10327
10740
|
return isDefaultModule(module) ? module.default : module;
|
|
10328
10741
|
}
|
|
10329
|
-
async function importRestNetworksSupportValidateNetworkTopologyResult() {
|
|
10330
|
-
if (isAMD) {
|
|
10331
|
-
return await window.$arcgis.import("esri/rest/networks/support/ValidateNetworkTopologyResult");
|
|
10332
|
-
}
|
|
10333
|
-
const module = await import("@arcgis/core/rest/networks/support/ValidateNetworkTopologyResult.js");
|
|
10334
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10335
|
-
}
|
|
10336
10742
|
async function importRestNetworksSynthesizeAssociationGeometries() {
|
|
10337
10743
|
if (isAMD) {
|
|
10338
10744
|
return await window.$arcgis.import("esri/rest/networks/synthesizeAssociationGeometries");
|
|
@@ -10823,39 +11229,11 @@ async function importViews3dWebgl() {
|
|
|
10823
11229
|
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10824
11230
|
return isDefaultModule(module) ? module.default : module;
|
|
10825
11231
|
}
|
|
10826
|
-
async function
|
|
10827
|
-
if (isAMD) {
|
|
10828
|
-
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
10829
|
-
}
|
|
10830
|
-
const module = await import("@arcgis/core/views/3d/webgl/ManagedFBO.js");
|
|
10831
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10832
|
-
}
|
|
10833
|
-
async function importViews3dWebglRenderCamera() {
|
|
11232
|
+
async function importViewsSupportAttributionItem() {
|
|
10834
11233
|
if (isAMD) {
|
|
10835
|
-
return await window.$arcgis.import("esri/views/
|
|
11234
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
10836
11235
|
}
|
|
10837
|
-
const module = await import("@arcgis/core/views/
|
|
10838
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10839
|
-
}
|
|
10840
|
-
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10841
|
-
if (isAMD) {
|
|
10842
|
-
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
10843
|
-
}
|
|
10844
|
-
const module = await import("@arcgis/core/views/3d/support/LayerPerformanceInfo.js");
|
|
10845
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10846
|
-
}
|
|
10847
|
-
async function importViews3dSupportSceneViewPerformanceInfo() {
|
|
10848
|
-
if (isAMD) {
|
|
10849
|
-
return await window.$arcgis.import("esri/views/3d/support/SceneViewPerformanceInfo");
|
|
10850
|
-
}
|
|
10851
|
-
const module = await import("@arcgis/core/views/3d/support/SceneViewPerformanceInfo.js");
|
|
10852
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10853
|
-
}
|
|
10854
|
-
async function importViewsAnalysisLengthDimensionResult() {
|
|
10855
|
-
if (isAMD) {
|
|
10856
|
-
return await window.$arcgis.import("esri/views/analysis/LengthDimensionResult");
|
|
10857
|
-
}
|
|
10858
|
-
const module = await import("@arcgis/core/views/analysis/LengthDimensionResult.js");
|
|
11236
|
+
const module = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
10859
11237
|
return isDefaultModule(module) ? module.default : module;
|
|
10860
11238
|
}
|
|
10861
11239
|
async function importViewsSupportColorUtils() {
|
|
@@ -10865,13 +11243,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10865
11243
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10866
11244
|
return isDefaultModule(module) ? module.default : module;
|
|
10867
11245
|
}
|
|
10868
|
-
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10869
|
-
if (isAMD) {
|
|
10870
|
-
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10871
|
-
}
|
|
10872
|
-
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10873
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10874
|
-
}
|
|
10875
11246
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10876
11247
|
if (isAMD) {
|
|
10877
11248
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11088,6 +11459,7 @@ export {
|
|
|
11088
11459
|
importAnalysisDimensionAnalysis,
|
|
11089
11460
|
importAnalysisDimensionSimpleStyle,
|
|
11090
11461
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11462
|
+
importAnalysisDistanceMeasurementAnalysis,
|
|
11091
11463
|
importAnalysisElevationProfileAnalysis,
|
|
11092
11464
|
importAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
11093
11465
|
importAnalysisElevationProfileElevationProfileLine,
|
|
@@ -11102,6 +11474,10 @@ export {
|
|
|
11102
11474
|
importAnalysisLineOfSightAnalysis,
|
|
11103
11475
|
importAnalysisLineOfSightAnalysisObserver,
|
|
11104
11476
|
importAnalysisLineOfSightAnalysisTarget,
|
|
11477
|
+
importAnalysisShadowCastAnalysis,
|
|
11478
|
+
importAnalysisShadowCastDiscreteOptions,
|
|
11479
|
+
importAnalysisShadowCastDurationOptions,
|
|
11480
|
+
importAnalysisShadowCastThresholdOptions,
|
|
11105
11481
|
importAnalysisSliceAnalysis,
|
|
11106
11482
|
importAnalysisSlicePlane,
|
|
11107
11483
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
@@ -11198,7 +11574,6 @@ export {
|
|
|
11198
11574
|
importGeometryExtent,
|
|
11199
11575
|
importGeometryGeometry,
|
|
11200
11576
|
importGeometryGeometryEngine,
|
|
11201
|
-
importGeometryGeometryEngineAsync,
|
|
11202
11577
|
importGeometryHeightModelInfo,
|
|
11203
11578
|
importGeometryMesh,
|
|
11204
11579
|
importGeometryMultipoint,
|
|
@@ -11438,15 +11813,23 @@ export {
|
|
|
11438
11813
|
importLinkChartNonspatialDataDisplay,
|
|
11439
11814
|
importLinkChartOrganicLayoutSettings,
|
|
11440
11815
|
importMap,
|
|
11816
|
+
importNetworksCircuitManager,
|
|
11441
11817
|
importNetworksNetwork,
|
|
11818
|
+
importNetworksSupportCircuit,
|
|
11819
|
+
importNetworksSupportCircuitLocation,
|
|
11820
|
+
importNetworksSupportCircuitPath,
|
|
11821
|
+
importNetworksSupportCircuitPathConnectivityElement,
|
|
11822
|
+
importNetworksSupportCircuitSection,
|
|
11442
11823
|
importNetworksSupportNamedTraceConfiguration,
|
|
11443
11824
|
importNetworksSupportNetworkSystemLayers,
|
|
11825
|
+
importNetworksSupportSubcircuit,
|
|
11444
11826
|
importNetworksSupportTerminal,
|
|
11445
11827
|
importNetworksSupportTerminalConfiguration,
|
|
11446
11828
|
importNetworksSupportTopologyValidationJobInfo,
|
|
11447
11829
|
importNetworksSupportTraceConfiguration,
|
|
11448
11830
|
importNetworksSupportTraceJobInfo,
|
|
11449
11831
|
importNetworksSupportUNTraceConfiguration,
|
|
11832
|
+
importNetworksUnitIdentifierManager,
|
|
11450
11833
|
importNetworksUtilityNetwork,
|
|
11451
11834
|
importPointCloudRenderers,
|
|
11452
11835
|
importPopupContent,
|
|
@@ -11548,6 +11931,7 @@ export {
|
|
|
11548
11931
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11549
11932
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11550
11933
|
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11934
|
+
importRestKnowledgeGraphGraphDataModelSingletonOperationResult,
|
|
11551
11935
|
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11552
11936
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11553
11937
|
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
@@ -11583,6 +11967,8 @@ export {
|
|
|
11583
11967
|
importRestLastMileDelivery,
|
|
11584
11968
|
importRestLocator,
|
|
11585
11969
|
importRestNetworkService,
|
|
11970
|
+
importRestNetworksCircuitsSupportCircuitTraceResult,
|
|
11971
|
+
importRestNetworksCircuitsSupportCircuitVerifyResult,
|
|
11586
11972
|
importRestNetworksQueryAssociations,
|
|
11587
11973
|
importRestNetworksSupportAggregatedGeometry,
|
|
11588
11974
|
importRestNetworksSupportAssociation,
|
|
@@ -11592,6 +11978,7 @@ export {
|
|
|
11592
11978
|
importRestNetworksSupportQueryAssociationsParameters,
|
|
11593
11979
|
importRestNetworksSupportQueryAssociationsResult,
|
|
11594
11980
|
importRestNetworksSupportSynthesizeAssociationGeometriesParameters,
|
|
11981
|
+
importRestNetworksSupportTelecomNetworkElement,
|
|
11595
11982
|
importRestNetworksSupportTraceLocation,
|
|
11596
11983
|
importRestNetworksSupportTraceParameters,
|
|
11597
11984
|
importRestNetworksSupportTraceResult,
|
|
@@ -11599,6 +11986,7 @@ export {
|
|
|
11599
11986
|
importRestNetworksSupportValidateNetworkTopologyResult,
|
|
11600
11987
|
importRestNetworksSynthesizeAssociationGeometries,
|
|
11601
11988
|
importRestNetworksTrace,
|
|
11989
|
+
importRestNetworksUnitIdentifiersSupportUnitQueryResult,
|
|
11602
11990
|
importRestPlaces,
|
|
11603
11991
|
importRestPrint,
|
|
11604
11992
|
importRestQuery,
|
|
@@ -11681,6 +12069,11 @@ export {
|
|
|
11681
12069
|
importRestSupportLegendLayer,
|
|
11682
12070
|
importRestSupportLengthsParameters,
|
|
11683
12071
|
importRestSupportLinearUnit,
|
|
12072
|
+
importRestSupportLocateSetting,
|
|
12073
|
+
importRestSupportLocateSettingBase,
|
|
12074
|
+
importRestSupportLocateSettingSource,
|
|
12075
|
+
importRestSupportLocateSettings,
|
|
12076
|
+
importRestSupportLocateSettingsOverrides,
|
|
11684
12077
|
importRestSupportMapToImageParameters,
|
|
11685
12078
|
importRestSupportMeasureAreaFromImageResult,
|
|
11686
12079
|
importRestSupportMeasureFromImageParameters,
|
|
@@ -11835,6 +12228,8 @@ export {
|
|
|
11835
12228
|
importVersionManagementVersionManagementService,
|
|
11836
12229
|
importVersionManagementVersioningState,
|
|
11837
12230
|
importViewpoint,
|
|
12231
|
+
importViews2dAnalysisAreaMeasurementAnalysisView2D,
|
|
12232
|
+
importViews2dAnalysisDistanceMeasurementAnalysisView2D,
|
|
11838
12233
|
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
11839
12234
|
importViews2dLayersBaseLayerView2D,
|
|
11840
12235
|
importViews2dLayersBaseLayerViewGL2D,
|
|
@@ -11845,6 +12240,7 @@ export {
|
|
|
11845
12240
|
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11846
12241
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11847
12242
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12243
|
+
importViews3dAnalysisShadowCastAnalysisView3D,
|
|
11848
12244
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11849
12245
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11850
12246
|
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
@@ -11902,6 +12298,7 @@ export {
|
|
|
11902
12298
|
importViewsNavigationNavigation,
|
|
11903
12299
|
importViewsNavigationNavigationActionMap,
|
|
11904
12300
|
importViewsSceneView,
|
|
12301
|
+
importViewsSupportAttributionItem,
|
|
11905
12302
|
importViewsSupportColorUtils,
|
|
11906
12303
|
importViewsSupportHighlightOptions,
|
|
11907
12304
|
importViewsTheme,
|
|
@@ -12010,9 +12407,12 @@ export {
|
|
|
12010
12407
|
importWidgetsEditorCreateFeaturesWorkflowData,
|
|
12011
12408
|
importWidgetsEditorEditorViewModel,
|
|
12012
12409
|
importWidgetsEditorEdits,
|
|
12410
|
+
importWidgetsEditorMergeFeaturesWorkflow,
|
|
12411
|
+
importWidgetsEditorMergeFeaturesWorkflowData,
|
|
12013
12412
|
importWidgetsEditorSplitFeatureWorkflow,
|
|
12014
12413
|
importWidgetsEditorSplitFeatureWorkflowData,
|
|
12015
12414
|
importWidgetsEditorSupportEditorItem,
|
|
12415
|
+
importWidgetsEditorUpdateFeaturesWorkflow,
|
|
12016
12416
|
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12017
12417
|
importWidgetsEditorUpdateWorkflow,
|
|
12018
12418
|
importWidgetsEditorUpdateWorkflowData,
|
|
@@ -12176,6 +12576,7 @@ export {
|
|
|
12176
12576
|
newAnalysisDimensionAnalysis,
|
|
12177
12577
|
newAnalysisDimensionSimpleStyle,
|
|
12178
12578
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12579
|
+
newAnalysisDistanceMeasurementAnalysis,
|
|
12179
12580
|
newAnalysisElevationProfileAnalysis,
|
|
12180
12581
|
newAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
12181
12582
|
newAnalysisElevationProfileElevationProfileLine,
|
|
@@ -12190,6 +12591,10 @@ export {
|
|
|
12190
12591
|
newAnalysisLineOfSightAnalysis,
|
|
12191
12592
|
newAnalysisLineOfSightAnalysisObserver,
|
|
12192
12593
|
newAnalysisLineOfSightAnalysisTarget,
|
|
12594
|
+
newAnalysisShadowCastAnalysis,
|
|
12595
|
+
newAnalysisShadowCastDiscreteOptions,
|
|
12596
|
+
newAnalysisShadowCastDurationOptions,
|
|
12597
|
+
newAnalysisShadowCastThresholdOptions,
|
|
12193
12598
|
newAnalysisSliceAnalysis,
|
|
12194
12599
|
newAnalysisSlicePlane,
|
|
12195
12600
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
@@ -12209,6 +12614,8 @@ export {
|
|
|
12209
12614
|
newCoreError,
|
|
12210
12615
|
newCoreHandles,
|
|
12211
12616
|
newCoreWorkersConnection,
|
|
12617
|
+
newEditingSharedTemplatesSharedTemplate,
|
|
12618
|
+
newEditingSharedTemplatesSharedTemplateMetadata,
|
|
12212
12619
|
newEffectsFocusArea,
|
|
12213
12620
|
newEffectsFocusAreaOutline,
|
|
12214
12621
|
newEffectsFocusAreas,
|
|
@@ -12366,6 +12773,7 @@ export {
|
|
|
12366
12773
|
newLayersSupportSceneModification,
|
|
12367
12774
|
newLayersSupportSceneModifications,
|
|
12368
12775
|
newLayersSupportSiteLayerInfo,
|
|
12776
|
+
newLayersSupportStreamConnection,
|
|
12369
12777
|
newLayersSupportSublayer,
|
|
12370
12778
|
newLayersSupportSubtype,
|
|
12371
12779
|
newLayersSupportSubtypeSublayer,
|
|
@@ -12391,7 +12799,9 @@ export {
|
|
|
12391
12799
|
newLayersVoxelVoxelDynamicSection,
|
|
12392
12800
|
newLayersVoxelVoxelSlice,
|
|
12393
12801
|
newLayersVoxelVoxelTransferFunctionStyle,
|
|
12802
|
+
newLayersVoxelVoxelVariable,
|
|
12394
12803
|
newLayersVoxelVoxelVariableStyle,
|
|
12804
|
+
newLayersVoxelVoxelVolume,
|
|
12395
12805
|
newLayersVoxelVoxelVolumeStyle,
|
|
12396
12806
|
newLayersWCSLayer,
|
|
12397
12807
|
newLayersWFSLayer,
|
|
@@ -12404,15 +12814,23 @@ export {
|
|
|
12404
12814
|
newLinkChartNonspatialDataDisplay,
|
|
12405
12815
|
newLinkChartOrganicLayoutSettings,
|
|
12406
12816
|
newMap,
|
|
12817
|
+
newNetworksCircuitManager,
|
|
12407
12818
|
newNetworksNetwork,
|
|
12819
|
+
newNetworksSupportCircuit,
|
|
12820
|
+
newNetworksSupportCircuitLocation,
|
|
12821
|
+
newNetworksSupportCircuitPath,
|
|
12822
|
+
newNetworksSupportCircuitPathConnectivityElement,
|
|
12823
|
+
newNetworksSupportCircuitSection,
|
|
12408
12824
|
newNetworksSupportNamedTraceConfiguration,
|
|
12409
12825
|
newNetworksSupportNetworkSystemLayers,
|
|
12826
|
+
newNetworksSupportSubcircuit,
|
|
12410
12827
|
newNetworksSupportTerminal,
|
|
12411
12828
|
newNetworksSupportTerminalConfiguration,
|
|
12412
12829
|
newNetworksSupportTopologyValidationJobInfo,
|
|
12413
12830
|
newNetworksSupportTraceConfiguration,
|
|
12414
12831
|
newNetworksSupportTraceJobInfo,
|
|
12415
12832
|
newNetworksSupportUNTraceConfiguration,
|
|
12833
|
+
newNetworksUnitIdentifierManager,
|
|
12416
12834
|
newNetworksUtilityNetwork,
|
|
12417
12835
|
newPopupContentAttachmentsContent,
|
|
12418
12836
|
newPopupContentBarChartMediaInfo,
|
|
@@ -12489,6 +12907,7 @@ export {
|
|
|
12489
12907
|
newRenderersVisualVariablesSupportSizeStop,
|
|
12490
12908
|
newRenderersVisualVariablesVisualVariable,
|
|
12491
12909
|
newRestFeatureServiceFeatureService,
|
|
12910
|
+
newRestGeoprocessorGPOptions,
|
|
12492
12911
|
newRestKnowledgeGraphDataModel,
|
|
12493
12912
|
newRestKnowledgeGraphEntity,
|
|
12494
12913
|
newRestKnowledgeGraphEntityType,
|
|
@@ -12499,6 +12918,7 @@ export {
|
|
|
12499
12918
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12500
12919
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12501
12920
|
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12921
|
+
newRestKnowledgeGraphGraphDataModelSingletonOperationResult,
|
|
12502
12922
|
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12503
12923
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12504
12924
|
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
@@ -12530,6 +12950,8 @@ export {
|
|
|
12530
12950
|
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
12531
12951
|
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
12532
12952
|
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
12953
|
+
newRestNetworksCircuitsSupportCircuitTraceResult,
|
|
12954
|
+
newRestNetworksCircuitsSupportCircuitVerifyResult,
|
|
12533
12955
|
newRestNetworksSupportAggregatedGeometry,
|
|
12534
12956
|
newRestNetworksSupportAssociation,
|
|
12535
12957
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -12538,10 +12960,13 @@ export {
|
|
|
12538
12960
|
newRestNetworksSupportQueryAssociationsParameters,
|
|
12539
12961
|
newRestNetworksSupportQueryAssociationsResult,
|
|
12540
12962
|
newRestNetworksSupportSynthesizeAssociationGeometriesParameters,
|
|
12963
|
+
newRestNetworksSupportTelecomNetworkElement,
|
|
12541
12964
|
newRestNetworksSupportTraceLocation,
|
|
12542
12965
|
newRestNetworksSupportTraceParameters,
|
|
12543
12966
|
newRestNetworksSupportTraceResult,
|
|
12544
12967
|
newRestNetworksSupportValidateNetworkTopologyParameters,
|
|
12968
|
+
newRestNetworksSupportValidateNetworkTopologyResult,
|
|
12969
|
+
newRestNetworksUnitIdentifiersSupportUnitQueryResult,
|
|
12545
12970
|
newRestQuerySupportAttachmentInfo,
|
|
12546
12971
|
newRestSupportAddressCandidate,
|
|
12547
12972
|
newRestSupportAlgorithmicColorRamp,
|
|
@@ -12619,6 +13044,11 @@ export {
|
|
|
12619
13044
|
newRestSupportLegendLayer,
|
|
12620
13045
|
newRestSupportLengthsParameters,
|
|
12621
13046
|
newRestSupportLinearUnit,
|
|
13047
|
+
newRestSupportLocateSetting,
|
|
13048
|
+
newRestSupportLocateSettingBase,
|
|
13049
|
+
newRestSupportLocateSettingSource,
|
|
13050
|
+
newRestSupportLocateSettings,
|
|
13051
|
+
newRestSupportLocateSettingsOverrides,
|
|
12622
13052
|
newRestSupportMapToImageParameters,
|
|
12623
13053
|
newRestSupportMeasureAreaFromImageResult,
|
|
12624
13054
|
newRestSupportMeasureFromImageParameters,
|
|
@@ -12712,6 +13142,8 @@ export {
|
|
|
12712
13142
|
newVersionManagementVersionManagementService,
|
|
12713
13143
|
newVersionManagementVersioningState,
|
|
12714
13144
|
newViewpoint,
|
|
13145
|
+
newViews2dAnalysisAreaMeasurementAnalysisView2D,
|
|
13146
|
+
newViews2dAnalysisDistanceMeasurementAnalysisView2D,
|
|
12715
13147
|
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12716
13148
|
newViews2dLayersBaseLayerView2D,
|
|
12717
13149
|
newViews2dLayersBaseLayerViewGL2D,
|
|
@@ -12722,6 +13154,7 @@ export {
|
|
|
12722
13154
|
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12723
13155
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12724
13156
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
13157
|
+
newViews3dAnalysisShadowCastAnalysisView3D,
|
|
12725
13158
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12726
13159
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12727
13160
|
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
@@ -12734,9 +13167,14 @@ export {
|
|
|
12734
13167
|
newViews3dEnvironmentSunLighting,
|
|
12735
13168
|
newViews3dEnvironmentSunnyWeather,
|
|
12736
13169
|
newViews3dEnvironmentVirtualLighting,
|
|
13170
|
+
newViews3dSupportLayerPerformanceInfo,
|
|
13171
|
+
newViews3dSupportSceneViewPerformanceInfo,
|
|
13172
|
+
newViews3dWebglManagedFBO,
|
|
13173
|
+
newViews3dWebglRenderCamera,
|
|
12737
13174
|
newViews3dWebglRenderNode,
|
|
12738
13175
|
newViewsAnalysisElevationProfileElevationProfileError,
|
|
12739
13176
|
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
13177
|
+
newViewsAnalysisLengthDimensionResult,
|
|
12740
13178
|
newViewsBasemapView,
|
|
12741
13179
|
newViewsDrawDraw,
|
|
12742
13180
|
newViewsDrawDrawAction,
|
|
@@ -12880,8 +13318,12 @@ export {
|
|
|
12880
13318
|
newWidgetsEditorCreateFeaturesWorkflowData,
|
|
12881
13319
|
newWidgetsEditorEditorViewModel,
|
|
12882
13320
|
newWidgetsEditorEdits,
|
|
13321
|
+
newWidgetsEditorMergeFeaturesWorkflow,
|
|
13322
|
+
newWidgetsEditorMergeFeaturesWorkflowData,
|
|
12883
13323
|
newWidgetsEditorSplitFeatureWorkflow,
|
|
13324
|
+
newWidgetsEditorSplitFeatureWorkflowData,
|
|
12884
13325
|
newWidgetsEditorSupportEditorItem,
|
|
13326
|
+
newWidgetsEditorUpdateFeaturesWorkflow,
|
|
12885
13327
|
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12886
13328
|
newWidgetsEditorUpdateWorkflow,
|
|
12887
13329
|
newWidgetsEditorUpdateWorkflowData,
|