@arcgis/core-adapter 4.32.0-next.5 → 4.32.0-next.51
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 +891 -198
- package/dist/index.d.cts +128 -42
- package/dist/index.d.ts +128 -42
- package/dist/index.js +794 -187
- package/package.json +7 -28
- package/.turbo/turbo-build.log +0 -3
- package/scripts/generator.ts +0 -419
- package/scripts/update-adapter-typings.ts +0 -71
- package/src/index.ts +0 -11241
- package/support/api-reference-esm-imports.json +0 -925
- package/support/arcgis.d.ts +0 -143032
- package/tsconfig.json +0 -5
- package/tsup.config.ts +0 -12
package/dist/index.js
CHANGED
|
@@ -622,6 +622,17 @@ async function newGeometrySpatialReference(properties) {
|
|
|
622
622
|
const ModConstructor = await importGeometrySpatialReference();
|
|
623
623
|
return new ModConstructor(properties);
|
|
624
624
|
}
|
|
625
|
+
async function importGeometryOperatorsSupportTransformation() {
|
|
626
|
+
if (isAMD) {
|
|
627
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
628
|
+
}
|
|
629
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
630
|
+
return isDefaultModule(module) ? module.default : module;
|
|
631
|
+
}
|
|
632
|
+
async function newGeometryOperatorsSupportTransformation() {
|
|
633
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
634
|
+
return new ModConstructor();
|
|
635
|
+
}
|
|
625
636
|
async function importGeometrySupportGeographicTransformation() {
|
|
626
637
|
if (isAMD) {
|
|
627
638
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -1095,6 +1106,17 @@ async function newLayersLineOfSightLayer(properties) {
|
|
|
1095
1106
|
const ModConstructor = await importLayersLineOfSightLayer();
|
|
1096
1107
|
return new ModConstructor(properties);
|
|
1097
1108
|
}
|
|
1109
|
+
async function importLayersLinkChartLayer() {
|
|
1110
|
+
if (isAMD) {
|
|
1111
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1112
|
+
}
|
|
1113
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1114
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1115
|
+
}
|
|
1116
|
+
async function newLayersLinkChartLayer(properties) {
|
|
1117
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1118
|
+
return new ModConstructor(properties);
|
|
1119
|
+
}
|
|
1098
1120
|
async function importLayersMapImageLayer() {
|
|
1099
1121
|
if (isAMD) {
|
|
1100
1122
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -1645,17 +1667,6 @@ async function newLayersSupportPublishingInfo(properties) {
|
|
|
1645
1667
|
const ModConstructor = await importLayersSupportPublishingInfo();
|
|
1646
1668
|
return new ModConstructor(properties);
|
|
1647
1669
|
}
|
|
1648
|
-
async function importLayersSupportSceneFilter() {
|
|
1649
|
-
if (isAMD) {
|
|
1650
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1651
|
-
}
|
|
1652
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1653
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1654
|
-
}
|
|
1655
|
-
async function newLayersSupportSceneFilter(properties) {
|
|
1656
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1657
|
-
return new ModConstructor(properties);
|
|
1658
|
-
}
|
|
1659
1670
|
async function importLayersSupportRangeDomain() {
|
|
1660
1671
|
if (isAMD) {
|
|
1661
1672
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -1744,6 +1755,17 @@ async function newLayersSupportRouteSymbols(properties) {
|
|
|
1744
1755
|
const ModConstructor = await importLayersSupportRouteSymbols();
|
|
1745
1756
|
return new ModConstructor(properties);
|
|
1746
1757
|
}
|
|
1758
|
+
async function importLayersSupportSceneFilter() {
|
|
1759
|
+
if (isAMD) {
|
|
1760
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1761
|
+
}
|
|
1762
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1763
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1764
|
+
}
|
|
1765
|
+
async function newLayersSupportSceneFilter(properties) {
|
|
1766
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1767
|
+
return new ModConstructor(properties);
|
|
1768
|
+
}
|
|
1747
1769
|
async function importLayersSupportSceneModification() {
|
|
1748
1770
|
if (isAMD) {
|
|
1749
1771
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2019,26 +2041,26 @@ async function newLayersUnsupportedLayer(properties) {
|
|
|
2019
2041
|
const ModConstructor = await importLayersUnsupportedLayer();
|
|
2020
2042
|
return new ModConstructor(properties);
|
|
2021
2043
|
}
|
|
2022
|
-
async function
|
|
2044
|
+
async function importLayersVectorTileLayer() {
|
|
2023
2045
|
if (isAMD) {
|
|
2024
|
-
return await window.$arcgis.import("esri/layers/
|
|
2046
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2025
2047
|
}
|
|
2026
|
-
const module = await import("@arcgis/core/layers/
|
|
2048
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2027
2049
|
return isDefaultModule(module) ? module.default : module;
|
|
2028
2050
|
}
|
|
2029
|
-
async function
|
|
2030
|
-
const ModConstructor = await
|
|
2051
|
+
async function newLayersVectorTileLayer(properties) {
|
|
2052
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2031
2053
|
return new ModConstructor(properties);
|
|
2032
2054
|
}
|
|
2033
|
-
async function
|
|
2055
|
+
async function importLayersVideoLayer() {
|
|
2034
2056
|
if (isAMD) {
|
|
2035
|
-
return await window.$arcgis.import("esri/layers/
|
|
2057
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2036
2058
|
}
|
|
2037
|
-
const module = await import("@arcgis/core/layers/
|
|
2059
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2038
2060
|
return isDefaultModule(module) ? module.default : module;
|
|
2039
2061
|
}
|
|
2040
|
-
async function
|
|
2041
|
-
const ModConstructor = await
|
|
2062
|
+
async function newLayersVideoLayer(properties) {
|
|
2063
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2042
2064
|
return new ModConstructor(properties);
|
|
2043
2065
|
}
|
|
2044
2066
|
async function importLayersVoxelLayer() {
|
|
@@ -2107,6 +2129,61 @@ async function newLayersWMTSLayer(properties) {
|
|
|
2107
2129
|
const ModConstructor = await importLayersWMTSLayer();
|
|
2108
2130
|
return new ModConstructor(properties);
|
|
2109
2131
|
}
|
|
2132
|
+
async function importLinkChartChronologicalLayoutSettings() {
|
|
2133
|
+
if (isAMD) {
|
|
2134
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2135
|
+
}
|
|
2136
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2137
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2138
|
+
}
|
|
2139
|
+
async function newLinkChartChronologicalLayoutSettings(properties) {
|
|
2140
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2141
|
+
return new ModConstructor(properties);
|
|
2142
|
+
}
|
|
2143
|
+
async function importLinkChartLayoutSettings() {
|
|
2144
|
+
if (isAMD) {
|
|
2145
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2146
|
+
}
|
|
2147
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2148
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2149
|
+
}
|
|
2150
|
+
async function newLinkChartLayoutSettings(properties) {
|
|
2151
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2152
|
+
return new ModConstructor(properties);
|
|
2153
|
+
}
|
|
2154
|
+
async function importLinkChartLinkChartProperties() {
|
|
2155
|
+
if (isAMD) {
|
|
2156
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2157
|
+
}
|
|
2158
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2159
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2160
|
+
}
|
|
2161
|
+
async function newLinkChartLinkChartProperties(properties) {
|
|
2162
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2163
|
+
return new ModConstructor(properties);
|
|
2164
|
+
}
|
|
2165
|
+
async function importLinkChartNonspatialDataDisplay() {
|
|
2166
|
+
if (isAMD) {
|
|
2167
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2168
|
+
}
|
|
2169
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2170
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2171
|
+
}
|
|
2172
|
+
async function newLinkChartNonspatialDataDisplay(properties) {
|
|
2173
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2174
|
+
return new ModConstructor(properties);
|
|
2175
|
+
}
|
|
2176
|
+
async function importLinkChartOrganicLayoutSettings() {
|
|
2177
|
+
if (isAMD) {
|
|
2178
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2179
|
+
}
|
|
2180
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2181
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2182
|
+
}
|
|
2183
|
+
async function newLinkChartOrganicLayoutSettings(properties) {
|
|
2184
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2185
|
+
return new ModConstructor(properties);
|
|
2186
|
+
}
|
|
2110
2187
|
async function importMap() {
|
|
2111
2188
|
if (isAMD) {
|
|
2112
2189
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -2734,6 +2811,17 @@ async function newRenderersRasterColormapRenderer(properties) {
|
|
|
2734
2811
|
const ModConstructor = await importRenderersRasterColormapRenderer();
|
|
2735
2812
|
return new ModConstructor(properties);
|
|
2736
2813
|
}
|
|
2814
|
+
async function importRenderersSupportRasterPresetRenderer() {
|
|
2815
|
+
if (isAMD) {
|
|
2816
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
2817
|
+
}
|
|
2818
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
2819
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2820
|
+
}
|
|
2821
|
+
async function newRenderersSupportRasterPresetRenderer(properties) {
|
|
2822
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
2823
|
+
return new ModConstructor(properties);
|
|
2824
|
+
}
|
|
2737
2825
|
async function importRenderersRasterShadedReliefRenderer() {
|
|
2738
2826
|
if (isAMD) {
|
|
2739
2827
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -3152,6 +3240,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3152
3240
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3153
3241
|
return new ModConstructor(properties);
|
|
3154
3242
|
}
|
|
3243
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3244
|
+
if (isAMD) {
|
|
3245
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3246
|
+
}
|
|
3247
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3248
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3249
|
+
}
|
|
3250
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3251
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3252
|
+
return new ModConstructor(properties);
|
|
3253
|
+
}
|
|
3155
3254
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3156
3255
|
if (isAMD) {
|
|
3157
3256
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3284,6 +3383,17 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3284
3383
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3285
3384
|
return new ModConstructor(properties);
|
|
3286
3385
|
}
|
|
3386
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3387
|
+
if (isAMD) {
|
|
3388
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3389
|
+
}
|
|
3390
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3391
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3392
|
+
}
|
|
3393
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3394
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3395
|
+
return new ModConstructor(properties);
|
|
3396
|
+
}
|
|
3287
3397
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3288
3398
|
if (isAMD) {
|
|
3289
3399
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3438,6 +3548,72 @@ async function newRestSupportAddressCandidate(properties) {
|
|
|
3438
3548
|
const ModConstructor = await importRestSupportAddressCandidate();
|
|
3439
3549
|
return new ModConstructor(properties);
|
|
3440
3550
|
}
|
|
3551
|
+
async function importRestSupportAttributeBinsQuery() {
|
|
3552
|
+
if (isAMD) {
|
|
3553
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
3554
|
+
}
|
|
3555
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsQuery.js");
|
|
3556
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3557
|
+
}
|
|
3558
|
+
async function newRestSupportAttributeBinsQuery(properties) {
|
|
3559
|
+
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
3560
|
+
return new ModConstructor(properties);
|
|
3561
|
+
}
|
|
3562
|
+
async function importRestSupportAutoIntervalBinParameters() {
|
|
3563
|
+
if (isAMD) {
|
|
3564
|
+
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
3565
|
+
}
|
|
3566
|
+
const module = await import("@arcgis/core/rest/support/AutoIntervalBinParameters.js");
|
|
3567
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3568
|
+
}
|
|
3569
|
+
async function newRestSupportAutoIntervalBinParameters(properties) {
|
|
3570
|
+
const ModConstructor = await importRestSupportAutoIntervalBinParameters();
|
|
3571
|
+
return new ModConstructor(properties);
|
|
3572
|
+
}
|
|
3573
|
+
async function importRestSupportFixedBoundariesBinParameters() {
|
|
3574
|
+
if (isAMD) {
|
|
3575
|
+
return await window.$arcgis.import("esri/rest/support/FixedBoundariesBinParameters");
|
|
3576
|
+
}
|
|
3577
|
+
const module = await import("@arcgis/core/rest/support/FixedBoundariesBinParameters.js");
|
|
3578
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3579
|
+
}
|
|
3580
|
+
async function newRestSupportFixedBoundariesBinParameters(properties) {
|
|
3581
|
+
const ModConstructor = await importRestSupportFixedBoundariesBinParameters();
|
|
3582
|
+
return new ModConstructor(properties);
|
|
3583
|
+
}
|
|
3584
|
+
async function importRestSupportFixedIntervalBinParameters() {
|
|
3585
|
+
if (isAMD) {
|
|
3586
|
+
return await window.$arcgis.import("esri/rest/support/FixedIntervalBinParameters");
|
|
3587
|
+
}
|
|
3588
|
+
const module = await import("@arcgis/core/rest/support/FixedIntervalBinParameters.js");
|
|
3589
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3590
|
+
}
|
|
3591
|
+
async function newRestSupportFixedIntervalBinParameters(properties) {
|
|
3592
|
+
const ModConstructor = await importRestSupportFixedIntervalBinParameters();
|
|
3593
|
+
return new ModConstructor(properties);
|
|
3594
|
+
}
|
|
3595
|
+
async function importRestSupportDateBinParameters() {
|
|
3596
|
+
if (isAMD) {
|
|
3597
|
+
return await window.$arcgis.import("esri/rest/support/DateBinParameters");
|
|
3598
|
+
}
|
|
3599
|
+
const module = await import("@arcgis/core/rest/support/DateBinParameters.js");
|
|
3600
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3601
|
+
}
|
|
3602
|
+
async function newRestSupportDateBinParameters(properties) {
|
|
3603
|
+
const ModConstructor = await importRestSupportDateBinParameters();
|
|
3604
|
+
return new ModConstructor(properties);
|
|
3605
|
+
}
|
|
3606
|
+
async function importRestSupportDateBinTimeInterval() {
|
|
3607
|
+
if (isAMD) {
|
|
3608
|
+
return await window.$arcgis.import("esri/rest/support/DateBinTimeInterval");
|
|
3609
|
+
}
|
|
3610
|
+
const module = await import("@arcgis/core/rest/support/DateBinTimeInterval.js");
|
|
3611
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3612
|
+
}
|
|
3613
|
+
async function newRestSupportDateBinTimeInterval(properties) {
|
|
3614
|
+
const ModConstructor = await importRestSupportDateBinTimeInterval();
|
|
3615
|
+
return new ModConstructor(properties);
|
|
3616
|
+
}
|
|
3441
3617
|
async function importRestSupportAlgorithmicColorRamp() {
|
|
3442
3618
|
if (isAMD) {
|
|
3443
3619
|
return await window.$arcgis.import("esri/rest/support/AlgorithmicColorRamp");
|
|
@@ -3482,6 +3658,28 @@ async function newRestSupportAttachmentQuery(properties) {
|
|
|
3482
3658
|
const ModConstructor = await importRestSupportAttachmentQuery();
|
|
3483
3659
|
return new ModConstructor(properties);
|
|
3484
3660
|
}
|
|
3661
|
+
async function importRestSupportBaseImageMeasureParameters() {
|
|
3662
|
+
if (isAMD) {
|
|
3663
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureParameters");
|
|
3664
|
+
}
|
|
3665
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureParameters.js");
|
|
3666
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3667
|
+
}
|
|
3668
|
+
async function newRestSupportBaseImageMeasureParameters(properties) {
|
|
3669
|
+
const ModConstructor = await importRestSupportBaseImageMeasureParameters();
|
|
3670
|
+
return new ModConstructor(properties);
|
|
3671
|
+
}
|
|
3672
|
+
async function importRestSupportBaseImageMeasureResult() {
|
|
3673
|
+
if (isAMD) {
|
|
3674
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureResult");
|
|
3675
|
+
}
|
|
3676
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureResult.js");
|
|
3677
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3678
|
+
}
|
|
3679
|
+
async function newRestSupportBaseImageMeasureResult(properties) {
|
|
3680
|
+
const ModConstructor = await importRestSupportBaseImageMeasureResult();
|
|
3681
|
+
return new ModConstructor(properties);
|
|
3682
|
+
}
|
|
3485
3683
|
async function importRestSupportBufferParameters() {
|
|
3486
3684
|
if (isAMD) {
|
|
3487
3685
|
return await window.$arcgis.import("esri/rest/support/BufferParameters");
|
|
@@ -3812,50 +4010,6 @@ async function newRestSupportImageBoundaryResult(properties) {
|
|
|
3812
4010
|
const ModConstructor = await importRestSupportImageBoundaryResult();
|
|
3813
4011
|
return new ModConstructor(properties);
|
|
3814
4012
|
}
|
|
3815
|
-
async function importRestSupportImageHistogramParameters() {
|
|
3816
|
-
if (isAMD) {
|
|
3817
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
3818
|
-
}
|
|
3819
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
3820
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3821
|
-
}
|
|
3822
|
-
async function newRestSupportImageHistogramParameters(properties) {
|
|
3823
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
3824
|
-
return new ModConstructor(properties);
|
|
3825
|
-
}
|
|
3826
|
-
async function importRestSupportImageIdentifyParameters() {
|
|
3827
|
-
if (isAMD) {
|
|
3828
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
3829
|
-
}
|
|
3830
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
3831
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3832
|
-
}
|
|
3833
|
-
async function newRestSupportImageIdentifyParameters(properties) {
|
|
3834
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
3835
|
-
return new ModConstructor(properties);
|
|
3836
|
-
}
|
|
3837
|
-
async function importRestSupportImageIdentifyResult() {
|
|
3838
|
-
if (isAMD) {
|
|
3839
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
3840
|
-
}
|
|
3841
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
3842
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
-
}
|
|
3844
|
-
async function newRestSupportImageIdentifyResult(properties) {
|
|
3845
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
3846
|
-
return new ModConstructor(properties);
|
|
3847
|
-
}
|
|
3848
|
-
async function importRestSupportImageInspectionInfo() {
|
|
3849
|
-
if (isAMD) {
|
|
3850
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
3851
|
-
}
|
|
3852
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
3853
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3854
|
-
}
|
|
3855
|
-
async function newRestSupportImageInspectionInfo(properties) {
|
|
3856
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
3857
|
-
return new ModConstructor(properties);
|
|
3858
|
-
}
|
|
3859
4013
|
async function importRestSupportImageDistanceParameters() {
|
|
3860
4014
|
if (isAMD) {
|
|
3861
4015
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -3933,6 +4087,50 @@ async function newRestSupportImageHeightResult(properties) {
|
|
|
3933
4087
|
const ModConstructor = await importRestSupportImageHeightResult();
|
|
3934
4088
|
return new ModConstructor(properties);
|
|
3935
4089
|
}
|
|
4090
|
+
async function importRestSupportImageHistogramParameters() {
|
|
4091
|
+
if (isAMD) {
|
|
4092
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4093
|
+
}
|
|
4094
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4095
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4096
|
+
}
|
|
4097
|
+
async function newRestSupportImageHistogramParameters(properties) {
|
|
4098
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4099
|
+
return new ModConstructor(properties);
|
|
4100
|
+
}
|
|
4101
|
+
async function importRestSupportImageIdentifyParameters() {
|
|
4102
|
+
if (isAMD) {
|
|
4103
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4104
|
+
}
|
|
4105
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4106
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4107
|
+
}
|
|
4108
|
+
async function newRestSupportImageIdentifyParameters(properties) {
|
|
4109
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4110
|
+
return new ModConstructor(properties);
|
|
4111
|
+
}
|
|
4112
|
+
async function importRestSupportImageIdentifyResult() {
|
|
4113
|
+
if (isAMD) {
|
|
4114
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4115
|
+
}
|
|
4116
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4117
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4118
|
+
}
|
|
4119
|
+
async function newRestSupportImageIdentifyResult(properties) {
|
|
4120
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4121
|
+
return new ModConstructor(properties);
|
|
4122
|
+
}
|
|
4123
|
+
async function importRestSupportImageInspectionInfo() {
|
|
4124
|
+
if (isAMD) {
|
|
4125
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4126
|
+
}
|
|
4127
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4128
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4129
|
+
}
|
|
4130
|
+
async function newRestSupportImageInspectionInfo(properties) {
|
|
4131
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4132
|
+
return new ModConstructor(properties);
|
|
4133
|
+
}
|
|
3936
4134
|
async function importRestSupportImageParameters() {
|
|
3937
4135
|
if (isAMD) {
|
|
3938
4136
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -4021,17 +4219,6 @@ async function newRestSupportImageSampleResult(properties) {
|
|
|
4021
4219
|
const ModConstructor = await importRestSupportImageSampleResult();
|
|
4022
4220
|
return new ModConstructor(properties);
|
|
4023
4221
|
}
|
|
4024
|
-
async function importRestSupportImageToMapParameters() {
|
|
4025
|
-
if (isAMD) {
|
|
4026
|
-
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4027
|
-
}
|
|
4028
|
-
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4029
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4030
|
-
}
|
|
4031
|
-
async function newRestSupportImageToMapParameters(properties) {
|
|
4032
|
-
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4033
|
-
return new ModConstructor(properties);
|
|
4034
|
-
}
|
|
4035
4222
|
async function importRestSupportImageToMapMultirayParameters() {
|
|
4036
4223
|
if (isAMD) {
|
|
4037
4224
|
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
@@ -4043,14 +4230,25 @@ async function newRestSupportImageToMapMultirayParameters(properties) {
|
|
|
4043
4230
|
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4044
4231
|
return new ModConstructor(properties);
|
|
4045
4232
|
}
|
|
4046
|
-
async function
|
|
4233
|
+
async function importRestSupportImageToMapParameters() {
|
|
4047
4234
|
if (isAMD) {
|
|
4048
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4235
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4049
4236
|
}
|
|
4050
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4237
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4051
4238
|
return isDefaultModule(module) ? module.default : module;
|
|
4052
4239
|
}
|
|
4053
|
-
async function
|
|
4240
|
+
async function newRestSupportImageToMapParameters(properties) {
|
|
4241
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4242
|
+
return new ModConstructor(properties);
|
|
4243
|
+
}
|
|
4244
|
+
async function importRestSupportImageUrlParameters() {
|
|
4245
|
+
if (isAMD) {
|
|
4246
|
+
return await window.$arcgis.import("esri/rest/support/ImageUrlParameters");
|
|
4247
|
+
}
|
|
4248
|
+
const module = await import("@arcgis/core/rest/support/ImageUrlParameters.js");
|
|
4249
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4250
|
+
}
|
|
4251
|
+
async function newRestSupportImageUrlParameters(properties) {
|
|
4054
4252
|
const ModConstructor = await importRestSupportImageUrlParameters();
|
|
4055
4253
|
return new ModConstructor(properties);
|
|
4056
4254
|
}
|
|
@@ -4131,26 +4329,26 @@ async function newRestSupportMeasureAreaFromImageResult(properties) {
|
|
|
4131
4329
|
const ModConstructor = await importRestSupportMeasureAreaFromImageResult();
|
|
4132
4330
|
return new ModConstructor(properties);
|
|
4133
4331
|
}
|
|
4134
|
-
async function
|
|
4332
|
+
async function importRestSupportMeasureFromImageParameters() {
|
|
4135
4333
|
if (isAMD) {
|
|
4136
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4334
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
4137
4335
|
}
|
|
4138
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4336
|
+
const module = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
4139
4337
|
return isDefaultModule(module) ? module.default : module;
|
|
4140
4338
|
}
|
|
4141
|
-
async function
|
|
4142
|
-
const ModConstructor = await
|
|
4339
|
+
async function newRestSupportMeasureFromImageParameters(properties) {
|
|
4340
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4143
4341
|
return new ModConstructor(properties);
|
|
4144
4342
|
}
|
|
4145
|
-
async function
|
|
4343
|
+
async function importRestSupportMeasureLengthFromImageResult() {
|
|
4146
4344
|
if (isAMD) {
|
|
4147
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4345
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4148
4346
|
}
|
|
4149
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4347
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4150
4348
|
return isDefaultModule(module) ? module.default : module;
|
|
4151
4349
|
}
|
|
4152
|
-
async function
|
|
4153
|
-
const ModConstructor = await
|
|
4350
|
+
async function newRestSupportMeasureLengthFromImageResult(properties) {
|
|
4351
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4154
4352
|
return new ModConstructor(properties);
|
|
4155
4353
|
}
|
|
4156
4354
|
async function importRestSupportMultipartColorRamp() {
|
|
@@ -5165,6 +5363,17 @@ async function newViews2dViewState(properties) {
|
|
|
5165
5363
|
const ModConstructor = await importViews2dViewState();
|
|
5166
5364
|
return new ModConstructor(properties);
|
|
5167
5365
|
}
|
|
5366
|
+
async function importViews2dSupportHighlightGroup() {
|
|
5367
|
+
if (isAMD) {
|
|
5368
|
+
return await window.$arcgis.import("esri/views/2d/support/HighlightGroup");
|
|
5369
|
+
}
|
|
5370
|
+
const module = await import("@arcgis/core/views/2d/support/HighlightGroup.js");
|
|
5371
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5372
|
+
}
|
|
5373
|
+
async function newViews2dSupportHighlightGroup(properties) {
|
|
5374
|
+
const ModConstructor = await importViews2dSupportHighlightGroup();
|
|
5375
|
+
return new ModConstructor(properties);
|
|
5376
|
+
}
|
|
5168
5377
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5169
5378
|
if (isAMD) {
|
|
5170
5379
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5605,6 +5814,17 @@ async function newViewsLayersFeatureLayerView(properties) {
|
|
|
5605
5814
|
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
5606
5815
|
return new ModConstructor(properties);
|
|
5607
5816
|
}
|
|
5817
|
+
async function importViewsLayersGroupLayerView() {
|
|
5818
|
+
if (isAMD) {
|
|
5819
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
5820
|
+
}
|
|
5821
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
5822
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5823
|
+
}
|
|
5824
|
+
async function newViewsLayersGroupLayerView(properties) {
|
|
5825
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
5826
|
+
return new ModConstructor(properties);
|
|
5827
|
+
}
|
|
5608
5828
|
async function importViewsLayersImageryLayerView() {
|
|
5609
5829
|
if (isAMD) {
|
|
5610
5830
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -5682,6 +5902,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5682
5902
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5683
5903
|
return new ModConstructor(properties);
|
|
5684
5904
|
}
|
|
5905
|
+
async function importViewsLinkChartView() {
|
|
5906
|
+
if (isAMD) {
|
|
5907
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
5908
|
+
}
|
|
5909
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
5910
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5911
|
+
}
|
|
5912
|
+
async function newViewsLinkChartView(properties) {
|
|
5913
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
5914
|
+
return new ModConstructor(properties);
|
|
5915
|
+
}
|
|
5685
5916
|
async function importViewsMagnifier() {
|
|
5686
5917
|
if (isAMD) {
|
|
5687
5918
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -6012,6 +6243,17 @@ async function newWebDocument2D(properties) {
|
|
|
6012
6243
|
const ModConstructor = await importWebDocument2D();
|
|
6013
6244
|
return new ModConstructor(properties);
|
|
6014
6245
|
}
|
|
6246
|
+
async function importWebLinkChart() {
|
|
6247
|
+
if (isAMD) {
|
|
6248
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6249
|
+
}
|
|
6250
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6251
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6252
|
+
}
|
|
6253
|
+
async function newWebLinkChart(properties) {
|
|
6254
|
+
const ModConstructor = await importWebLinkChart();
|
|
6255
|
+
return new ModConstructor(properties);
|
|
6256
|
+
}
|
|
6015
6257
|
async function importWebMap() {
|
|
6016
6258
|
if (isAMD) {
|
|
6017
6259
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -6914,6 +7156,28 @@ async function newWidgetsFeatureFormRelationshipInput(properties) {
|
|
|
6914
7156
|
const ModConstructor = await importWidgetsFeatureFormRelationshipInput();
|
|
6915
7157
|
return new ModConstructor(properties);
|
|
6916
7158
|
}
|
|
7159
|
+
async function importWidgetsFeatureFormTextElementInput() {
|
|
7160
|
+
if (isAMD) {
|
|
7161
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
7162
|
+
}
|
|
7163
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
7164
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7165
|
+
}
|
|
7166
|
+
async function newWidgetsFeatureFormTextElementInput(properties) {
|
|
7167
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
7168
|
+
return new ModConstructor(properties);
|
|
7169
|
+
}
|
|
7170
|
+
async function importWidgetsFeatureFormUtilityNetworkAssociationInput() {
|
|
7171
|
+
if (isAMD) {
|
|
7172
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
7173
|
+
}
|
|
7174
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
7175
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7176
|
+
}
|
|
7177
|
+
async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties) {
|
|
7178
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
7179
|
+
return new ModConstructor(properties);
|
|
7180
|
+
}
|
|
6917
7181
|
async function importWidgetsFeatures() {
|
|
6918
7182
|
if (isAMD) {
|
|
6919
7183
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -7090,6 +7354,28 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7090
7354
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7091
7355
|
return new ModConstructor(properties);
|
|
7092
7356
|
}
|
|
7357
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7358
|
+
if (isAMD) {
|
|
7359
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7360
|
+
}
|
|
7361
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7362
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7363
|
+
}
|
|
7364
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7365
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7366
|
+
return new ModConstructor(properties);
|
|
7367
|
+
}
|
|
7368
|
+
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
7369
|
+
if (isAMD) {
|
|
7370
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
7371
|
+
}
|
|
7372
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
7373
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7374
|
+
}
|
|
7375
|
+
async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties) {
|
|
7376
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7377
|
+
return new ModConstructor(properties);
|
|
7378
|
+
}
|
|
7093
7379
|
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7094
7380
|
if (isAMD) {
|
|
7095
7381
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -8146,6 +8432,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8146
8432
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8147
8433
|
return new ModConstructor(properties);
|
|
8148
8434
|
}
|
|
8435
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8436
|
+
if (isAMD) {
|
|
8437
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8438
|
+
}
|
|
8439
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8440
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8441
|
+
}
|
|
8442
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8443
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8444
|
+
return new ModConstructor(properties);
|
|
8445
|
+
}
|
|
8149
8446
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8150
8447
|
if (isAMD) {
|
|
8151
8448
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8399,25 +8696,18 @@ async function importCoreWorkers() {
|
|
|
8399
8696
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8400
8697
|
return isDefaultModule(module) ? module.default : module;
|
|
8401
8698
|
}
|
|
8402
|
-
async function
|
|
8403
|
-
if (isAMD) {
|
|
8404
|
-
return await window.$arcgis.import("esri/form/elements/inputs/attachments/support/inputs");
|
|
8405
|
-
}
|
|
8406
|
-
const module = await import("@arcgis/core/form/elements/inputs/attachments/support/inputs.js");
|
|
8407
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8408
|
-
}
|
|
8409
|
-
async function importFormElementsSupportInputs() {
|
|
8699
|
+
async function importFormElementsInputs() {
|
|
8410
8700
|
if (isAMD) {
|
|
8411
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
8701
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
8412
8702
|
}
|
|
8413
|
-
const module = await import("@arcgis/core/form/elements/
|
|
8703
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
8414
8704
|
return isDefaultModule(module) ? module.default : module;
|
|
8415
8705
|
}
|
|
8416
|
-
async function
|
|
8706
|
+
async function importFormElements() {
|
|
8417
8707
|
if (isAMD) {
|
|
8418
|
-
return await window.$arcgis.import("esri/form/
|
|
8708
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
8419
8709
|
}
|
|
8420
|
-
const module = await import("@arcgis/core/form/
|
|
8710
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
8421
8711
|
return isDefaultModule(module) ? module.default : module;
|
|
8422
8712
|
}
|
|
8423
8713
|
async function importGeometry() {
|
|
@@ -8455,6 +8745,48 @@ async function importGeometryProjection() {
|
|
|
8455
8745
|
const module = await import("@arcgis/core/geometry/projection.js");
|
|
8456
8746
|
return isDefaultModule(module) ? module.default : module;
|
|
8457
8747
|
}
|
|
8748
|
+
async function importGeometryOperatorsAffineTransformOperator() {
|
|
8749
|
+
if (isAMD) {
|
|
8750
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
8751
|
+
}
|
|
8752
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8753
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8754
|
+
}
|
|
8755
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8756
|
+
if (isAMD) {
|
|
8757
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8758
|
+
}
|
|
8759
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8760
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8761
|
+
}
|
|
8762
|
+
async function importGeometryOperatorsAreaOperator() {
|
|
8763
|
+
if (isAMD) {
|
|
8764
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
8765
|
+
}
|
|
8766
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8767
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8768
|
+
}
|
|
8769
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
8770
|
+
if (isAMD) {
|
|
8771
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
8772
|
+
}
|
|
8773
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
8774
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8775
|
+
}
|
|
8776
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
8777
|
+
if (isAMD) {
|
|
8778
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
8779
|
+
}
|
|
8780
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
8781
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8782
|
+
}
|
|
8783
|
+
async function importGeometryOperatorsBufferOperator() {
|
|
8784
|
+
if (isAMD) {
|
|
8785
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
8786
|
+
}
|
|
8787
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
8788
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8789
|
+
}
|
|
8458
8790
|
async function importGeometryOperatorsCentroidOperator() {
|
|
8459
8791
|
if (isAMD) {
|
|
8460
8792
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -8469,18 +8801,18 @@ async function importGeometryOperatorsClipOperator() {
|
|
|
8469
8801
|
const module = await import("@arcgis/core/geometry/operators/clipOperator.js");
|
|
8470
8802
|
return isDefaultModule(module) ? module.default : module;
|
|
8471
8803
|
}
|
|
8472
|
-
async function
|
|
8804
|
+
async function importGeometryOperatorsContainsOperator() {
|
|
8473
8805
|
if (isAMD) {
|
|
8474
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8806
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
8475
8807
|
}
|
|
8476
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8808
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
8477
8809
|
return isDefaultModule(module) ? module.default : module;
|
|
8478
8810
|
}
|
|
8479
|
-
async function
|
|
8811
|
+
async function importGeometryOperatorsConvexHullOperator() {
|
|
8480
8812
|
if (isAMD) {
|
|
8481
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8813
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
8482
8814
|
}
|
|
8483
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8815
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
8484
8816
|
return isDefaultModule(module) ? module.default : module;
|
|
8485
8817
|
}
|
|
8486
8818
|
async function importGeometryOperatorsCrossesOperator() {
|
|
@@ -8490,6 +8822,13 @@ async function importGeometryOperatorsCrossesOperator() {
|
|
|
8490
8822
|
const module = await import("@arcgis/core/geometry/operators/crossesOperator.js");
|
|
8491
8823
|
return isDefaultModule(module) ? module.default : module;
|
|
8492
8824
|
}
|
|
8825
|
+
async function importGeometryOperatorsCutOperator() {
|
|
8826
|
+
if (isAMD) {
|
|
8827
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
8828
|
+
}
|
|
8829
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
8830
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8831
|
+
}
|
|
8493
8832
|
async function importGeometryOperatorsDensifyOperator() {
|
|
8494
8833
|
if (isAMD) {
|
|
8495
8834
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -8504,18 +8843,18 @@ async function importGeometryOperatorsDifferenceOperator() {
|
|
|
8504
8843
|
const module = await import("@arcgis/core/geometry/operators/differenceOperator.js");
|
|
8505
8844
|
return isDefaultModule(module) ? module.default : module;
|
|
8506
8845
|
}
|
|
8507
|
-
async function
|
|
8846
|
+
async function importGeometryOperatorsDisjointOperator() {
|
|
8508
8847
|
if (isAMD) {
|
|
8509
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8848
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
8510
8849
|
}
|
|
8511
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8850
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
8512
8851
|
return isDefaultModule(module) ? module.default : module;
|
|
8513
8852
|
}
|
|
8514
|
-
async function
|
|
8853
|
+
async function importGeometryOperatorsDistanceOperator() {
|
|
8515
8854
|
if (isAMD) {
|
|
8516
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8855
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
8517
8856
|
}
|
|
8518
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8857
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
8519
8858
|
return isDefaultModule(module) ? module.default : module;
|
|
8520
8859
|
}
|
|
8521
8860
|
async function importGeometryOperatorsEqualsOperator() {
|
|
@@ -8525,6 +8864,20 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8525
8864
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8526
8865
|
return isDefaultModule(module) ? module.default : module;
|
|
8527
8866
|
}
|
|
8867
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
8868
|
+
if (isAMD) {
|
|
8869
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
8870
|
+
}
|
|
8871
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
8872
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8873
|
+
}
|
|
8874
|
+
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8875
|
+
if (isAMD) {
|
|
8876
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
8877
|
+
}
|
|
8878
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
8879
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8880
|
+
}
|
|
8528
8881
|
async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
8529
8882
|
if (isAMD) {
|
|
8530
8883
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -8532,6 +8885,20 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8532
8885
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8533
8886
|
return isDefaultModule(module) ? module.default : module;
|
|
8534
8887
|
}
|
|
8888
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
8889
|
+
if (isAMD) {
|
|
8890
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
8891
|
+
}
|
|
8892
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
8893
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8894
|
+
}
|
|
8895
|
+
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8896
|
+
if (isAMD) {
|
|
8897
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
8898
|
+
}
|
|
8899
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
8900
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8901
|
+
}
|
|
8535
8902
|
async function importGeometryOperatorsGeodeticDensifyOperator() {
|
|
8536
8903
|
if (isAMD) {
|
|
8537
8904
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -8546,11 +8913,25 @@ async function importGeometryOperatorsGeodeticDistanceOperator() {
|
|
|
8546
8913
|
const module = await import("@arcgis/core/geometry/operators/geodeticDistanceOperator.js");
|
|
8547
8914
|
return isDefaultModule(module) ? module.default : module;
|
|
8548
8915
|
}
|
|
8549
|
-
async function
|
|
8916
|
+
async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
8550
8917
|
if (isAMD) {
|
|
8551
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8918
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
8552
8919
|
}
|
|
8553
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8920
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
8921
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8922
|
+
}
|
|
8923
|
+
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
8924
|
+
if (isAMD) {
|
|
8925
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
8926
|
+
}
|
|
8927
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8928
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8929
|
+
}
|
|
8930
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
8931
|
+
if (isAMD) {
|
|
8932
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
8933
|
+
}
|
|
8934
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
8554
8935
|
return isDefaultModule(module) ? module.default : module;
|
|
8555
8936
|
}
|
|
8556
8937
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
@@ -8567,6 +8948,62 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8567
8948
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8568
8949
|
return isDefaultModule(module) ? module.default : module;
|
|
8569
8950
|
}
|
|
8951
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
8952
|
+
if (isAMD) {
|
|
8953
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
8954
|
+
}
|
|
8955
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
8956
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8957
|
+
}
|
|
8958
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
8959
|
+
if (isAMD) {
|
|
8960
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
8961
|
+
}
|
|
8962
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
8963
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8964
|
+
}
|
|
8965
|
+
async function importGeometryOperatorsLengthOperator() {
|
|
8966
|
+
if (isAMD) {
|
|
8967
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
8968
|
+
}
|
|
8969
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8971
|
+
}
|
|
8972
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
8973
|
+
if (isAMD) {
|
|
8974
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
8975
|
+
}
|
|
8976
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
8977
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8978
|
+
}
|
|
8979
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
8980
|
+
if (isAMD) {
|
|
8981
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
8982
|
+
}
|
|
8983
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
8984
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8985
|
+
}
|
|
8986
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
8987
|
+
if (isAMD) {
|
|
8988
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
8989
|
+
}
|
|
8990
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
8991
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8992
|
+
}
|
|
8993
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
8994
|
+
if (isAMD) {
|
|
8995
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
8996
|
+
}
|
|
8997
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
8998
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8999
|
+
}
|
|
9000
|
+
async function importGeometryOperatorsOffsetOperator() {
|
|
9001
|
+
if (isAMD) {
|
|
9002
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
9003
|
+
}
|
|
9004
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
9005
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9006
|
+
}
|
|
8570
9007
|
async function importGeometryOperatorsOverlapsOperator() {
|
|
8571
9008
|
if (isAMD) {
|
|
8572
9009
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -8574,6 +9011,20 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8574
9011
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8575
9012
|
return isDefaultModule(module) ? module.default : module;
|
|
8576
9013
|
}
|
|
9014
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
9015
|
+
if (isAMD) {
|
|
9016
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
9017
|
+
}
|
|
9018
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
9019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9020
|
+
}
|
|
9021
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
9022
|
+
if (isAMD) {
|
|
9023
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
9024
|
+
}
|
|
9025
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9026
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9027
|
+
}
|
|
8577
9028
|
async function importGeometryOperatorsProximityOperator() {
|
|
8578
9029
|
if (isAMD) {
|
|
8579
9030
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8588,6 +9039,13 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8588
9039
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8589
9040
|
return isDefaultModule(module) ? module.default : module;
|
|
8590
9041
|
}
|
|
9042
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
9043
|
+
if (isAMD) {
|
|
9044
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
9045
|
+
}
|
|
9046
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9047
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9048
|
+
}
|
|
8591
9049
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8592
9050
|
if (isAMD) {
|
|
8593
9051
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8595,6 +9053,13 @@ async function importGeometryOperatorsSimplifyOperator() {
|
|
|
8595
9053
|
const module = await import("@arcgis/core/geometry/operators/simplifyOperator.js");
|
|
8596
9054
|
return isDefaultModule(module) ? module.default : module;
|
|
8597
9055
|
}
|
|
9056
|
+
async function importGeometryOperatorsSymmetricDifferenceOperator() {
|
|
9057
|
+
if (isAMD) {
|
|
9058
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
9059
|
+
}
|
|
9060
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
9061
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9062
|
+
}
|
|
8598
9063
|
async function importGeometryOperatorsTouchesOperator() {
|
|
8599
9064
|
if (isAMD) {
|
|
8600
9065
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -8672,6 +9137,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8672
9137
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8673
9138
|
return isDefaultModule(module) ? module.default : module;
|
|
8674
9139
|
}
|
|
9140
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9141
|
+
if (isAMD) {
|
|
9142
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9143
|
+
}
|
|
9144
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9145
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9146
|
+
}
|
|
9147
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9148
|
+
if (isAMD) {
|
|
9149
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9150
|
+
}
|
|
9151
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9152
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9153
|
+
}
|
|
8675
9154
|
async function importLayersOgcWfsUtils() {
|
|
8676
9155
|
if (isAMD) {
|
|
8677
9156
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8679,6 +9158,27 @@ async function importLayersOgcWfsUtils() {
|
|
|
8679
9158
|
const module = await import("@arcgis/core/layers/ogc/wfsUtils.js");
|
|
8680
9159
|
return isDefaultModule(module) ? module.default : module;
|
|
8681
9160
|
}
|
|
9161
|
+
async function importLayersOgcWcsUtils() {
|
|
9162
|
+
if (isAMD) {
|
|
9163
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
9164
|
+
}
|
|
9165
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
9166
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9167
|
+
}
|
|
9168
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9169
|
+
if (isAMD) {
|
|
9170
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9171
|
+
}
|
|
9172
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9173
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9174
|
+
}
|
|
9175
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9176
|
+
if (isAMD) {
|
|
9177
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9178
|
+
}
|
|
9179
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9180
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9181
|
+
}
|
|
8682
9182
|
async function importLayersSupportArcadeUtils() {
|
|
8683
9183
|
if (isAMD) {
|
|
8684
9184
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -9127,6 +9627,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9127
9627
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9128
9628
|
return isDefaultModule(module) ? module.default : module;
|
|
9129
9629
|
}
|
|
9630
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9631
|
+
if (isAMD) {
|
|
9632
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9633
|
+
}
|
|
9634
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9635
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9636
|
+
}
|
|
9130
9637
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9131
9638
|
if (isAMD) {
|
|
9132
9639
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9316,11 +9823,11 @@ async function importSymbolsSupportSymbolUtils() {
|
|
|
9316
9823
|
const module = await import("@arcgis/core/symbols/support/symbolUtils.js");
|
|
9317
9824
|
return isDefaultModule(module) ? module.default : module;
|
|
9318
9825
|
}
|
|
9319
|
-
async function
|
|
9826
|
+
async function importTablesElements() {
|
|
9320
9827
|
if (isAMD) {
|
|
9321
|
-
return await window.$arcgis.import("esri/tables/
|
|
9828
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
9322
9829
|
}
|
|
9323
|
-
const module = await import("@arcgis/core/tables/
|
|
9830
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
9324
9831
|
return isDefaultModule(module) ? module.default : module;
|
|
9325
9832
|
}
|
|
9326
9833
|
async function importVersionManagementUtils() {
|
|
@@ -9337,13 +9844,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9337
9844
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9338
9845
|
return isDefaultModule(module) ? module.default : module;
|
|
9339
9846
|
}
|
|
9340
|
-
async function importViews3dExternalRenderers() {
|
|
9341
|
-
if (isAMD) {
|
|
9342
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
9343
|
-
}
|
|
9344
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
9345
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9346
|
-
}
|
|
9347
9847
|
async function importViews3dWebglManagedFBO() {
|
|
9348
9848
|
if (isAMD) {
|
|
9349
9849
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9400,6 +9900,13 @@ async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
|
9400
9900
|
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
9401
9901
|
return isDefaultModule(module) ? module.default : module;
|
|
9402
9902
|
}
|
|
9903
|
+
async function importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel() {
|
|
9904
|
+
if (isAMD) {
|
|
9905
|
+
return await window.$arcgis.import("esri/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel");
|
|
9906
|
+
}
|
|
9907
|
+
const module = await import("@arcgis/core/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel.js");
|
|
9908
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9909
|
+
}
|
|
9403
9910
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
9404
9911
|
if (isAMD) {
|
|
9405
9912
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -9414,74 +9921,88 @@ async function importWidgetsSupportWidget() {
|
|
|
9414
9921
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
9415
9922
|
return isDefaultModule(module) ? module.default : module;
|
|
9416
9923
|
}
|
|
9417
|
-
async function
|
|
9924
|
+
async function importApplicationsComponentsBasemapUtils() {
|
|
9418
9925
|
if (isAMD) {
|
|
9419
|
-
return await window.$arcgis.import("esri/applications/
|
|
9926
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
9420
9927
|
}
|
|
9421
|
-
const module = await import("@arcgis/core/applications/
|
|
9928
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9422
9929
|
return isDefaultModule(module) ? module.default : module;
|
|
9423
9930
|
}
|
|
9424
|
-
async function
|
|
9931
|
+
async function importApplicationsComponentsCollectionFlattener() {
|
|
9425
9932
|
if (isAMD) {
|
|
9426
|
-
return await window.$arcgis.import("esri/applications/
|
|
9933
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
9427
9934
|
}
|
|
9428
|
-
const module = await import("@arcgis/core/applications/
|
|
9935
|
+
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
9429
9936
|
return isDefaultModule(module) ? module.default : module;
|
|
9430
9937
|
}
|
|
9431
|
-
async function
|
|
9938
|
+
async function importApplicationsComponentsDrawUtils() {
|
|
9432
9939
|
if (isAMD) {
|
|
9433
|
-
return await window.$arcgis.import("esri/applications/
|
|
9940
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
9434
9941
|
}
|
|
9435
|
-
const module = await import("@arcgis/core/applications/
|
|
9942
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
9436
9943
|
return isDefaultModule(module) ? module.default : module;
|
|
9437
9944
|
}
|
|
9438
|
-
async function
|
|
9945
|
+
async function importApplicationsComponentsFontUtils() {
|
|
9439
9946
|
if (isAMD) {
|
|
9440
|
-
return await window.$arcgis.import("esri/applications/
|
|
9947
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
9441
9948
|
}
|
|
9442
|
-
const module = await import("@arcgis/core/applications/
|
|
9949
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
9443
9950
|
return isDefaultModule(module) ? module.default : module;
|
|
9444
9951
|
}
|
|
9445
|
-
async function
|
|
9952
|
+
async function importApplicationsComponentsGetDefaultUnits() {
|
|
9446
9953
|
if (isAMD) {
|
|
9447
|
-
return await window.$arcgis.import("esri/applications/
|
|
9954
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
9448
9955
|
}
|
|
9449
|
-
const module = await import("@arcgis/core/applications/
|
|
9956
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
9450
9957
|
return isDefaultModule(module) ? module.default : module;
|
|
9451
9958
|
}
|
|
9452
|
-
async function
|
|
9959
|
+
async function importApplicationsComponentsGfxUtils() {
|
|
9453
9960
|
if (isAMD) {
|
|
9454
|
-
return await window.$arcgis.import("esri/applications/
|
|
9961
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
9455
9962
|
}
|
|
9456
|
-
const module = await import("@arcgis/core/applications/
|
|
9963
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
9457
9964
|
return isDefaultModule(module) ? module.default : module;
|
|
9458
9965
|
}
|
|
9459
|
-
async function
|
|
9966
|
+
async function importApplicationsComponentsLayerOriginUtils() {
|
|
9460
9967
|
if (isAMD) {
|
|
9461
|
-
return await window.$arcgis.import("esri/applications/
|
|
9968
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
9462
9969
|
}
|
|
9463
|
-
const module = await import("@arcgis/core/applications/
|
|
9970
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
9464
9971
|
return isDefaultModule(module) ? module.default : module;
|
|
9465
9972
|
}
|
|
9466
|
-
async function
|
|
9973
|
+
async function importApplicationsComponentsLayersEffectsJsonUtils() {
|
|
9467
9974
|
if (isAMD) {
|
|
9468
|
-
return await window.$arcgis.import("esri/applications/
|
|
9975
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
9469
9976
|
}
|
|
9470
|
-
const module = await import("@arcgis/core/applications/
|
|
9977
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
9471
9978
|
return isDefaultModule(module) ? module.default : module;
|
|
9472
9979
|
}
|
|
9473
|
-
async function
|
|
9980
|
+
async function importApplicationsComponentsPreviewSymbol2D() {
|
|
9474
9981
|
if (isAMD) {
|
|
9475
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9982
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
9476
9983
|
}
|
|
9477
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9984
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9478
9985
|
return isDefaultModule(module) ? module.default : module;
|
|
9479
9986
|
}
|
|
9480
|
-
async function
|
|
9987
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
9481
9988
|
if (isAMD) {
|
|
9482
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9989
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
9483
9990
|
}
|
|
9484
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9991
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
9992
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9993
|
+
}
|
|
9994
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
9995
|
+
if (isAMD) {
|
|
9996
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
9997
|
+
}
|
|
9998
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
9999
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10000
|
+
}
|
|
10001
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
10002
|
+
if (isAMD) {
|
|
10003
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
10004
|
+
}
|
|
10005
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
9485
10006
|
return isDefaultModule(module) ? module.default : module;
|
|
9486
10007
|
}
|
|
9487
10008
|
async function importApplicationsComponentsStyleUtils() {
|
|
@@ -9491,46 +10012,46 @@ async function importApplicationsComponentsStyleUtils() {
|
|
|
9491
10012
|
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
9492
10013
|
return isDefaultModule(module) ? module.default : module;
|
|
9493
10014
|
}
|
|
9494
|
-
async function
|
|
10015
|
+
async function importApplicationsComponentsSvgUtils() {
|
|
9495
10016
|
if (isAMD) {
|
|
9496
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
10017
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
9497
10018
|
}
|
|
9498
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
10019
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
9499
10020
|
return isDefaultModule(module) ? module.default : module;
|
|
9500
10021
|
}
|
|
9501
|
-
async function
|
|
10022
|
+
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
9502
10023
|
if (isAMD) {
|
|
9503
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
10024
|
+
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
9504
10025
|
}
|
|
9505
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
10026
|
+
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9506
10027
|
return isDefaultModule(module) ? module.default : module;
|
|
9507
10028
|
}
|
|
9508
|
-
async function
|
|
10029
|
+
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9509
10030
|
if (isAMD) {
|
|
9510
|
-
return await window.$arcgis.import("esri/applications/
|
|
10031
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
9511
10032
|
}
|
|
9512
|
-
const module = await import("@arcgis/core/applications/
|
|
10033
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9513
10034
|
return isDefaultModule(module) ? module.default : module;
|
|
9514
10035
|
}
|
|
9515
|
-
async function
|
|
10036
|
+
async function importApplicationsMapViewerTemplateUtils() {
|
|
9516
10037
|
if (isAMD) {
|
|
9517
|
-
return await window.$arcgis.import("esri/applications/
|
|
10038
|
+
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
9518
10039
|
}
|
|
9519
|
-
const module = await import("@arcgis/core/applications/
|
|
10040
|
+
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
9520
10041
|
return isDefaultModule(module) ? module.default : module;
|
|
9521
10042
|
}
|
|
9522
|
-
async function
|
|
10043
|
+
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9523
10044
|
if (isAMD) {
|
|
9524
|
-
return await window.$arcgis.import("esri/applications/
|
|
10045
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
9525
10046
|
}
|
|
9526
|
-
const module = await import("@arcgis/core/applications/
|
|
10047
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9527
10048
|
return isDefaultModule(module) ? module.default : module;
|
|
9528
10049
|
}
|
|
9529
|
-
async function
|
|
10050
|
+
async function importApplicationsWebEditorSketchUtils() {
|
|
9530
10051
|
if (isAMD) {
|
|
9531
|
-
return await window.$arcgis.import("esri/applications/
|
|
10052
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
9532
10053
|
}
|
|
9533
|
-
const module = await import("@arcgis/core/applications/
|
|
10054
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
9534
10055
|
return isDefaultModule(module) ? module.default : module;
|
|
9535
10056
|
}
|
|
9536
10057
|
export {
|
|
@@ -9547,21 +10068,23 @@ export {
|
|
|
9547
10068
|
importAnalysisViewshed,
|
|
9548
10069
|
importAnalysisViewshedAnalysis,
|
|
9549
10070
|
importApplicationsComponentsBasemapUtils,
|
|
10071
|
+
importApplicationsComponentsCollectionFlattener,
|
|
9550
10072
|
importApplicationsComponentsDrawUtils,
|
|
10073
|
+
importApplicationsComponentsFontUtils,
|
|
9551
10074
|
importApplicationsComponentsGetDefaultUnits,
|
|
9552
10075
|
importApplicationsComponentsGfxUtils,
|
|
9553
10076
|
importApplicationsComponentsLayerOriginUtils,
|
|
10077
|
+
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9554
10078
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10079
|
+
importApplicationsComponentsReactiveUtils,
|
|
10080
|
+
importApplicationsComponentsSelectionOperation,
|
|
10081
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9555
10082
|
importApplicationsComponentsStyleUtils,
|
|
9556
10083
|
importApplicationsComponentsSvgUtils,
|
|
9557
10084
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9558
|
-
|
|
9559
|
-
|
|
9560
|
-
importApplicationsSceneViewerColorUtils,
|
|
10085
|
+
importApplicationsExperienceBuilderSketchUtils,
|
|
10086
|
+
importApplicationsMapViewerTemplateUtils,
|
|
9561
10087
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9562
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9563
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9564
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9565
10088
|
importApplicationsWebEditorSketchUtils,
|
|
9566
10089
|
importArcade,
|
|
9567
10090
|
importBasemap,
|
|
@@ -9583,16 +10106,17 @@ export {
|
|
|
9583
10106
|
importCoreUrlUtils,
|
|
9584
10107
|
importCoreWorkers,
|
|
9585
10108
|
importCoreWorkersConnection,
|
|
10109
|
+
importFormElements,
|
|
9586
10110
|
importFormElementsAttachmentElement,
|
|
9587
10111
|
importFormElementsElement,
|
|
9588
10112
|
importFormElementsFieldElement,
|
|
9589
10113
|
importFormElementsGroupElement,
|
|
10114
|
+
importFormElementsInputs,
|
|
9590
10115
|
importFormElementsInputsAttachmentsAttachmentInput,
|
|
9591
10116
|
importFormElementsInputsAttachmentsAudioInput,
|
|
9592
10117
|
importFormElementsInputsAttachmentsDocumentInput,
|
|
9593
10118
|
importFormElementsInputsAttachmentsImageInput,
|
|
9594
10119
|
importFormElementsInputsAttachmentsSignatureInput,
|
|
9595
|
-
importFormElementsInputsAttachmentsSupportInputs,
|
|
9596
10120
|
importFormElementsInputsAttachmentsVideoInput,
|
|
9597
10121
|
importFormElementsInputsBarcodeScannerInput,
|
|
9598
10122
|
importFormElementsInputsComboBoxInput,
|
|
@@ -9605,11 +10129,9 @@ export {
|
|
|
9605
10129
|
importFormElementsInputsTextBoxInput,
|
|
9606
10130
|
importFormElementsInputsTimePickerInput,
|
|
9607
10131
|
importFormElementsRelationshipElement,
|
|
9608
|
-
importFormElementsSupportInputs,
|
|
9609
10132
|
importFormElementsTextElement,
|
|
9610
10133
|
importFormExpressionInfo,
|
|
9611
10134
|
importFormFormTemplate,
|
|
9612
|
-
importFormSupportElements,
|
|
9613
10135
|
importGeometry,
|
|
9614
10136
|
importGeometryCircle,
|
|
9615
10137
|
importGeometryCoordinateFormatter,
|
|
@@ -9620,9 +10142,16 @@ export {
|
|
|
9620
10142
|
importGeometryHeightModelInfo,
|
|
9621
10143
|
importGeometryMesh,
|
|
9622
10144
|
importGeometryMultipoint,
|
|
10145
|
+
importGeometryOperatorsAffineTransformOperator,
|
|
10146
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
10147
|
+
importGeometryOperatorsAreaOperator,
|
|
10148
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10149
|
+
importGeometryOperatorsBoundaryOperator,
|
|
10150
|
+
importGeometryOperatorsBufferOperator,
|
|
9623
10151
|
importGeometryOperatorsCentroidOperator,
|
|
9624
10152
|
importGeometryOperatorsClipOperator,
|
|
9625
10153
|
importGeometryOperatorsContainsOperator,
|
|
10154
|
+
importGeometryOperatorsConvexHullOperator,
|
|
9626
10155
|
importGeometryOperatorsCrossesOperator,
|
|
9627
10156
|
importGeometryOperatorsCutOperator,
|
|
9628
10157
|
importGeometryOperatorsDensifyOperator,
|
|
@@ -9630,16 +10159,35 @@ export {
|
|
|
9630
10159
|
importGeometryOperatorsDisjointOperator,
|
|
9631
10160
|
importGeometryOperatorsDistanceOperator,
|
|
9632
10161
|
importGeometryOperatorsEqualsOperator,
|
|
10162
|
+
importGeometryOperatorsExtendOperator,
|
|
9633
10163
|
importGeometryOperatorsGeneralizeOperator,
|
|
9634
10164
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10165
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
10166
|
+
importGeometryOperatorsGeodeticAreaOperator,
|
|
9635
10167
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9636
10168
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
10169
|
+
importGeometryOperatorsGeodeticLengthOperator,
|
|
10170
|
+
importGeometryOperatorsGraphicBufferOperator,
|
|
10171
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9637
10172
|
importGeometryOperatorsIntersectionOperator,
|
|
9638
10173
|
importGeometryOperatorsIntersectsOperator,
|
|
10174
|
+
importGeometryOperatorsIsNearOperator,
|
|
10175
|
+
importGeometryOperatorsLabelPointOperator,
|
|
10176
|
+
importGeometryOperatorsLengthOperator,
|
|
10177
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10178
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10179
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10180
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
10181
|
+
importGeometryOperatorsOffsetOperator,
|
|
9639
10182
|
importGeometryOperatorsOverlapsOperator,
|
|
10183
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10184
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
9640
10185
|
importGeometryOperatorsProximityOperator,
|
|
9641
10186
|
importGeometryOperatorsRelateOperator,
|
|
10187
|
+
importGeometryOperatorsReshapeOperator,
|
|
9642
10188
|
importGeometryOperatorsSimplifyOperator,
|
|
10189
|
+
importGeometryOperatorsSupportTransformation,
|
|
10190
|
+
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9643
10191
|
importGeometryOperatorsTouchesOperator,
|
|
9644
10192
|
importGeometryOperatorsUnionOperator,
|
|
9645
10193
|
importGeometryOperatorsWithinOperator,
|
|
@@ -9696,17 +10244,23 @@ export {
|
|
|
9696
10244
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9697
10245
|
importLayersIntegratedMeshLayer,
|
|
9698
10246
|
importLayersKMLLayer,
|
|
10247
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9699
10248
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9700
10249
|
importLayersKnowledgeGraphLayer,
|
|
10250
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9701
10251
|
importLayersLayer,
|
|
9702
10252
|
importLayersLineOfSightLayer,
|
|
10253
|
+
importLayersLinkChartLayer,
|
|
9703
10254
|
importLayersMapImageLayer,
|
|
9704
10255
|
importLayersMapNotesLayer,
|
|
9705
10256
|
importLayersMediaLayer,
|
|
9706
10257
|
importLayersOGCFeatureLayer,
|
|
10258
|
+
importLayersOgcWcsUtils,
|
|
9707
10259
|
importLayersOgcWfsUtils,
|
|
9708
10260
|
importLayersOpenStreetMapLayer,
|
|
9709
10261
|
importLayersOrientedImageryLayer,
|
|
10262
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10263
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9710
10264
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9711
10265
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9712
10266
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9800,6 +10354,11 @@ export {
|
|
|
9800
10354
|
importLayersWMSLayer,
|
|
9801
10355
|
importLayersWMTSLayer,
|
|
9802
10356
|
importLayersWebTileLayer,
|
|
10357
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10358
|
+
importLinkChartLayoutSettings,
|
|
10359
|
+
importLinkChartLinkChartProperties,
|
|
10360
|
+
importLinkChartNonspatialDataDisplay,
|
|
10361
|
+
importLinkChartOrganicLayoutSettings,
|
|
9803
10362
|
importMap,
|
|
9804
10363
|
importNetworksNetwork,
|
|
9805
10364
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -9873,6 +10432,7 @@ export {
|
|
|
9873
10432
|
importRenderersSupportColormapInfo,
|
|
9874
10433
|
importRenderersSupportHeatmapColorStop,
|
|
9875
10434
|
importRenderersSupportJsonUtils,
|
|
10435
|
+
importRenderersSupportRasterPresetRenderer,
|
|
9876
10436
|
importRenderersSupportUniqueValue,
|
|
9877
10437
|
importRenderersSupportUniqueValueClass,
|
|
9878
10438
|
importRenderersSupportUniqueValueGroup,
|
|
@@ -9911,6 +10471,7 @@ export {
|
|
|
9911
10471
|
importRestKnowledgeGraphGraphProperty,
|
|
9912
10472
|
importRestKnowledgeGraphGraphQuery,
|
|
9913
10473
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10474
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
9914
10475
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
9915
10476
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
9916
10477
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -9924,6 +10485,7 @@ export {
|
|
|
9924
10485
|
importRestKnowledgeGraphSearchIndex,
|
|
9925
10486
|
importRestKnowledgeGraphService,
|
|
9926
10487
|
importRestKnowledgeGraphServiceDefinition,
|
|
10488
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
9927
10489
|
importRestLocator,
|
|
9928
10490
|
importRestNetworkService,
|
|
9929
10491
|
importRestNetworksQueryAssociations,
|
|
@@ -9953,6 +10515,10 @@ export {
|
|
|
9953
10515
|
importRestSupportArealUnit,
|
|
9954
10516
|
importRestSupportAreasAndLengthsParameters,
|
|
9955
10517
|
importRestSupportAttachmentQuery,
|
|
10518
|
+
importRestSupportAttributeBinsQuery,
|
|
10519
|
+
importRestSupportAutoIntervalBinParameters,
|
|
10520
|
+
importRestSupportBaseImageMeasureParameters,
|
|
10521
|
+
importRestSupportBaseImageMeasureResult,
|
|
9956
10522
|
importRestSupportBufferParameters,
|
|
9957
10523
|
importRestSupportCameraInfo,
|
|
9958
10524
|
importRestSupportClosestFacilityParameters,
|
|
@@ -9960,6 +10526,8 @@ export {
|
|
|
9960
10526
|
importRestSupportColorRamp,
|
|
9961
10527
|
importRestSupportDataFile,
|
|
9962
10528
|
importRestSupportDataLayer,
|
|
10529
|
+
importRestSupportDateBinParameters,
|
|
10530
|
+
importRestSupportDateBinTimeInterval,
|
|
9963
10531
|
importRestSupportDensifyParameters,
|
|
9964
10532
|
importRestSupportDirectionLine,
|
|
9965
10533
|
importRestSupportDirectionPoint,
|
|
@@ -9973,6 +10541,8 @@ export {
|
|
|
9973
10541
|
importRestSupportFindImagesResult,
|
|
9974
10542
|
importRestSupportFindParameters,
|
|
9975
10543
|
importRestSupportFindResult,
|
|
10544
|
+
importRestSupportFixedBoundariesBinParameters,
|
|
10545
|
+
importRestSupportFixedIntervalBinParameters,
|
|
9976
10546
|
importRestSupportGPMessage,
|
|
9977
10547
|
importRestSupportGeneralizeParameters,
|
|
9978
10548
|
importRestSupportIdentifyParameters,
|
|
@@ -10073,6 +10643,7 @@ export {
|
|
|
10073
10643
|
importSmartMappingRenderersPredominance,
|
|
10074
10644
|
importSmartMappingRenderersRelationship,
|
|
10075
10645
|
importSmartMappingRenderersSize,
|
|
10646
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10076
10647
|
importSmartMappingRenderersType,
|
|
10077
10648
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10078
10649
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10147,12 +10718,12 @@ export {
|
|
|
10147
10718
|
importSymbolsWaterSymbol3DLayer,
|
|
10148
10719
|
importSymbolsWebStyleSymbol,
|
|
10149
10720
|
importTablesAttributeTableTemplate,
|
|
10721
|
+
importTablesElements,
|
|
10150
10722
|
importTablesElementsAttributeTableAttachmentElement,
|
|
10151
10723
|
importTablesElementsAttributeTableElement,
|
|
10152
10724
|
importTablesElementsAttributeTableFieldElement,
|
|
10153
10725
|
importTablesElementsAttributeTableGroupElement,
|
|
10154
10726
|
importTablesElementsAttributeTableRelationshipElement,
|
|
10155
|
-
importTablesSupportElements,
|
|
10156
10727
|
importTimeExtent,
|
|
10157
10728
|
importTimeInterval,
|
|
10158
10729
|
importTimeTimeExtent,
|
|
@@ -10164,6 +10735,7 @@ export {
|
|
|
10164
10735
|
importViewpoint,
|
|
10165
10736
|
importViews2dLayersBaseLayerView2D,
|
|
10166
10737
|
importViews2dLayersBaseLayerViewGL2D,
|
|
10738
|
+
importViews2dSupportHighlightGroup,
|
|
10167
10739
|
importViews2dViewState,
|
|
10168
10740
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
10169
10741
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
@@ -10178,7 +10750,6 @@ export {
|
|
|
10178
10750
|
importViews3dEnvironmentSunLighting,
|
|
10179
10751
|
importViews3dEnvironmentSunnyWeather,
|
|
10180
10752
|
importViews3dEnvironmentVirtualLighting,
|
|
10181
|
-
importViews3dExternalRenderers,
|
|
10182
10753
|
importViews3dSupportLayerPerformanceInfo,
|
|
10183
10754
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10184
10755
|
importViews3dWebgl,
|
|
@@ -10212,6 +10783,7 @@ export {
|
|
|
10212
10783
|
importViewsLayersCatalogLayerView,
|
|
10213
10784
|
importViewsLayersDimensionLayerView,
|
|
10214
10785
|
importViewsLayersFeatureLayerView,
|
|
10786
|
+
importViewsLayersGroupLayerView,
|
|
10215
10787
|
importViewsLayersImageryLayerView,
|
|
10216
10788
|
importViewsLayersLayerView,
|
|
10217
10789
|
importViewsLayersMediaLayerView,
|
|
@@ -10219,6 +10791,7 @@ export {
|
|
|
10219
10791
|
importViewsLayersSceneLayerView,
|
|
10220
10792
|
importViewsLayersStreamLayerView,
|
|
10221
10793
|
importViewsLayersViewshedLayerView,
|
|
10794
|
+
importViewsLinkChartView,
|
|
10222
10795
|
importViewsMagnifier,
|
|
10223
10796
|
importViewsMapView,
|
|
10224
10797
|
importViewsNavigationGamepadGamepadSettings,
|
|
@@ -10232,6 +10805,7 @@ export {
|
|
|
10232
10805
|
importViewsView2D,
|
|
10233
10806
|
importViewsViewAnimation,
|
|
10234
10807
|
importWebDocument2D,
|
|
10808
|
+
importWebLinkChart,
|
|
10235
10809
|
importWebMap,
|
|
10236
10810
|
importWebScene,
|
|
10237
10811
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10327,12 +10901,15 @@ export {
|
|
|
10327
10901
|
importWidgetsExpand,
|
|
10328
10902
|
importWidgetsExpandExpandViewModel,
|
|
10329
10903
|
importWidgetsFeature,
|
|
10904
|
+
importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel,
|
|
10330
10905
|
importWidgetsFeatureFeatureViewModel,
|
|
10331
10906
|
importWidgetsFeatureForm,
|
|
10332
10907
|
importWidgetsFeatureFormFeatureFormViewModel,
|
|
10333
10908
|
importWidgetsFeatureFormFieldInput,
|
|
10334
10909
|
importWidgetsFeatureFormGroupInput,
|
|
10335
10910
|
importWidgetsFeatureFormRelationshipInput,
|
|
10911
|
+
importWidgetsFeatureFormTextElementInput,
|
|
10912
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10336
10913
|
importWidgetsFeatureTable,
|
|
10337
10914
|
importWidgetsFeatureTableActionColumn,
|
|
10338
10915
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10344,10 +10921,12 @@ export {
|
|
|
10344
10921
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10345
10922
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10346
10923
|
importWidgetsFeatureTableRelationshipColumn,
|
|
10924
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10347
10925
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10348
10926
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10349
10927
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10350
10928
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
10929
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10351
10930
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10352
10931
|
importWidgetsFeatureTemplates,
|
|
10353
10932
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10447,6 +11026,7 @@ export {
|
|
|
10447
11026
|
importWidgetsUtilityNetworkAssociations,
|
|
10448
11027
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10449
11028
|
importWidgetsUtilityNetworkTrace,
|
|
11029
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10450
11030
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10451
11031
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10452
11032
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10515,6 +11095,7 @@ export {
|
|
|
10515
11095
|
newGeometryHeightModelInfo,
|
|
10516
11096
|
newGeometryMesh,
|
|
10517
11097
|
newGeometryMultipoint,
|
|
11098
|
+
newGeometryOperatorsSupportTransformation,
|
|
10518
11099
|
newGeometryPoint,
|
|
10519
11100
|
newGeometryPolygon,
|
|
10520
11101
|
newGeometryPolyline,
|
|
@@ -10562,6 +11143,7 @@ export {
|
|
|
10562
11143
|
newLayersKnowledgeGraphLayer,
|
|
10563
11144
|
newLayersLayer,
|
|
10564
11145
|
newLayersLineOfSightLayer,
|
|
11146
|
+
newLayersLinkChartLayer,
|
|
10565
11147
|
newLayersMapImageLayer,
|
|
10566
11148
|
newLayersMapNotesLayer,
|
|
10567
11149
|
newLayersMediaLayer,
|
|
@@ -10654,6 +11236,11 @@ export {
|
|
|
10654
11236
|
newLayersWMSLayer,
|
|
10655
11237
|
newLayersWMTSLayer,
|
|
10656
11238
|
newLayersWebTileLayer,
|
|
11239
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11240
|
+
newLinkChartLayoutSettings,
|
|
11241
|
+
newLinkChartLinkChartProperties,
|
|
11242
|
+
newLinkChartNonspatialDataDisplay,
|
|
11243
|
+
newLinkChartOrganicLayoutSettings,
|
|
10657
11244
|
newMap,
|
|
10658
11245
|
newNetworksNetwork,
|
|
10659
11246
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10721,6 +11308,7 @@ export {
|
|
|
10721
11308
|
newRenderersSupportClassBreakInfo,
|
|
10722
11309
|
newRenderersSupportColormapInfo,
|
|
10723
11310
|
newRenderersSupportHeatmapColorStop,
|
|
11311
|
+
newRenderersSupportRasterPresetRenderer,
|
|
10724
11312
|
newRenderersSupportUniqueValue,
|
|
10725
11313
|
newRenderersSupportUniqueValueClass,
|
|
10726
11314
|
newRenderersSupportUniqueValueGroup,
|
|
@@ -10749,6 +11337,7 @@ export {
|
|
|
10749
11337
|
newRestKnowledgeGraphGraphProperty,
|
|
10750
11338
|
newRestKnowledgeGraphGraphQuery,
|
|
10751
11339
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11340
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10752
11341
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10753
11342
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10754
11343
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10761,6 +11350,7 @@ export {
|
|
|
10761
11350
|
newRestKnowledgeGraphRelationshipType,
|
|
10762
11351
|
newRestKnowledgeGraphSearchIndex,
|
|
10763
11352
|
newRestKnowledgeGraphServiceDefinition,
|
|
11353
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10764
11354
|
newRestNetworksSupportAggregatedGeometry,
|
|
10765
11355
|
newRestNetworksSupportAssociation,
|
|
10766
11356
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10779,6 +11369,10 @@ export {
|
|
|
10779
11369
|
newRestSupportArealUnit,
|
|
10780
11370
|
newRestSupportAreasAndLengthsParameters,
|
|
10781
11371
|
newRestSupportAttachmentQuery,
|
|
11372
|
+
newRestSupportAttributeBinsQuery,
|
|
11373
|
+
newRestSupportAutoIntervalBinParameters,
|
|
11374
|
+
newRestSupportBaseImageMeasureParameters,
|
|
11375
|
+
newRestSupportBaseImageMeasureResult,
|
|
10782
11376
|
newRestSupportBufferParameters,
|
|
10783
11377
|
newRestSupportCameraInfo,
|
|
10784
11378
|
newRestSupportClosestFacilityParameters,
|
|
@@ -10786,6 +11380,8 @@ export {
|
|
|
10786
11380
|
newRestSupportColorRamp,
|
|
10787
11381
|
newRestSupportDataFile,
|
|
10788
11382
|
newRestSupportDataLayer,
|
|
11383
|
+
newRestSupportDateBinParameters,
|
|
11384
|
+
newRestSupportDateBinTimeInterval,
|
|
10789
11385
|
newRestSupportDensifyParameters,
|
|
10790
11386
|
newRestSupportDirectionLine,
|
|
10791
11387
|
newRestSupportDirectionPoint,
|
|
@@ -10799,6 +11395,8 @@ export {
|
|
|
10799
11395
|
newRestSupportFindImagesResult,
|
|
10800
11396
|
newRestSupportFindParameters,
|
|
10801
11397
|
newRestSupportFindResult,
|
|
11398
|
+
newRestSupportFixedBoundariesBinParameters,
|
|
11399
|
+
newRestSupportFixedIntervalBinParameters,
|
|
10802
11400
|
newRestSupportGPMessage,
|
|
10803
11401
|
newRestSupportGeneralizeParameters,
|
|
10804
11402
|
newRestSupportIdentifyParameters,
|
|
@@ -10931,6 +11529,7 @@ export {
|
|
|
10931
11529
|
newViewpoint,
|
|
10932
11530
|
newViews2dLayersBaseLayerView2D,
|
|
10933
11531
|
newViews2dLayersBaseLayerViewGL2D,
|
|
11532
|
+
newViews2dSupportHighlightGroup,
|
|
10934
11533
|
newViews2dViewState,
|
|
10935
11534
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
10936
11535
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
@@ -10972,6 +11571,7 @@ export {
|
|
|
10972
11571
|
newViewsLayersCatalogLayerView,
|
|
10973
11572
|
newViewsLayersDimensionLayerView,
|
|
10974
11573
|
newViewsLayersFeatureLayerView,
|
|
11574
|
+
newViewsLayersGroupLayerView,
|
|
10975
11575
|
newViewsLayersImageryLayerView,
|
|
10976
11576
|
newViewsLayersLayerView,
|
|
10977
11577
|
newViewsLayersMediaLayerView,
|
|
@@ -10979,6 +11579,7 @@ export {
|
|
|
10979
11579
|
newViewsLayersSceneLayerView,
|
|
10980
11580
|
newViewsLayersStreamLayerView,
|
|
10981
11581
|
newViewsLayersViewshedLayerView,
|
|
11582
|
+
newViewsLinkChartView,
|
|
10982
11583
|
newViewsMagnifier,
|
|
10983
11584
|
newViewsMapView,
|
|
10984
11585
|
newViewsNavigationGamepadGamepadSettings,
|
|
@@ -10991,6 +11592,7 @@ export {
|
|
|
10991
11592
|
newViewsView2D,
|
|
10992
11593
|
newViewsViewAnimation,
|
|
10993
11594
|
newWebDocument2D,
|
|
11595
|
+
newWebLinkChart,
|
|
10994
11596
|
newWebMap,
|
|
10995
11597
|
newWebScene,
|
|
10996
11598
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11091,6 +11693,8 @@ export {
|
|
|
11091
11693
|
newWidgetsFeatureFormFieldInput,
|
|
11092
11694
|
newWidgetsFeatureFormGroupInput,
|
|
11093
11695
|
newWidgetsFeatureFormRelationshipInput,
|
|
11696
|
+
newWidgetsFeatureFormTextElementInput,
|
|
11697
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11094
11698
|
newWidgetsFeatureTable,
|
|
11095
11699
|
newWidgetsFeatureTableActionColumn,
|
|
11096
11700
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11102,10 +11706,12 @@ export {
|
|
|
11102
11706
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11103
11707
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11104
11708
|
newWidgetsFeatureTableRelationshipColumn,
|
|
11709
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11105
11710
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11106
11711
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11107
11712
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11108
11713
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11714
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11109
11715
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11110
11716
|
newWidgetsFeatureTemplates,
|
|
11111
11717
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11203,6 +11809,7 @@ export {
|
|
|
11203
11809
|
newWidgetsUtilityNetworkAssociations,
|
|
11204
11810
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11205
11811
|
newWidgetsUtilityNetworkTrace,
|
|
11812
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11206
11813
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11207
11814
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11208
11815
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|