@arcgis/core-adapter 4.32.0-next.4 → 4.32.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/.turbo/turbo-build.log +16 -3
- package/dist/index.cjs +747 -174
- package/dist/index.d.cts +108 -38
- package/dist/index.d.ts +108 -38
- package/dist/index.js +670 -167
- package/package.json +4 -28
- package/scripts/generator.ts +18 -1
- package/scripts/update-adapter-typings.ts +49 -15
- package/src/index.ts +673 -170
- package/support/api-reference-esm-imports.json +63 -13
- package/support/arcgis.d.ts +47376 -51136
- package/support/publicModules.ts +25 -0
package/src/index.ts
CHANGED
|
@@ -756,6 +756,19 @@ export async function newGeometrySpatialReference(properties: __esri.SpatialRefe
|
|
|
756
756
|
return new ModConstructor(properties);
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
export async function importGeometryOperatorsSupportTransformation(): Promise<typeof __esri.Transformation> {
|
|
760
|
+
if (isAMD) {
|
|
761
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
762
|
+
}
|
|
763
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
764
|
+
return isDefaultModule(module) ? module.default : module;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
export async function newGeometryOperatorsSupportTransformation(): Promise<__esri.Transformation> {
|
|
768
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
769
|
+
return new ModConstructor();
|
|
770
|
+
}
|
|
771
|
+
|
|
759
772
|
export async function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.GeographicTransformation> {
|
|
760
773
|
if (isAMD) {
|
|
761
774
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -1315,6 +1328,19 @@ export async function newLayersLineOfSightLayer(properties: __esri.LineOfSightLa
|
|
|
1315
1328
|
return new ModConstructor(properties);
|
|
1316
1329
|
}
|
|
1317
1330
|
|
|
1331
|
+
export async function importLayersLinkChartLayer(): Promise<typeof __esri.LinkChartLayer> {
|
|
1332
|
+
if (isAMD) {
|
|
1333
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1334
|
+
}
|
|
1335
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1336
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
export async function newLayersLinkChartLayer(properties: __esri.LinkChartLayerProperties): Promise<__esri.LinkChartLayer> {
|
|
1340
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1341
|
+
return new ModConstructor(properties);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1318
1344
|
export async function importLayersMapImageLayer(): Promise<typeof __esri.MapImageLayer> {
|
|
1319
1345
|
if (isAMD) {
|
|
1320
1346
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -1965,19 +1991,6 @@ export async function newLayersSupportPublishingInfo(properties: __esri.Publishi
|
|
|
1965
1991
|
return new ModConstructor(properties);
|
|
1966
1992
|
}
|
|
1967
1993
|
|
|
1968
|
-
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
1969
|
-
if (isAMD) {
|
|
1970
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1971
|
-
}
|
|
1972
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1973
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1974
|
-
}
|
|
1975
|
-
|
|
1976
|
-
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
1977
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1978
|
-
return new ModConstructor(properties);
|
|
1979
|
-
}
|
|
1980
|
-
|
|
1981
1994
|
export async function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain> {
|
|
1982
1995
|
if (isAMD) {
|
|
1983
1996
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -2082,6 +2095,19 @@ export async function newLayersSupportRouteSymbols(properties: __esri.RouteSymbo
|
|
|
2082
2095
|
return new ModConstructor(properties);
|
|
2083
2096
|
}
|
|
2084
2097
|
|
|
2098
|
+
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
2099
|
+
if (isAMD) {
|
|
2100
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
2101
|
+
}
|
|
2102
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
2103
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
2107
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
2108
|
+
return new ModConstructor(properties);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2085
2111
|
export async function importLayersSupportSceneModification(): Promise<typeof __esri.SceneModification> {
|
|
2086
2112
|
if (isAMD) {
|
|
2087
2113
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2407,29 +2433,29 @@ export async function newLayersUnsupportedLayer(properties: __esri.UnsupportedLa
|
|
|
2407
2433
|
return new ModConstructor(properties);
|
|
2408
2434
|
}
|
|
2409
2435
|
|
|
2410
|
-
export async function
|
|
2436
|
+
export async function importLayersVectorTileLayer(): Promise<typeof __esri.VectorTileLayer> {
|
|
2411
2437
|
if (isAMD) {
|
|
2412
|
-
return await window.$arcgis.import("esri/layers/
|
|
2438
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2413
2439
|
}
|
|
2414
|
-
const module = await import("@arcgis/core/layers/
|
|
2440
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2415
2441
|
return isDefaultModule(module) ? module.default : module;
|
|
2416
2442
|
}
|
|
2417
2443
|
|
|
2418
|
-
export async function
|
|
2419
|
-
const ModConstructor = await
|
|
2444
|
+
export async function newLayersVectorTileLayer(properties: __esri.VectorTileLayerProperties): Promise<__esri.VectorTileLayer> {
|
|
2445
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2420
2446
|
return new ModConstructor(properties);
|
|
2421
2447
|
}
|
|
2422
2448
|
|
|
2423
|
-
export async function
|
|
2449
|
+
export async function importLayersVideoLayer(): Promise<typeof __esri.VideoLayer> {
|
|
2424
2450
|
if (isAMD) {
|
|
2425
|
-
return await window.$arcgis.import("esri/layers/
|
|
2451
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2426
2452
|
}
|
|
2427
|
-
const module = await import("@arcgis/core/layers/
|
|
2453
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2428
2454
|
return isDefaultModule(module) ? module.default : module;
|
|
2429
2455
|
}
|
|
2430
2456
|
|
|
2431
|
-
export async function
|
|
2432
|
-
const ModConstructor = await
|
|
2457
|
+
export async function newLayersVideoLayer(properties: __esri.VideoLayerProperties): Promise<__esri.VideoLayer> {
|
|
2458
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2433
2459
|
return new ModConstructor(properties);
|
|
2434
2460
|
}
|
|
2435
2461
|
|
|
@@ -2511,6 +2537,71 @@ export async function newLayersWMTSLayer(properties: __esri.WMTSLayerProperties)
|
|
|
2511
2537
|
return new ModConstructor(properties);
|
|
2512
2538
|
}
|
|
2513
2539
|
|
|
2540
|
+
export async function importLinkChartChronologicalLayoutSettings(): Promise<typeof __esri.ChronologicalLayoutSettings> {
|
|
2541
|
+
if (isAMD) {
|
|
2542
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2543
|
+
}
|
|
2544
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2545
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
export async function newLinkChartChronologicalLayoutSettings(properties: __esri.ChronologicalLayoutSettingsProperties): Promise<__esri.ChronologicalLayoutSettings> {
|
|
2549
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2550
|
+
return new ModConstructor(properties);
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
export async function importLinkChartLayoutSettings(): Promise<typeof __esri.LayoutSettings> {
|
|
2554
|
+
if (isAMD) {
|
|
2555
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2556
|
+
}
|
|
2557
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2558
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
export async function newLinkChartLayoutSettings(properties: __esri.LayoutSettingsProperties): Promise<__esri.LayoutSettings> {
|
|
2562
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2563
|
+
return new ModConstructor(properties);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
export async function importLinkChartLinkChartProperties(): Promise<typeof __esri.LinkChartProperties> {
|
|
2567
|
+
if (isAMD) {
|
|
2568
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2569
|
+
}
|
|
2570
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2571
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
export async function newLinkChartLinkChartProperties(properties: __esri.LinkChartPropertiesProperties): Promise<__esri.LinkChartProperties> {
|
|
2575
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2576
|
+
return new ModConstructor(properties);
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
export async function importLinkChartNonspatialDataDisplay(): Promise<typeof __esri.NonspatialDataDisplay> {
|
|
2580
|
+
if (isAMD) {
|
|
2581
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2582
|
+
}
|
|
2583
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2584
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
export async function newLinkChartNonspatialDataDisplay(properties: __esri.NonspatialDataDisplayProperties): Promise<__esri.NonspatialDataDisplay> {
|
|
2588
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2589
|
+
return new ModConstructor(properties);
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
export async function importLinkChartOrganicLayoutSettings(): Promise<typeof __esri.OrganicLayoutSettings> {
|
|
2593
|
+
if (isAMD) {
|
|
2594
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2595
|
+
}
|
|
2596
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2597
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
export async function newLinkChartOrganicLayoutSettings(properties: __esri.OrganicLayoutSettingsProperties): Promise<__esri.OrganicLayoutSettings> {
|
|
2601
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2602
|
+
return new ModConstructor(properties);
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2514
2605
|
export async function importMap(): Promise<typeof __esri.Map> {
|
|
2515
2606
|
if (isAMD) {
|
|
2516
2607
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -3252,6 +3343,19 @@ export async function newRenderersRasterColormapRenderer(properties: __esri.Rast
|
|
|
3252
3343
|
return new ModConstructor(properties);
|
|
3253
3344
|
}
|
|
3254
3345
|
|
|
3346
|
+
export async function importRenderersSupportRasterPresetRenderer(): Promise<typeof __esri.RasterPresetRenderer> {
|
|
3347
|
+
if (isAMD) {
|
|
3348
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
3349
|
+
}
|
|
3350
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
3351
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
export async function newRenderersSupportRasterPresetRenderer(properties: __esri.RasterPresetRendererProperties): Promise<__esri.RasterPresetRenderer> {
|
|
3355
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
3356
|
+
return new ModConstructor(properties);
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3255
3359
|
export async function importRenderersRasterShadedReliefRenderer(): Promise<typeof __esri.RasterShadedReliefRenderer> {
|
|
3256
3360
|
if (isAMD) {
|
|
3257
3361
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -3746,6 +3850,19 @@ export async function newRestKnowledgeGraphGraphQueryResult(properties: __esri.G
|
|
|
3746
3850
|
return new ModConstructor(properties);
|
|
3747
3851
|
}
|
|
3748
3852
|
|
|
3853
|
+
export async function importRestKnowledgeGraphGraphQueryResultHeader(): Promise<typeof __esri.GraphQueryResultHeader> {
|
|
3854
|
+
if (isAMD) {
|
|
3855
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3856
|
+
}
|
|
3857
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3858
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
export async function newRestKnowledgeGraphGraphQueryResultHeader(properties: __esri.GraphQueryResultHeaderProperties): Promise<__esri.GraphQueryResultHeader> {
|
|
3862
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3863
|
+
return new ModConstructor(properties);
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3749
3866
|
export async function importRestKnowledgeGraphGraphQueryStreaming(): Promise<typeof __esri.GraphQueryStreaming> {
|
|
3750
3867
|
if (isAMD) {
|
|
3751
3868
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3902,6 +4019,19 @@ export async function newRestKnowledgeGraphServiceDefinition(properties: __esri.
|
|
|
3902
4019
|
return new ModConstructor(properties);
|
|
3903
4020
|
}
|
|
3904
4021
|
|
|
4022
|
+
export async function importRestKnowledgeGraphSourceTypeValueBehavior(): Promise<typeof __esri.SourceTypeValueBehavior> {
|
|
4023
|
+
if (isAMD) {
|
|
4024
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
4025
|
+
}
|
|
4026
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
4027
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
export async function newRestKnowledgeGraphSourceTypeValueBehavior(properties: __esri.SourceTypeValueBehaviorProperties): Promise<__esri.SourceTypeValueBehavior> {
|
|
4031
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
4032
|
+
return new ModConstructor(properties);
|
|
4033
|
+
}
|
|
4034
|
+
|
|
3905
4035
|
export async function importRestNetworksSupportAggregatedGeometry(): Promise<typeof __esri.AggregatedGeometry> {
|
|
3906
4036
|
if (isAMD) {
|
|
3907
4037
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4526,58 +4656,6 @@ export async function newRestSupportImageBoundaryResult(properties: __esri.Image
|
|
|
4526
4656
|
return new ModConstructor(properties);
|
|
4527
4657
|
}
|
|
4528
4658
|
|
|
4529
|
-
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4530
|
-
if (isAMD) {
|
|
4531
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4532
|
-
}
|
|
4533
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4534
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4535
|
-
}
|
|
4536
|
-
|
|
4537
|
-
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4538
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4539
|
-
return new ModConstructor(properties);
|
|
4540
|
-
}
|
|
4541
|
-
|
|
4542
|
-
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4543
|
-
if (isAMD) {
|
|
4544
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4545
|
-
}
|
|
4546
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4547
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4548
|
-
}
|
|
4549
|
-
|
|
4550
|
-
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4551
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4552
|
-
return new ModConstructor(properties);
|
|
4553
|
-
}
|
|
4554
|
-
|
|
4555
|
-
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4556
|
-
if (isAMD) {
|
|
4557
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4558
|
-
}
|
|
4559
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4560
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4561
|
-
}
|
|
4562
|
-
|
|
4563
|
-
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4564
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4565
|
-
return new ModConstructor(properties);
|
|
4566
|
-
}
|
|
4567
|
-
|
|
4568
|
-
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4569
|
-
if (isAMD) {
|
|
4570
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4571
|
-
}
|
|
4572
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4573
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4574
|
-
}
|
|
4575
|
-
|
|
4576
|
-
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4577
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4578
|
-
return new ModConstructor(properties);
|
|
4579
|
-
}
|
|
4580
|
-
|
|
4581
4659
|
export async function importRestSupportImageDistanceParameters(): Promise<typeof __esri.ImageDistanceParameters> {
|
|
4582
4660
|
if (isAMD) {
|
|
4583
4661
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -4669,6 +4747,58 @@ export async function newRestSupportImageHeightResult(properties: __esri.ImageHe
|
|
|
4669
4747
|
return new ModConstructor(properties);
|
|
4670
4748
|
}
|
|
4671
4749
|
|
|
4750
|
+
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4751
|
+
if (isAMD) {
|
|
4752
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4753
|
+
}
|
|
4754
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4755
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4756
|
+
}
|
|
4757
|
+
|
|
4758
|
+
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4759
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4760
|
+
return new ModConstructor(properties);
|
|
4761
|
+
}
|
|
4762
|
+
|
|
4763
|
+
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4764
|
+
if (isAMD) {
|
|
4765
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4766
|
+
}
|
|
4767
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4768
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4769
|
+
}
|
|
4770
|
+
|
|
4771
|
+
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4772
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4773
|
+
return new ModConstructor(properties);
|
|
4774
|
+
}
|
|
4775
|
+
|
|
4776
|
+
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4777
|
+
if (isAMD) {
|
|
4778
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4779
|
+
}
|
|
4780
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4781
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4782
|
+
}
|
|
4783
|
+
|
|
4784
|
+
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4785
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4786
|
+
return new ModConstructor(properties);
|
|
4787
|
+
}
|
|
4788
|
+
|
|
4789
|
+
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4790
|
+
if (isAMD) {
|
|
4791
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4792
|
+
}
|
|
4793
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4794
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4795
|
+
}
|
|
4796
|
+
|
|
4797
|
+
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4798
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4799
|
+
return new ModConstructor(properties);
|
|
4800
|
+
}
|
|
4801
|
+
|
|
4672
4802
|
export async function importRestSupportImageParameters(): Promise<typeof __esri.ImageParameters> {
|
|
4673
4803
|
if (isAMD) {
|
|
4674
4804
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -4773,29 +4903,29 @@ export async function newRestSupportImageSampleResult(properties: __esri.ImageSa
|
|
|
4773
4903
|
return new ModConstructor(properties);
|
|
4774
4904
|
}
|
|
4775
4905
|
|
|
4776
|
-
export async function
|
|
4906
|
+
export async function importRestSupportImageToMapMultirayParameters(): Promise<typeof __esri.ImageToMapMultirayParameters> {
|
|
4777
4907
|
if (isAMD) {
|
|
4778
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4908
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
4779
4909
|
}
|
|
4780
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4910
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
4781
4911
|
return isDefaultModule(module) ? module.default : module;
|
|
4782
4912
|
}
|
|
4783
4913
|
|
|
4784
|
-
export async function
|
|
4785
|
-
const ModConstructor = await
|
|
4914
|
+
export async function newRestSupportImageToMapMultirayParameters(properties: __esri.ImageToMapMultirayParametersProperties): Promise<__esri.ImageToMapMultirayParameters> {
|
|
4915
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4786
4916
|
return new ModConstructor(properties);
|
|
4787
4917
|
}
|
|
4788
4918
|
|
|
4789
|
-
export async function
|
|
4919
|
+
export async function importRestSupportImageToMapParameters(): Promise<typeof __esri.ImageToMapParameters> {
|
|
4790
4920
|
if (isAMD) {
|
|
4791
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4921
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4792
4922
|
}
|
|
4793
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4923
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4794
4924
|
return isDefaultModule(module) ? module.default : module;
|
|
4795
4925
|
}
|
|
4796
4926
|
|
|
4797
|
-
export async function
|
|
4798
|
-
const ModConstructor = await
|
|
4927
|
+
export async function newRestSupportImageToMapParameters(properties: __esri.ImageToMapParametersProperties): Promise<__esri.ImageToMapParameters> {
|
|
4928
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4799
4929
|
return new ModConstructor(properties);
|
|
4800
4930
|
}
|
|
4801
4931
|
|
|
@@ -4903,29 +5033,29 @@ export async function newRestSupportMeasureAreaFromImageResult(properties: __esr
|
|
|
4903
5033
|
return new ModConstructor(properties);
|
|
4904
5034
|
}
|
|
4905
5035
|
|
|
4906
|
-
export async function
|
|
5036
|
+
export async function importRestSupportMeasureFromImageParameters(): Promise<typeof __esri.MeasureFromImageParameters> {
|
|
4907
5037
|
if (isAMD) {
|
|
4908
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5038
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
4909
5039
|
}
|
|
4910
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5040
|
+
const module = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
4911
5041
|
return isDefaultModule(module) ? module.default : module;
|
|
4912
5042
|
}
|
|
4913
5043
|
|
|
4914
|
-
export async function
|
|
4915
|
-
const ModConstructor = await
|
|
5044
|
+
export async function newRestSupportMeasureFromImageParameters(properties: __esri.MeasureFromImageParametersProperties): Promise<__esri.MeasureFromImageParameters> {
|
|
5045
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4916
5046
|
return new ModConstructor(properties);
|
|
4917
5047
|
}
|
|
4918
5048
|
|
|
4919
|
-
export async function
|
|
5049
|
+
export async function importRestSupportMeasureLengthFromImageResult(): Promise<typeof __esri.MeasureLengthFromImageResult> {
|
|
4920
5050
|
if (isAMD) {
|
|
4921
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5051
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4922
5052
|
}
|
|
4923
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5053
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4924
5054
|
return isDefaultModule(module) ? module.default : module;
|
|
4925
5055
|
}
|
|
4926
5056
|
|
|
4927
|
-
export async function
|
|
4928
|
-
const ModConstructor = await
|
|
5057
|
+
export async function newRestSupportMeasureLengthFromImageResult(properties: __esri.MeasureLengthFromImageResultProperties): Promise<__esri.MeasureLengthFromImageResult> {
|
|
5058
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4929
5059
|
return new ModConstructor(properties);
|
|
4930
5060
|
}
|
|
4931
5061
|
|
|
@@ -6125,6 +6255,19 @@ export async function newViews2dViewState(properties: __esri.ViewStateProperties
|
|
|
6125
6255
|
return new ModConstructor(properties);
|
|
6126
6256
|
}
|
|
6127
6257
|
|
|
6258
|
+
export async function importViews2dSupportHighlightGroup(): Promise<typeof __esri.HighlightGroup> {
|
|
6259
|
+
if (isAMD) {
|
|
6260
|
+
return await window.$arcgis.import("esri/views/2d/support/HighlightGroup");
|
|
6261
|
+
}
|
|
6262
|
+
const module = await import("@arcgis/core/views/2d/support/HighlightGroup.js");
|
|
6263
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6264
|
+
}
|
|
6265
|
+
|
|
6266
|
+
export async function newViews2dSupportHighlightGroup(properties: __esri.HighlightGroupProperties): Promise<__esri.HighlightGroup> {
|
|
6267
|
+
const ModConstructor = await importViews2dSupportHighlightGroup();
|
|
6268
|
+
return new ModConstructor(properties);
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6128
6271
|
export async function importViews3dAnalysisAreaMeasurementAnalysisView3D(): Promise<typeof __esri.AreaMeasurementAnalysisView3D> {
|
|
6129
6272
|
if (isAMD) {
|
|
6130
6273
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -6645,6 +6788,19 @@ export async function newViewsLayersFeatureLayerView(properties: __esri.FeatureL
|
|
|
6645
6788
|
return new ModConstructor(properties);
|
|
6646
6789
|
}
|
|
6647
6790
|
|
|
6791
|
+
export async function importViewsLayersGroupLayerView(): Promise<typeof __esri.GroupLayerView> {
|
|
6792
|
+
if (isAMD) {
|
|
6793
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
6794
|
+
}
|
|
6795
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
6796
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6797
|
+
}
|
|
6798
|
+
|
|
6799
|
+
export async function newViewsLayersGroupLayerView(properties: __esri.GroupLayerViewProperties): Promise<__esri.GroupLayerView> {
|
|
6800
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
6801
|
+
return new ModConstructor(properties);
|
|
6802
|
+
}
|
|
6803
|
+
|
|
6648
6804
|
export async function importViewsLayersImageryLayerView(): Promise<typeof __esri.ImageryLayerView> {
|
|
6649
6805
|
if (isAMD) {
|
|
6650
6806
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -6736,6 +6892,19 @@ export async function newViewsLayersViewshedLayerView(properties: __esri.Viewshe
|
|
|
6736
6892
|
return new ModConstructor(properties);
|
|
6737
6893
|
}
|
|
6738
6894
|
|
|
6895
|
+
export async function importViewsLinkChartView(): Promise<typeof __esri.LinkChartView> {
|
|
6896
|
+
if (isAMD) {
|
|
6897
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
6898
|
+
}
|
|
6899
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
6900
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6901
|
+
}
|
|
6902
|
+
|
|
6903
|
+
export async function newViewsLinkChartView(properties: __esri.LinkChartViewProperties): Promise<__esri.LinkChartView> {
|
|
6904
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
6905
|
+
return new ModConstructor(properties);
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6739
6908
|
export async function importViewsMagnifier(): Promise<typeof __esri.Magnifier> {
|
|
6740
6909
|
if (isAMD) {
|
|
6741
6910
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -7126,6 +7295,19 @@ export async function newWebDocument2D(properties: __esri.WebDocument2DPropertie
|
|
|
7126
7295
|
return new ModConstructor(properties);
|
|
7127
7296
|
}
|
|
7128
7297
|
|
|
7298
|
+
export async function importWebLinkChart(): Promise<typeof __esri.WebLinkChart> {
|
|
7299
|
+
if (isAMD) {
|
|
7300
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
7301
|
+
}
|
|
7302
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
7303
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7304
|
+
}
|
|
7305
|
+
|
|
7306
|
+
export async function newWebLinkChart(properties: __esri.WebLinkChartProperties): Promise<__esri.WebLinkChart> {
|
|
7307
|
+
const ModConstructor = await importWebLinkChart();
|
|
7308
|
+
return new ModConstructor(properties);
|
|
7309
|
+
}
|
|
7310
|
+
|
|
7129
7311
|
export async function importWebMap(): Promise<typeof __esri.WebMap> {
|
|
7130
7312
|
if (isAMD) {
|
|
7131
7313
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -8192,6 +8374,32 @@ export async function newWidgetsFeatureFormRelationshipInput(properties: __esri.
|
|
|
8192
8374
|
return new ModConstructor(properties);
|
|
8193
8375
|
}
|
|
8194
8376
|
|
|
8377
|
+
export async function importWidgetsFeatureFormTextElementInput(): Promise<typeof __esri.TextElementInput> {
|
|
8378
|
+
if (isAMD) {
|
|
8379
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
8380
|
+
}
|
|
8381
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
8382
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8383
|
+
}
|
|
8384
|
+
|
|
8385
|
+
export async function newWidgetsFeatureFormTextElementInput(properties: __esri.TextElementInputProperties): Promise<__esri.TextElementInput> {
|
|
8386
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
8387
|
+
return new ModConstructor(properties);
|
|
8388
|
+
}
|
|
8389
|
+
|
|
8390
|
+
export async function importWidgetsFeatureFormUtilityNetworkAssociationInput(): Promise<typeof __esri.UtilityNetworkAssociationInput> {
|
|
8391
|
+
if (isAMD) {
|
|
8392
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
8393
|
+
}
|
|
8394
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
8395
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
export async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties: __esri.UtilityNetworkAssociationInputProperties): Promise<__esri.UtilityNetworkAssociationInput> {
|
|
8399
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
8400
|
+
return new ModConstructor(properties);
|
|
8401
|
+
}
|
|
8402
|
+
|
|
8195
8403
|
export async function importWidgetsFeatures(): Promise<typeof __esri.Features> {
|
|
8196
8404
|
if (isAMD) {
|
|
8197
8405
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -8400,6 +8608,32 @@ export async function newWidgetsFeatureTableSupportFieldColumnTemplate(propertie
|
|
|
8400
8608
|
return new ModConstructor(properties);
|
|
8401
8609
|
}
|
|
8402
8610
|
|
|
8611
|
+
export async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate(): Promise<typeof __esri.AttachmentsColumnTemplate> {
|
|
8612
|
+
if (isAMD) {
|
|
8613
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
8614
|
+
}
|
|
8615
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
8616
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8617
|
+
}
|
|
8618
|
+
|
|
8619
|
+
export async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties: __esri.AttachmentsColumnTemplateProperties): Promise<__esri.AttachmentsColumnTemplate> {
|
|
8620
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
8621
|
+
return new ModConstructor(properties);
|
|
8622
|
+
}
|
|
8623
|
+
|
|
8624
|
+
export async function importWidgetsFeatureTableSupportRelationshipColumnTemplate(): Promise<typeof __esri.RelationshipColumnTemplate> {
|
|
8625
|
+
if (isAMD) {
|
|
8626
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
8627
|
+
}
|
|
8628
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
8629
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8630
|
+
}
|
|
8631
|
+
|
|
8632
|
+
export async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties: __esri.RelationshipColumnTemplateProperties): Promise<__esri.RelationshipColumnTemplate> {
|
|
8633
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
8634
|
+
return new ModConstructor(properties);
|
|
8635
|
+
}
|
|
8636
|
+
|
|
8403
8637
|
export async function importWidgetsFeatureTableSupportGroupColumnTemplate(): Promise<typeof __esri.GroupColumnTemplate> {
|
|
8404
8638
|
if (isAMD) {
|
|
8405
8639
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -9648,6 +9882,19 @@ export async function newWidgetsUtilityNetworkTrace(properties: __esri.UtilityNe
|
|
|
9648
9882
|
return new ModConstructor(properties);
|
|
9649
9883
|
}
|
|
9650
9884
|
|
|
9885
|
+
export async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(): Promise<typeof __esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9886
|
+
if (isAMD) {
|
|
9887
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
9888
|
+
}
|
|
9889
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
9890
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9891
|
+
}
|
|
9892
|
+
|
|
9893
|
+
export async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties: any): Promise<__esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9894
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
9895
|
+
return new ModConstructor(properties);
|
|
9896
|
+
}
|
|
9897
|
+
|
|
9651
9898
|
export async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel(): Promise<typeof __esri.UtilityNetworkTraceViewModel> {
|
|
9652
9899
|
if (isAMD) {
|
|
9653
9900
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -10008,6 +10255,54 @@ export async function importGeometryProjection(): Promise<typeof __esri.projecti
|
|
|
10008
10255
|
return isDefaultModule(module) ? module.default : module;
|
|
10009
10256
|
}
|
|
10010
10257
|
|
|
10258
|
+
export async function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator> {
|
|
10259
|
+
if (isAMD) {
|
|
10260
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
10261
|
+
}
|
|
10262
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
10263
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10264
|
+
}
|
|
10265
|
+
|
|
10266
|
+
export async function importGeometryOperatorsAlphaShapeOperator(): Promise<typeof __esri.alphaShapeOperator> {
|
|
10267
|
+
if (isAMD) {
|
|
10268
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
10269
|
+
}
|
|
10270
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
10271
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10272
|
+
}
|
|
10273
|
+
|
|
10274
|
+
export async function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator> {
|
|
10275
|
+
if (isAMD) {
|
|
10276
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
10277
|
+
}
|
|
10278
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
10279
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10280
|
+
}
|
|
10281
|
+
|
|
10282
|
+
export async function importGeometryOperatorsAutoCompleteOperator(): Promise<typeof __esri.autoCompleteOperator> {
|
|
10283
|
+
if (isAMD) {
|
|
10284
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
10285
|
+
}
|
|
10286
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
10287
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10288
|
+
}
|
|
10289
|
+
|
|
10290
|
+
export async function importGeometryOperatorsBoundaryOperator(): Promise<typeof __esri.boundaryOperator> {
|
|
10291
|
+
if (isAMD) {
|
|
10292
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
10293
|
+
}
|
|
10294
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
10295
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10296
|
+
}
|
|
10297
|
+
|
|
10298
|
+
export async function importGeometryOperatorsBufferOperator(): Promise<typeof __esri.bufferOperator> {
|
|
10299
|
+
if (isAMD) {
|
|
10300
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
10301
|
+
}
|
|
10302
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
10303
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10304
|
+
}
|
|
10305
|
+
|
|
10011
10306
|
export async function importGeometryOperatorsCentroidOperator(): Promise<typeof __esri.centroidOperator> {
|
|
10012
10307
|
if (isAMD) {
|
|
10013
10308
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -10024,19 +10319,19 @@ export async function importGeometryOperatorsClipOperator(): Promise<typeof __es
|
|
|
10024
10319
|
return isDefaultModule(module) ? module.default : module;
|
|
10025
10320
|
}
|
|
10026
10321
|
|
|
10027
|
-
export async function
|
|
10322
|
+
export async function importGeometryOperatorsContainsOperator(): Promise<typeof __esri.containsOperator> {
|
|
10028
10323
|
if (isAMD) {
|
|
10029
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10324
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
10030
10325
|
}
|
|
10031
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10326
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
10032
10327
|
return isDefaultModule(module) ? module.default : module;
|
|
10033
10328
|
}
|
|
10034
10329
|
|
|
10035
|
-
export async function
|
|
10330
|
+
export async function importGeometryOperatorsConvexHullOperator(): Promise<typeof __esri.convexHullOperator> {
|
|
10036
10331
|
if (isAMD) {
|
|
10037
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10332
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
10038
10333
|
}
|
|
10039
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10334
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
10040
10335
|
return isDefaultModule(module) ? module.default : module;
|
|
10041
10336
|
}
|
|
10042
10337
|
|
|
@@ -10048,6 +10343,14 @@ export async function importGeometryOperatorsCrossesOperator(): Promise<typeof _
|
|
|
10048
10343
|
return isDefaultModule(module) ? module.default : module;
|
|
10049
10344
|
}
|
|
10050
10345
|
|
|
10346
|
+
export async function importGeometryOperatorsCutOperator(): Promise<typeof __esri.cutOperator> {
|
|
10347
|
+
if (isAMD) {
|
|
10348
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
10349
|
+
}
|
|
10350
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
10351
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10352
|
+
}
|
|
10353
|
+
|
|
10051
10354
|
export async function importGeometryOperatorsDensifyOperator(): Promise<typeof __esri.densifyOperator> {
|
|
10052
10355
|
if (isAMD) {
|
|
10053
10356
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -10064,19 +10367,19 @@ export async function importGeometryOperatorsDifferenceOperator(): Promise<typeo
|
|
|
10064
10367
|
return isDefaultModule(module) ? module.default : module;
|
|
10065
10368
|
}
|
|
10066
10369
|
|
|
10067
|
-
export async function
|
|
10370
|
+
export async function importGeometryOperatorsDisjointOperator(): Promise<typeof __esri.disjointOperator> {
|
|
10068
10371
|
if (isAMD) {
|
|
10069
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10372
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
10070
10373
|
}
|
|
10071
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10374
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
10072
10375
|
return isDefaultModule(module) ? module.default : module;
|
|
10073
10376
|
}
|
|
10074
10377
|
|
|
10075
|
-
export async function
|
|
10378
|
+
export async function importGeometryOperatorsDistanceOperator(): Promise<typeof __esri.distanceOperator> {
|
|
10076
10379
|
if (isAMD) {
|
|
10077
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10380
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
10078
10381
|
}
|
|
10079
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10382
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
10080
10383
|
return isDefaultModule(module) ? module.default : module;
|
|
10081
10384
|
}
|
|
10082
10385
|
|
|
@@ -10088,6 +10391,22 @@ export async function importGeometryOperatorsEqualsOperator(): Promise<typeof __
|
|
|
10088
10391
|
return isDefaultModule(module) ? module.default : module;
|
|
10089
10392
|
}
|
|
10090
10393
|
|
|
10394
|
+
export async function importGeometryOperatorsExtendOperator(): Promise<typeof __esri.extendOperator> {
|
|
10395
|
+
if (isAMD) {
|
|
10396
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
10397
|
+
}
|
|
10398
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
10399
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10400
|
+
}
|
|
10401
|
+
|
|
10402
|
+
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10403
|
+
if (isAMD) {
|
|
10404
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10405
|
+
}
|
|
10406
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10407
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10408
|
+
}
|
|
10409
|
+
|
|
10091
10410
|
export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<typeof __esri.geodesicBufferOperator> {
|
|
10092
10411
|
if (isAMD) {
|
|
10093
10412
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -10096,6 +10415,22 @@ export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<t
|
|
|
10096
10415
|
return isDefaultModule(module) ? module.default : module;
|
|
10097
10416
|
}
|
|
10098
10417
|
|
|
10418
|
+
export async function importGeometryOperatorsGeodesicProximityOperator(): Promise<typeof __esri.geodesicProximityOperator> {
|
|
10419
|
+
if (isAMD) {
|
|
10420
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
10421
|
+
}
|
|
10422
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
10423
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10424
|
+
}
|
|
10425
|
+
|
|
10426
|
+
export async function importGeometryOperatorsGeodeticAreaOperator(): Promise<typeof __esri.geodeticAreaOperator> {
|
|
10427
|
+
if (isAMD) {
|
|
10428
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
10429
|
+
}
|
|
10430
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
10431
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10432
|
+
}
|
|
10433
|
+
|
|
10099
10434
|
export async function importGeometryOperatorsGeodeticDensifyOperator(): Promise<typeof __esri.geodeticDensifyOperator> {
|
|
10100
10435
|
if (isAMD) {
|
|
10101
10436
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -10112,11 +10447,27 @@ export async function importGeometryOperatorsGeodeticDistanceOperator(): Promise
|
|
|
10112
10447
|
return isDefaultModule(module) ? module.default : module;
|
|
10113
10448
|
}
|
|
10114
10449
|
|
|
10115
|
-
export async function
|
|
10450
|
+
export async function importGeometryOperatorsGeodeticLengthOperator(): Promise<typeof __esri.geodeticLengthOperator> {
|
|
10116
10451
|
if (isAMD) {
|
|
10117
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10452
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
10118
10453
|
}
|
|
10119
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10454
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10455
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10456
|
+
}
|
|
10457
|
+
|
|
10458
|
+
export async function importGeometryOperatorsGraphicBufferOperator(): Promise<typeof __esri.graphicBufferOperator> {
|
|
10459
|
+
if (isAMD) {
|
|
10460
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
10461
|
+
}
|
|
10462
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
10463
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10464
|
+
}
|
|
10465
|
+
|
|
10466
|
+
export async function importGeometryOperatorsIntegrateOperator(): Promise<typeof __esri.integrateOperator> {
|
|
10467
|
+
if (isAMD) {
|
|
10468
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
10469
|
+
}
|
|
10470
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
10120
10471
|
return isDefaultModule(module) ? module.default : module;
|
|
10121
10472
|
}
|
|
10122
10473
|
|
|
@@ -10136,6 +10487,70 @@ export async function importGeometryOperatorsIntersectsOperator(): Promise<typeo
|
|
|
10136
10487
|
return isDefaultModule(module) ? module.default : module;
|
|
10137
10488
|
}
|
|
10138
10489
|
|
|
10490
|
+
export async function importGeometryOperatorsIsNearOperator(): Promise<typeof __esri.isNearOperator> {
|
|
10491
|
+
if (isAMD) {
|
|
10492
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
10493
|
+
}
|
|
10494
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
10495
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10496
|
+
}
|
|
10497
|
+
|
|
10498
|
+
export async function importGeometryOperatorsLabelPointOperator(): Promise<typeof __esri.labelPointOperator> {
|
|
10499
|
+
if (isAMD) {
|
|
10500
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
10501
|
+
}
|
|
10502
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
10503
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10504
|
+
}
|
|
10505
|
+
|
|
10506
|
+
export async function importGeometryOperatorsLengthOperator(): Promise<typeof __esri.lengthOperator> {
|
|
10507
|
+
if (isAMD) {
|
|
10508
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
10509
|
+
}
|
|
10510
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
10511
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10512
|
+
}
|
|
10513
|
+
|
|
10514
|
+
export async function importGeometryOperatorsLinesToPolygonsOperator(): Promise<typeof __esri.linesToPolygonsOperator> {
|
|
10515
|
+
if (isAMD) {
|
|
10516
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
10517
|
+
}
|
|
10518
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
10519
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
export async function importGeometryOperatorsLocateBetweenOperator(): Promise<typeof __esri.locateBetweenOperator> {
|
|
10523
|
+
if (isAMD) {
|
|
10524
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
10525
|
+
}
|
|
10526
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
10527
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10530
|
+
export async function importGeometryOperatorsMinimumBoundingCircleOperator(): Promise<typeof __esri.minimumBoundingCircleOperator> {
|
|
10531
|
+
if (isAMD) {
|
|
10532
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
10533
|
+
}
|
|
10534
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
10535
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10536
|
+
}
|
|
10537
|
+
|
|
10538
|
+
export async function importGeometryOperatorsMultiPartToSinglePartOperator(): Promise<typeof __esri.multiPartToSinglePartOperator> {
|
|
10539
|
+
if (isAMD) {
|
|
10540
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
10541
|
+
}
|
|
10542
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
10543
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10544
|
+
}
|
|
10545
|
+
|
|
10546
|
+
export async function importGeometryOperatorsOffsetOperator(): Promise<typeof __esri.offsetOperator> {
|
|
10547
|
+
if (isAMD) {
|
|
10548
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
10549
|
+
}
|
|
10550
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
10551
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10552
|
+
}
|
|
10553
|
+
|
|
10139
10554
|
export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof __esri.overlapsOperator> {
|
|
10140
10555
|
if (isAMD) {
|
|
10141
10556
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -10144,6 +10559,22 @@ export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof
|
|
|
10144
10559
|
return isDefaultModule(module) ? module.default : module;
|
|
10145
10560
|
}
|
|
10146
10561
|
|
|
10562
|
+
export async function importGeometryOperatorsPolygonOverlayOperator(): Promise<typeof __esri.polygonOverlayOperator> {
|
|
10563
|
+
if (isAMD) {
|
|
10564
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
10565
|
+
}
|
|
10566
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
10567
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10570
|
+
export async function importGeometryOperatorsPolygonSlicerOperator(): Promise<typeof __esri.polygonSlicerOperator> {
|
|
10571
|
+
if (isAMD) {
|
|
10572
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
10573
|
+
}
|
|
10574
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
10575
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10576
|
+
}
|
|
10577
|
+
|
|
10147
10578
|
export async function importGeometryOperatorsProximityOperator(): Promise<typeof __esri.proximityOperator> {
|
|
10148
10579
|
if (isAMD) {
|
|
10149
10580
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -10160,6 +10591,14 @@ export async function importGeometryOperatorsRelateOperator(): Promise<typeof __
|
|
|
10160
10591
|
return isDefaultModule(module) ? module.default : module;
|
|
10161
10592
|
}
|
|
10162
10593
|
|
|
10594
|
+
export async function importGeometryOperatorsReshapeOperator(): Promise<typeof __esri.reshapeOperator> {
|
|
10595
|
+
if (isAMD) {
|
|
10596
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
10597
|
+
}
|
|
10598
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
10599
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10600
|
+
}
|
|
10601
|
+
|
|
10163
10602
|
export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof __esri.simplifyOperator> {
|
|
10164
10603
|
if (isAMD) {
|
|
10165
10604
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -10168,6 +10607,14 @@ export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof
|
|
|
10168
10607
|
return isDefaultModule(module) ? module.default : module;
|
|
10169
10608
|
}
|
|
10170
10609
|
|
|
10610
|
+
export async function importGeometryOperatorsSymmetricDifferenceOperator(): Promise<typeof __esri.symmetricDifferenceOperator> {
|
|
10611
|
+
if (isAMD) {
|
|
10612
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
10613
|
+
}
|
|
10614
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
10615
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10616
|
+
}
|
|
10617
|
+
|
|
10171
10618
|
export async function importGeometryOperatorsTouchesOperator(): Promise<typeof __esri.touchesOperator> {
|
|
10172
10619
|
if (isAMD) {
|
|
10173
10620
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -10256,6 +10703,22 @@ export async function importLayersCatalogCatalogUtils(): Promise<typeof __esri.c
|
|
|
10256
10703
|
return isDefaultModule(module) ? module.default : module;
|
|
10257
10704
|
}
|
|
10258
10705
|
|
|
10706
|
+
export async function importLayersKnowledgeGraphCypherUtils(): Promise<typeof __esri.cypherUtils> {
|
|
10707
|
+
if (isAMD) {
|
|
10708
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
10709
|
+
}
|
|
10710
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
10711
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10712
|
+
}
|
|
10713
|
+
|
|
10714
|
+
export async function importLayersKnowledgeGraphSupportUtils(): Promise<typeof __esri.supportUtils> {
|
|
10715
|
+
if (isAMD) {
|
|
10716
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
10717
|
+
}
|
|
10718
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
10719
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10720
|
+
}
|
|
10721
|
+
|
|
10259
10722
|
export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils> {
|
|
10260
10723
|
if (isAMD) {
|
|
10261
10724
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -10264,6 +10727,30 @@ export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils>
|
|
|
10264
10727
|
return isDefaultModule(module) ? module.default : module;
|
|
10265
10728
|
}
|
|
10266
10729
|
|
|
10730
|
+
export async function importLayersOgcWcsUtils(): Promise<typeof __esri.wcsUtils> {
|
|
10731
|
+
if (isAMD) {
|
|
10732
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
10733
|
+
}
|
|
10734
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
10735
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10736
|
+
}
|
|
10737
|
+
|
|
10738
|
+
export async function importLayersOrientedImageryTransformationsWorldToImage(): Promise<typeof __esri.worldToImage> {
|
|
10739
|
+
if (isAMD) {
|
|
10740
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
10741
|
+
}
|
|
10742
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
10743
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10746
|
+
export async function importLayersOrientedImageryTransformationsImageToWorld(): Promise<typeof __esri.imageToWorld> {
|
|
10747
|
+
if (isAMD) {
|
|
10748
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
10749
|
+
}
|
|
10750
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
10751
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10267
10754
|
export async function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils> {
|
|
10268
10755
|
if (isAMD) {
|
|
10269
10756
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -10680,7 +11167,7 @@ export async function importSmartMappingRasterSupportColorRamps(): Promise<typeo
|
|
|
10680
11167
|
return isDefaultModule(module) ? module.default : module;
|
|
10681
11168
|
}
|
|
10682
11169
|
|
|
10683
|
-
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.
|
|
11170
|
+
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.rasterSupportUtils> {
|
|
10684
11171
|
if (isAMD) {
|
|
10685
11172
|
return await window.$arcgis.import("esri/smartMapping/raster/support/utils");
|
|
10686
11173
|
}
|
|
@@ -10776,6 +11263,14 @@ export async function importSmartMappingRenderersUnivariateColorSize(): Promise<
|
|
|
10776
11263
|
return isDefaultModule(module) ? module.default : module;
|
|
10777
11264
|
}
|
|
10778
11265
|
|
|
11266
|
+
export async function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils> {
|
|
11267
|
+
if (isAMD) {
|
|
11268
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
11269
|
+
}
|
|
11270
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
11271
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11272
|
+
}
|
|
11273
|
+
|
|
10779
11274
|
export async function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks> {
|
|
10780
11275
|
if (isAMD) {
|
|
10781
11276
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -11016,14 +11511,6 @@ export async function importVersionManagementVersionAdaptersUtils(): Promise<typ
|
|
|
11016
11511
|
return isDefaultModule(module) ? module.default : module;
|
|
11017
11512
|
}
|
|
11018
11513
|
|
|
11019
|
-
export async function importViews3dExternalRenderers(): Promise<typeof __esri.externalRenderers> {
|
|
11020
|
-
if (isAMD) {
|
|
11021
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
11022
|
-
}
|
|
11023
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
11024
|
-
return isDefaultModule(module) ? module.default : module;
|
|
11025
|
-
}
|
|
11026
|
-
|
|
11027
11514
|
export async function importViews3dWebglManagedFBO(): Promise<typeof __esri.ManagedFBO> {
|
|
11028
11515
|
if (isAMD) {
|
|
11029
11516
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -11088,6 +11575,14 @@ export async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel
|
|
|
11088
11575
|
return isDefaultModule(module) ? module.default : module;
|
|
11089
11576
|
}
|
|
11090
11577
|
|
|
11578
|
+
export async function importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel(): Promise<typeof __esri.FeatureUtilityNetworkAssociationsViewModel> {
|
|
11579
|
+
if (isAMD) {
|
|
11580
|
+
return await window.$arcgis.import("esri/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel");
|
|
11581
|
+
}
|
|
11582
|
+
const module = await import("@arcgis/core/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel.js");
|
|
11583
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11584
|
+
}
|
|
11585
|
+
|
|
11091
11586
|
export async function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils> {
|
|
11092
11587
|
if (isAMD) {
|
|
11093
11588
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11104,138 +11599,146 @@ export async function importWidgetsSupportWidget(): Promise<typeof __esri.widget
|
|
|
11104
11599
|
return isDefaultModule(module) ? module.default : module;
|
|
11105
11600
|
}
|
|
11106
11601
|
|
|
11107
|
-
export async function
|
|
11602
|
+
export async function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils> {
|
|
11108
11603
|
if (isAMD) {
|
|
11109
|
-
return await window.$arcgis.import("esri/applications/
|
|
11604
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
11110
11605
|
}
|
|
11111
|
-
const module = await import("@arcgis/core/applications/
|
|
11606
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
11112
11607
|
return isDefaultModule(module) ? module.default : module;
|
|
11113
11608
|
}
|
|
11114
11609
|
|
|
11115
|
-
export async function
|
|
11610
|
+
export async function importApplicationsComponentsCollectionFlattener(): Promise<typeof __esri.CollectionFlattener> {
|
|
11116
11611
|
if (isAMD) {
|
|
11117
|
-
return await window.$arcgis.import("esri/applications/
|
|
11612
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
11118
11613
|
}
|
|
11119
|
-
const module = await import("@arcgis/core/applications/
|
|
11614
|
+
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
11120
11615
|
return isDefaultModule(module) ? module.default : module;
|
|
11121
11616
|
}
|
|
11122
11617
|
|
|
11123
|
-
export async function
|
|
11618
|
+
export async function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils> {
|
|
11124
11619
|
if (isAMD) {
|
|
11125
|
-
return await window.$arcgis.import("esri/applications/
|
|
11620
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
11126
11621
|
}
|
|
11127
|
-
const module = await import("@arcgis/core/applications/
|
|
11622
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
11128
11623
|
return isDefaultModule(module) ? module.default : module;
|
|
11129
11624
|
}
|
|
11130
11625
|
|
|
11131
|
-
export async function
|
|
11626
|
+
export async function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils> {
|
|
11132
11627
|
if (isAMD) {
|
|
11133
|
-
return await window.$arcgis.import("esri/applications/
|
|
11628
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
11134
11629
|
}
|
|
11135
|
-
const module = await import("@arcgis/core/applications/
|
|
11630
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
11136
11631
|
return isDefaultModule(module) ? module.default : module;
|
|
11137
11632
|
}
|
|
11138
11633
|
|
|
11139
|
-
export async function
|
|
11634
|
+
export async function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits> {
|
|
11140
11635
|
if (isAMD) {
|
|
11141
|
-
return await window.$arcgis.import("esri/applications/
|
|
11636
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
11142
11637
|
}
|
|
11143
|
-
const module = await import("@arcgis/core/applications/
|
|
11638
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
11144
11639
|
return isDefaultModule(module) ? module.default : module;
|
|
11145
11640
|
}
|
|
11146
11641
|
|
|
11147
|
-
export async function
|
|
11642
|
+
export async function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils> {
|
|
11148
11643
|
if (isAMD) {
|
|
11149
|
-
return await window.$arcgis.import("esri/applications/
|
|
11644
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
11150
11645
|
}
|
|
11151
|
-
const module = await import("@arcgis/core/applications/
|
|
11646
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
11152
11647
|
return isDefaultModule(module) ? module.default : module;
|
|
11153
11648
|
}
|
|
11154
11649
|
|
|
11155
|
-
export async function
|
|
11650
|
+
export async function importApplicationsComponentsLayerOriginUtils(): Promise<typeof __esri.layerOriginUtils> {
|
|
11156
11651
|
if (isAMD) {
|
|
11157
|
-
return await window.$arcgis.import("esri/applications/
|
|
11652
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
11158
11653
|
}
|
|
11159
|
-
const module = await import("@arcgis/core/applications/
|
|
11654
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
11160
11655
|
return isDefaultModule(module) ? module.default : module;
|
|
11161
11656
|
}
|
|
11162
11657
|
|
|
11163
|
-
export async function
|
|
11658
|
+
export async function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils> {
|
|
11164
11659
|
if (isAMD) {
|
|
11165
|
-
return await window.$arcgis.import("esri/applications/
|
|
11660
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
11166
11661
|
}
|
|
11167
|
-
const module = await import("@arcgis/core/applications/
|
|
11662
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
11168
11663
|
return isDefaultModule(module) ? module.default : module;
|
|
11169
11664
|
}
|
|
11170
11665
|
|
|
11171
|
-
export async function
|
|
11666
|
+
export async function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D> {
|
|
11172
11667
|
if (isAMD) {
|
|
11173
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11668
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
11174
11669
|
}
|
|
11175
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11670
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
11176
11671
|
return isDefaultModule(module) ? module.default : module;
|
|
11177
11672
|
}
|
|
11178
11673
|
|
|
11179
|
-
export async function
|
|
11674
|
+
export async function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils> {
|
|
11180
11675
|
if (isAMD) {
|
|
11181
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11676
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
11182
11677
|
}
|
|
11183
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11678
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
11184
11679
|
return isDefaultModule(module) ? module.default : module;
|
|
11185
11680
|
}
|
|
11186
11681
|
|
|
11187
|
-
export async function
|
|
11682
|
+
export async function importApplicationsComponentsSelectionOperation(): Promise<typeof __esri.SelectionOperation> {
|
|
11188
11683
|
if (isAMD) {
|
|
11189
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11684
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
11190
11685
|
}
|
|
11191
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11686
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
11192
11687
|
return isDefaultModule(module) ? module.default : module;
|
|
11193
11688
|
}
|
|
11194
11689
|
|
|
11195
|
-
export async function
|
|
11690
|
+
export async function importApplicationsComponentsSketchTooltipControls(): Promise<typeof __esri.SketchTooltipControls> {
|
|
11196
11691
|
if (isAMD) {
|
|
11197
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11692
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
11198
11693
|
}
|
|
11199
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11694
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
11200
11695
|
return isDefaultModule(module) ? module.default : module;
|
|
11201
11696
|
}
|
|
11202
11697
|
|
|
11203
|
-
export async function
|
|
11698
|
+
export async function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils> {
|
|
11204
11699
|
if (isAMD) {
|
|
11205
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11700
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
11206
11701
|
}
|
|
11207
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11702
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
11208
11703
|
return isDefaultModule(module) ? module.default : module;
|
|
11209
11704
|
}
|
|
11210
11705
|
|
|
11211
|
-
export async function
|
|
11706
|
+
export async function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils> {
|
|
11212
11707
|
if (isAMD) {
|
|
11213
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11708
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
11214
11709
|
}
|
|
11215
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11710
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
11216
11711
|
return isDefaultModule(module) ? module.default : module;
|
|
11217
11712
|
}
|
|
11218
11713
|
|
|
11219
|
-
export async function
|
|
11714
|
+
export async function importApplicationsComponentsWebStyleSymbolUtils(): Promise<typeof __esri.webStyleSymbolUtils> {
|
|
11220
11715
|
if (isAMD) {
|
|
11221
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11716
|
+
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
11222
11717
|
}
|
|
11223
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11718
|
+
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
11224
11719
|
return isDefaultModule(module) ? module.default : module;
|
|
11225
11720
|
}
|
|
11226
11721
|
|
|
11227
|
-
export async function
|
|
11722
|
+
export async function importApplicationsExperienceBuilderSketchUtils(): Promise<typeof __esri.sketchUtils> {
|
|
11228
11723
|
if (isAMD) {
|
|
11229
|
-
return await window.$arcgis.import("esri/applications/
|
|
11724
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
11230
11725
|
}
|
|
11231
|
-
const module = await import("@arcgis/core/applications/
|
|
11726
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
11232
11727
|
return isDefaultModule(module) ? module.default : module;
|
|
11233
11728
|
}
|
|
11234
11729
|
|
|
11235
|
-
export async function
|
|
11730
|
+
export async function importApplicationsSceneViewerDevEnvironmentUtils(): Promise<typeof __esri.devEnvironmentUtils> {
|
|
11236
11731
|
if (isAMD) {
|
|
11237
|
-
return await window.$arcgis.import("esri/applications/
|
|
11732
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
11238
11733
|
}
|
|
11239
|
-
const module = await import("@arcgis/core/applications/
|
|
11734
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
11735
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11736
|
+
}
|
|
11737
|
+
|
|
11738
|
+
export async function importApplicationsWebEditorSketchUtils(): Promise<typeof __esri.WebEditorSketchUtils> {
|
|
11739
|
+
if (isAMD) {
|
|
11740
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
11741
|
+
}
|
|
11742
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
11240
11743
|
return isDefaultModule(module) ? module.default : module;
|
|
11241
11744
|
}
|