@arcgis/core-adapter 4.32.0-next.5 → 4.32.0-next.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/dist/index.cjs +225 -54
- package/dist/index.d.cts +38 -18
- package/dist/index.d.ts +38 -18
- package/dist/index.js +205 -54
- package/package.json +4 -28
- package/src/index.ts +205 -54
- package/support/api-reference-esm-imports.json +16 -1
- package/support/arcgis.d.ts +2705 -413
package/src/index.ts
CHANGED
|
@@ -756,6 +756,19 @@ export async function newGeometrySpatialReference(properties: __esri.SpatialRefe
|
|
|
756
756
|
return new ModConstructor(properties);
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
export async function importGeometryOperatorsSupportTransformation(): Promise<typeof __esri.Transformation> {
|
|
760
|
+
if (isAMD) {
|
|
761
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
762
|
+
}
|
|
763
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
764
|
+
return isDefaultModule(module) ? module.default : module;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
export async function newGeometryOperatorsSupportTransformation(): Promise<__esri.Transformation> {
|
|
768
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
769
|
+
return new ModConstructor();
|
|
770
|
+
}
|
|
771
|
+
|
|
759
772
|
export async function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.GeographicTransformation> {
|
|
760
773
|
if (isAMD) {
|
|
761
774
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -3252,6 +3265,19 @@ export async function newRenderersRasterColormapRenderer(properties: __esri.Rast
|
|
|
3252
3265
|
return new ModConstructor(properties);
|
|
3253
3266
|
}
|
|
3254
3267
|
|
|
3268
|
+
export async function importRenderersSupportRasterPresetRenderer(): Promise<typeof __esri.RasterPresetRenderer> {
|
|
3269
|
+
if (isAMD) {
|
|
3270
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
3271
|
+
}
|
|
3272
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
3273
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
export async function newRenderersSupportRasterPresetRenderer(properties: __esri.RasterPresetRendererProperties): Promise<__esri.RasterPresetRenderer> {
|
|
3277
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
3278
|
+
return new ModConstructor(properties);
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3255
3281
|
export async function importRenderersRasterShadedReliefRenderer(): Promise<typeof __esri.RasterShadedReliefRenderer> {
|
|
3256
3282
|
if (isAMD) {
|
|
3257
3283
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -6645,6 +6671,19 @@ export async function newViewsLayersFeatureLayerView(properties: __esri.FeatureL
|
|
|
6645
6671
|
return new ModConstructor(properties);
|
|
6646
6672
|
}
|
|
6647
6673
|
|
|
6674
|
+
export async function importViewsLayersGroupLayerView(): Promise<typeof __esri.GroupLayerView> {
|
|
6675
|
+
if (isAMD) {
|
|
6676
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
6677
|
+
}
|
|
6678
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
6679
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6682
|
+
export async function newViewsLayersGroupLayerView(properties: __esri.GroupLayerViewProperties): Promise<__esri.GroupLayerView> {
|
|
6683
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
6684
|
+
return new ModConstructor(properties);
|
|
6685
|
+
}
|
|
6686
|
+
|
|
6648
6687
|
export async function importViewsLayersImageryLayerView(): Promise<typeof __esri.ImageryLayerView> {
|
|
6649
6688
|
if (isAMD) {
|
|
6650
6689
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -10008,6 +10047,30 @@ export async function importGeometryProjection(): Promise<typeof __esri.projecti
|
|
|
10008
10047
|
return isDefaultModule(module) ? module.default : module;
|
|
10009
10048
|
}
|
|
10010
10049
|
|
|
10050
|
+
export async function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator> {
|
|
10051
|
+
if (isAMD) {
|
|
10052
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
10053
|
+
}
|
|
10054
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
10055
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10056
|
+
}
|
|
10057
|
+
|
|
10058
|
+
export async function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator> {
|
|
10059
|
+
if (isAMD) {
|
|
10060
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
10061
|
+
}
|
|
10062
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
10063
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10064
|
+
}
|
|
10065
|
+
|
|
10066
|
+
export async function importGeometryOperatorsBufferOperator(): Promise<typeof __esri.bufferOperator> {
|
|
10067
|
+
if (isAMD) {
|
|
10068
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
10069
|
+
}
|
|
10070
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
10071
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10072
|
+
}
|
|
10073
|
+
|
|
10011
10074
|
export async function importGeometryOperatorsCentroidOperator(): Promise<typeof __esri.centroidOperator> {
|
|
10012
10075
|
if (isAMD) {
|
|
10013
10076
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -10024,19 +10087,19 @@ export async function importGeometryOperatorsClipOperator(): Promise<typeof __es
|
|
|
10024
10087
|
return isDefaultModule(module) ? module.default : module;
|
|
10025
10088
|
}
|
|
10026
10089
|
|
|
10027
|
-
export async function
|
|
10090
|
+
export async function importGeometryOperatorsContainsOperator(): Promise<typeof __esri.containsOperator> {
|
|
10028
10091
|
if (isAMD) {
|
|
10029
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10092
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
10030
10093
|
}
|
|
10031
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10094
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
10032
10095
|
return isDefaultModule(module) ? module.default : module;
|
|
10033
10096
|
}
|
|
10034
10097
|
|
|
10035
|
-
export async function
|
|
10098
|
+
export async function importGeometryOperatorsConvexHullOperator(): Promise<typeof __esri.convexHullOperator> {
|
|
10036
10099
|
if (isAMD) {
|
|
10037
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10100
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
10038
10101
|
}
|
|
10039
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10102
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
10040
10103
|
return isDefaultModule(module) ? module.default : module;
|
|
10041
10104
|
}
|
|
10042
10105
|
|
|
@@ -10048,6 +10111,14 @@ export async function importGeometryOperatorsCrossesOperator(): Promise<typeof _
|
|
|
10048
10111
|
return isDefaultModule(module) ? module.default : module;
|
|
10049
10112
|
}
|
|
10050
10113
|
|
|
10114
|
+
export async function importGeometryOperatorsCutOperator(): Promise<typeof __esri.cutOperator> {
|
|
10115
|
+
if (isAMD) {
|
|
10116
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
10117
|
+
}
|
|
10118
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
10119
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10120
|
+
}
|
|
10121
|
+
|
|
10051
10122
|
export async function importGeometryOperatorsDensifyOperator(): Promise<typeof __esri.densifyOperator> {
|
|
10052
10123
|
if (isAMD) {
|
|
10053
10124
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -10096,6 +10167,14 @@ export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<t
|
|
|
10096
10167
|
return isDefaultModule(module) ? module.default : module;
|
|
10097
10168
|
}
|
|
10098
10169
|
|
|
10170
|
+
export async function importGeometryOperatorsGeodeticAreaOperator(): Promise<typeof __esri.geodeticAreaOperator> {
|
|
10171
|
+
if (isAMD) {
|
|
10172
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
10173
|
+
}
|
|
10174
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
10175
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10176
|
+
}
|
|
10177
|
+
|
|
10099
10178
|
export async function importGeometryOperatorsGeodeticDensifyOperator(): Promise<typeof __esri.geodeticDensifyOperator> {
|
|
10100
10179
|
if (isAMD) {
|
|
10101
10180
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -10112,6 +10191,14 @@ export async function importGeometryOperatorsGeodeticDistanceOperator(): Promise
|
|
|
10112
10191
|
return isDefaultModule(module) ? module.default : module;
|
|
10113
10192
|
}
|
|
10114
10193
|
|
|
10194
|
+
export async function importGeometryOperatorsGeodeticLengthOperator(): Promise<typeof __esri.geodeticLengthOperator> {
|
|
10195
|
+
if (isAMD) {
|
|
10196
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
10197
|
+
}
|
|
10198
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10199
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10200
|
+
}
|
|
10201
|
+
|
|
10115
10202
|
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10116
10203
|
if (isAMD) {
|
|
10117
10204
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -10120,6 +10207,14 @@ export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeo
|
|
|
10120
10207
|
return isDefaultModule(module) ? module.default : module;
|
|
10121
10208
|
}
|
|
10122
10209
|
|
|
10210
|
+
export async function importGeometryOperatorsGraphicBufferOperator(): Promise<typeof __esri.graphicBufferOperator> {
|
|
10211
|
+
if (isAMD) {
|
|
10212
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
10213
|
+
}
|
|
10214
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
10215
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10216
|
+
}
|
|
10217
|
+
|
|
10123
10218
|
export async function importGeometryOperatorsIntersectionOperator(): Promise<typeof __esri.intersectionOperator> {
|
|
10124
10219
|
if (isAMD) {
|
|
10125
10220
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -10136,6 +10231,22 @@ export async function importGeometryOperatorsIntersectsOperator(): Promise<typeo
|
|
|
10136
10231
|
return isDefaultModule(module) ? module.default : module;
|
|
10137
10232
|
}
|
|
10138
10233
|
|
|
10234
|
+
export async function importGeometryOperatorsLengthOperator(): Promise<typeof __esri.lengthOperator> {
|
|
10235
|
+
if (isAMD) {
|
|
10236
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
10237
|
+
}
|
|
10238
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
10239
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10240
|
+
}
|
|
10241
|
+
|
|
10242
|
+
export async function importGeometryOperatorsOffsetOperator(): Promise<typeof __esri.offsetOperator> {
|
|
10243
|
+
if (isAMD) {
|
|
10244
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
10245
|
+
}
|
|
10246
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
10247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10248
|
+
}
|
|
10249
|
+
|
|
10139
10250
|
export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof __esri.overlapsOperator> {
|
|
10140
10251
|
if (isAMD) {
|
|
10141
10252
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -10168,6 +10279,14 @@ export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof
|
|
|
10168
10279
|
return isDefaultModule(module) ? module.default : module;
|
|
10169
10280
|
}
|
|
10170
10281
|
|
|
10282
|
+
export async function importGeometryOperatorsSymmetricDifferenceOperator(): Promise<typeof __esri.symmetricDifferenceOperator> {
|
|
10283
|
+
if (isAMD) {
|
|
10284
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
10285
|
+
}
|
|
10286
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
10287
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10288
|
+
}
|
|
10289
|
+
|
|
10171
10290
|
export async function importGeometryOperatorsTouchesOperator(): Promise<typeof __esri.touchesOperator> {
|
|
10172
10291
|
if (isAMD) {
|
|
10173
10292
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -10264,6 +10383,14 @@ export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils>
|
|
|
10264
10383
|
return isDefaultModule(module) ? module.default : module;
|
|
10265
10384
|
}
|
|
10266
10385
|
|
|
10386
|
+
export async function importLayersOgcWcsUtils(): Promise<typeof __esri.wcsUtils> {
|
|
10387
|
+
if (isAMD) {
|
|
10388
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
10389
|
+
}
|
|
10390
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
10391
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10392
|
+
}
|
|
10393
|
+
|
|
10267
10394
|
export async function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils> {
|
|
10268
10395
|
if (isAMD) {
|
|
10269
10396
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -11104,67 +11231,75 @@ export async function importWidgetsSupportWidget(): Promise<typeof __esri.widget
|
|
|
11104
11231
|
return isDefaultModule(module) ? module.default : module;
|
|
11105
11232
|
}
|
|
11106
11233
|
|
|
11107
|
-
export async function
|
|
11234
|
+
export async function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils> {
|
|
11108
11235
|
if (isAMD) {
|
|
11109
|
-
return await window.$arcgis.import("esri/applications/
|
|
11236
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
11110
11237
|
}
|
|
11111
|
-
const module = await import("@arcgis/core/applications/
|
|
11238
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
11112
11239
|
return isDefaultModule(module) ? module.default : module;
|
|
11113
11240
|
}
|
|
11114
11241
|
|
|
11115
|
-
export async function
|
|
11242
|
+
export async function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils> {
|
|
11116
11243
|
if (isAMD) {
|
|
11117
|
-
return await window.$arcgis.import("esri/applications/
|
|
11244
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
11118
11245
|
}
|
|
11119
|
-
const module = await import("@arcgis/core/applications/
|
|
11246
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
11120
11247
|
return isDefaultModule(module) ? module.default : module;
|
|
11121
11248
|
}
|
|
11122
11249
|
|
|
11123
|
-
export async function
|
|
11250
|
+
export async function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits> {
|
|
11124
11251
|
if (isAMD) {
|
|
11125
|
-
return await window.$arcgis.import("esri/applications/
|
|
11252
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
11126
11253
|
}
|
|
11127
|
-
const module = await import("@arcgis/core/applications/
|
|
11254
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
11128
11255
|
return isDefaultModule(module) ? module.default : module;
|
|
11129
11256
|
}
|
|
11130
11257
|
|
|
11131
|
-
export async function
|
|
11258
|
+
export async function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils> {
|
|
11132
11259
|
if (isAMD) {
|
|
11133
|
-
return await window.$arcgis.import("esri/applications/
|
|
11260
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
11134
11261
|
}
|
|
11135
|
-
const module = await import("@arcgis/core/applications/
|
|
11262
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
11136
11263
|
return isDefaultModule(module) ? module.default : module;
|
|
11137
11264
|
}
|
|
11138
11265
|
|
|
11139
|
-
export async function
|
|
11266
|
+
export async function importApplicationsComponentsLayerOriginUtils(): Promise<typeof __esri.layerOriginUtils> {
|
|
11140
11267
|
if (isAMD) {
|
|
11141
|
-
return await window.$arcgis.import("esri/applications/
|
|
11268
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
11142
11269
|
}
|
|
11143
|
-
const module = await import("@arcgis/core/applications/
|
|
11270
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
11144
11271
|
return isDefaultModule(module) ? module.default : module;
|
|
11145
11272
|
}
|
|
11146
11273
|
|
|
11147
|
-
export async function
|
|
11274
|
+
export async function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils> {
|
|
11148
11275
|
if (isAMD) {
|
|
11149
|
-
return await window.$arcgis.import("esri/applications/
|
|
11276
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
11150
11277
|
}
|
|
11151
|
-
const module = await import("@arcgis/core/applications/
|
|
11278
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
11152
11279
|
return isDefaultModule(module) ? module.default : module;
|
|
11153
11280
|
}
|
|
11154
11281
|
|
|
11155
|
-
export async function
|
|
11282
|
+
export async function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D> {
|
|
11156
11283
|
if (isAMD) {
|
|
11157
|
-
return await window.$arcgis.import("esri/applications/
|
|
11284
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
11158
11285
|
}
|
|
11159
|
-
const module = await import("@arcgis/core/applications/
|
|
11286
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
11160
11287
|
return isDefaultModule(module) ? module.default : module;
|
|
11161
11288
|
}
|
|
11162
11289
|
|
|
11163
|
-
export async function
|
|
11290
|
+
export async function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils> {
|
|
11164
11291
|
if (isAMD) {
|
|
11165
|
-
return await window.$arcgis.import("esri/applications/
|
|
11292
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
11166
11293
|
}
|
|
11167
|
-
const module = await import("@arcgis/core/applications/
|
|
11294
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
11295
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11296
|
+
}
|
|
11297
|
+
|
|
11298
|
+
export async function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils> {
|
|
11299
|
+
if (isAMD) {
|
|
11300
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
11301
|
+
}
|
|
11302
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
11168
11303
|
return isDefaultModule(module) ? module.default : module;
|
|
11169
11304
|
}
|
|
11170
11305
|
|
|
@@ -11176,66 +11311,82 @@ export async function importApplicationsComponentsWebStyleSymbolUtils(): Promise
|
|
|
11176
11311
|
return isDefaultModule(module) ? module.default : module;
|
|
11177
11312
|
}
|
|
11178
11313
|
|
|
11179
|
-
export async function
|
|
11314
|
+
export async function importApplicationsExcaliburVideoViewUtils(): Promise<typeof __esri.videoViewUtils> {
|
|
11180
11315
|
if (isAMD) {
|
|
11181
|
-
return await window.$arcgis.import("esri/applications/
|
|
11316
|
+
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
11182
11317
|
}
|
|
11183
|
-
const module = await import("@arcgis/core/applications/
|
|
11318
|
+
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
11184
11319
|
return isDefaultModule(module) ? module.default : module;
|
|
11185
11320
|
}
|
|
11186
11321
|
|
|
11187
|
-
export async function
|
|
11322
|
+
export async function importApplicationsExperienceBuilderSketchUtils(): Promise<typeof __esri.sketchUtils> {
|
|
11188
11323
|
if (isAMD) {
|
|
11189
|
-
return await window.$arcgis.import("esri/applications/
|
|
11324
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
11190
11325
|
}
|
|
11191
|
-
const module = await import("@arcgis/core/applications/
|
|
11326
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
11192
11327
|
return isDefaultModule(module) ? module.default : module;
|
|
11193
11328
|
}
|
|
11194
11329
|
|
|
11195
|
-
export async function
|
|
11330
|
+
export async function importApplicationsMapViewerMediaUtils(): Promise<typeof __esri.mediaUtils> {
|
|
11196
11331
|
if (isAMD) {
|
|
11197
|
-
return await window.$arcgis.import("esri/applications/
|
|
11332
|
+
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
11198
11333
|
}
|
|
11199
|
-
const module = await import("@arcgis/core/applications/
|
|
11334
|
+
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
11200
11335
|
return isDefaultModule(module) ? module.default : module;
|
|
11201
11336
|
}
|
|
11202
11337
|
|
|
11203
|
-
export async function
|
|
11338
|
+
export async function importApplicationsSceneViewerColorUtils(): Promise<typeof __esri.SceneViewerColorUtils> {
|
|
11204
11339
|
if (isAMD) {
|
|
11205
|
-
return await window.$arcgis.import("esri/applications/
|
|
11340
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
11206
11341
|
}
|
|
11207
|
-
const module = await import("@arcgis/core/applications/
|
|
11342
|
+
const module = await import("@arcgis/core/applications/SceneViewer/colorUtils.js");
|
|
11208
11343
|
return isDefaultModule(module) ? module.default : module;
|
|
11209
11344
|
}
|
|
11210
11345
|
|
|
11211
|
-
export async function
|
|
11346
|
+
export async function importApplicationsSceneViewerDevEnvironmentUtils(): Promise<typeof __esri.devEnvironmentUtils> {
|
|
11212
11347
|
if (isAMD) {
|
|
11213
|
-
return await window.$arcgis.import("esri/applications/
|
|
11348
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
11214
11349
|
}
|
|
11215
|
-
const module = await import("@arcgis/core/applications/
|
|
11350
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
11216
11351
|
return isDefaultModule(module) ? module.default : module;
|
|
11217
11352
|
}
|
|
11218
11353
|
|
|
11219
|
-
export async function
|
|
11354
|
+
export async function importApplicationsSceneViewerLayerUtils(): Promise<typeof __esri.layerUtils> {
|
|
11220
11355
|
if (isAMD) {
|
|
11221
|
-
return await window.$arcgis.import("esri/applications/
|
|
11356
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
11222
11357
|
}
|
|
11223
|
-
const module = await import("@arcgis/core/applications/
|
|
11358
|
+
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
11224
11359
|
return isDefaultModule(module) ? module.default : module;
|
|
11225
11360
|
}
|
|
11226
11361
|
|
|
11227
|
-
export async function
|
|
11362
|
+
export async function importApplicationsSceneViewerSceneViewerUtils(): Promise<typeof __esri.sceneViewerUtils> {
|
|
11228
11363
|
if (isAMD) {
|
|
11229
|
-
return await window.$arcgis.import("esri/applications/
|
|
11364
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
11230
11365
|
}
|
|
11231
|
-
const module = await import("@arcgis/core/applications/
|
|
11366
|
+
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
11232
11367
|
return isDefaultModule(module) ? module.default : module;
|
|
11233
11368
|
}
|
|
11234
11369
|
|
|
11235
|
-
export async function
|
|
11370
|
+
export async function importApplicationsSceneViewerSymbolUtils(): Promise<typeof __esri.SceneViewerSymbolUtils> {
|
|
11236
11371
|
if (isAMD) {
|
|
11237
|
-
return await window.$arcgis.import("esri/applications/
|
|
11372
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
11238
11373
|
}
|
|
11239
|
-
const module = await import("@arcgis/core/applications/
|
|
11374
|
+
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
11375
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11376
|
+
}
|
|
11377
|
+
|
|
11378
|
+
export async function importApplicationsUrbanMeshUtils(): Promise<typeof __esri.UrbanMeshUtils> {
|
|
11379
|
+
if (isAMD) {
|
|
11380
|
+
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
11381
|
+
}
|
|
11382
|
+
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
11383
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11384
|
+
}
|
|
11385
|
+
|
|
11386
|
+
export async function importApplicationsWebEditorSketchUtils(): Promise<typeof __esri.WebEditorSketchUtils> {
|
|
11387
|
+
if (isAMD) {
|
|
11388
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
11389
|
+
}
|
|
11390
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
11240
11391
|
return isDefaultModule(module) ? module.default : module;
|
|
11241
11392
|
}
|
|
@@ -76,29 +76,40 @@
|
|
|
76
76
|
"esri/geometry/Polyline": "import Polyline from \"@arcgis/core/geometry/Polyline.js\";",
|
|
77
77
|
"esri/geometry/projection": "import * as projection from \"@arcgis/core/geometry/projection.js\";",
|
|
78
78
|
"esri/geometry/SpatialReference": "import SpatialReference from \"@arcgis/core/geometry/SpatialReference.js\";",
|
|
79
|
+
"esri/geometry/operators/affineTransformOperator": "import * as affineTransformOperator from \"@arcgis/core/geometry/operators/affineTransformOperator.js\";",
|
|
80
|
+
"esri/geometry/operators/areaOperator": "import * as areaOperator from \"@arcgis/core/geometry/operators/areaOperator.js\";",
|
|
81
|
+
"esri/geometry/operators/bufferOperator": "import * as bufferOperator from \"@arcgis/core/geometry/operators/bufferOperator.js\";",
|
|
79
82
|
"esri/geometry/operators/centroidOperator": "import * as centroidOperator from \"@arcgis/core/geometry/operators/centroidOperator.js\";",
|
|
80
83
|
"esri/geometry/operators/clipOperator": "import * as clipOperator from \"@arcgis/core/geometry/operators/clipOperator.js\";",
|
|
81
|
-
"esri/geometry/operators/cutOperator": "import * as cutOperator from \"@arcgis/core/geometry/operators/cutOperator.js\";",
|
|
82
84
|
"esri/geometry/operators/containsOperator": "import * as containsOperator from \"@arcgis/core/geometry/operators/containsOperator.js\";",
|
|
85
|
+
"esri/geometry/operators/convexHullOperator": "import * as convexHullOperator from \"@arcgis/core/geometry/operators/convexHullOperator.js\";",
|
|
83
86
|
"esri/geometry/operators/crossesOperator": "import * as crossesOperator from \"@arcgis/core/geometry/operators/crossesOperator.js\";",
|
|
87
|
+
"esri/geometry/operators/cutOperator": "import * as cutOperator from \"@arcgis/core/geometry/operators/cutOperator.js\";",
|
|
84
88
|
"esri/geometry/operators/densifyOperator": "import * as densifyOperator from \"@arcgis/core/geometry/operators/densifyOperator.js\";",
|
|
85
89
|
"esri/geometry/operators/differenceOperator": "import * as differenceOperator from \"@arcgis/core/geometry/operators/differenceOperator.js\";",
|
|
86
90
|
"esri/geometry/operators/distanceOperator": "import * as distanceOperator from \"@arcgis/core/geometry/operators/distanceOperator.js\";",
|
|
87
91
|
"esri/geometry/operators/disjointOperator": "import * as disjointOperator from \"@arcgis/core/geometry/operators/disjointOperator.js\";",
|
|
88
92
|
"esri/geometry/operators/equalsOperator": "import * as equalsOperator from \"@arcgis/core/geometry/operators/equalsOperator.js\";",
|
|
89
93
|
"esri/geometry/operators/geodesicBufferOperator": "import * as geodesicBufferOperator from \"@arcgis/core/geometry/operators/geodesicBufferOperator.js\";",
|
|
94
|
+
"esri/geometry/operators/geodeticAreaOperator": "import * as geodeticAreaOperator from \"@arcgis/core/geometry/operators/geodeticAreaOperator.js\";",
|
|
90
95
|
"esri/geometry/operators/geodeticDensifyOperator": "import * as geodeticDensifyOperator from \"@arcgis/core/geometry/operators/geodeticDensifyOperator.js\";",
|
|
91
96
|
"esri/geometry/operators/geodeticDistanceOperator": "import * as geodeticDistanceOperator from \"@arcgis/core/geometry/operators/geodeticDistanceOperator.js\";",
|
|
97
|
+
"esri/geometry/operators/geodeticLengthOperator": "import * as geodeticLengthOperator from \"@arcgis/core/geometry/operators/geodeticLengthOperator.js\";",
|
|
92
98
|
"esri/geometry/operators/generalizeOperator": "import * as generalizeOperator from \"@arcgis/core/geometry/operators/generalizeOperator.js\";",
|
|
99
|
+
"esri/geometry/operators/graphicBufferOperator": "import * as graphicBufferOperator from \"@arcgis/core/geometry/operators/graphicBufferOperator.js\";",
|
|
93
100
|
"esri/geometry/operators/intersectionOperator": "import * as intersectionOperator from \"@arcgis/core/geometry/operators/intersectionOperator.js\";",
|
|
94
101
|
"esri/geometry/operators/intersectsOperator": "import * as intersectsOperator from \"@arcgis/core/geometry/operators/intersectsOperator.js\";",
|
|
102
|
+
"esri/geometry/operators/lengthOperator": "import * as lengthOperator from \"@arcgis/core/geometry/operators/lengthOperator.js\";",
|
|
103
|
+
"esri/geometry/operators/offsetOperator": "import * as offsetOperator from \"@arcgis/core/geometry/operators/offsetOperator.js\";",
|
|
95
104
|
"esri/geometry/operators/overlapsOperator": "import * as overlapsOperator from \"@arcgis/core/geometry/operators/overlapsOperator.js\";",
|
|
96
105
|
"esri/geometry/operators/proximityOperator": "import * as proximityOperator from \"@arcgis/core/geometry/operators/proximityOperator.js\";",
|
|
97
106
|
"esri/geometry/operators/relateOperator": "import * as relateOperator from \"@arcgis/core/geometry/operators/relateOperator.js\";",
|
|
98
107
|
"esri/geometry/operators/simplifyOperator": "import * as simplifyOperator from \"@arcgis/core/geometry/operators/simplifyOperator.js\";",
|
|
108
|
+
"esri/geometry/operators/symmetricDifferenceOperator": "import * as symmetricDifferenceOperator from \"@arcgis/core/geometry/operators/symmetricDifferenceOperator.js\";",
|
|
99
109
|
"esri/geometry/operators/touchesOperator": "import * as touchesOperator from \"@arcgis/core/geometry/operators/touchesOperator.js\";",
|
|
100
110
|
"esri/geometry/operators/unionOperator": "import * as unionOperator from \"@arcgis/core/geometry/operators/unionOperator.js\";",
|
|
101
111
|
"esri/geometry/operators/withinOperator": "import * as withinOperator from \"@arcgis/core/geometry/operators/withinOperator.js\";",
|
|
112
|
+
"esri/geometry/operators/support/Transformation": "import Transformation from \"@arcgis/core/geometry/operators/support/Transformation.js\";",
|
|
102
113
|
"esri/geometry/support/geodesicUtils": "import * as geodesicUtils from \"@arcgis/core/geometry/support/geodesicUtils.js\";",
|
|
103
114
|
"esri/geometry/support/GeographicTransformation": "import GeographicTransformation from \"@arcgis/core/geometry/support/GeographicTransformation.js\";",
|
|
104
115
|
"esri/geometry/support/GeographicTransformationStep": "import GeographicTransformationStep from \"@arcgis/core/geometry/support/GeographicTransformationStep.js\";",
|
|
@@ -155,6 +166,7 @@
|
|
|
155
166
|
"esri/layers/MapNotesLayer": "import MapNotesLayer from \"@arcgis/core/layers/MapNotesLayer.js\";",
|
|
156
167
|
"esri/layers/MediaLayer": "import MediaLayer from \"@arcgis/core/layers/MediaLayer.js\";",
|
|
157
168
|
"esri/layers/ogc/wfsUtils": "import * as wfsUtils from \"@arcgis/core/layers/ogc/wfsUtils.js\";",
|
|
169
|
+
"esri/layers/ogc/wcsUtils": "import * as wcsUtils from \"@arcgis/core/layers/ogc/wcsUtils.js\";",
|
|
158
170
|
"esri/layers/OGCFeatureLayer": "import OGCFeatureLayer from \"@arcgis/core/layers/OGCFeatureLayer.js\";",
|
|
159
171
|
"esri/layers/OpenStreetMapLayer": "import OpenStreetMapLayer from \"@arcgis/core/layers/OpenStreetMapLayer.js\";",
|
|
160
172
|
"esri/layers/OrientedImageryLayer": "import OrientedImageryLayer from \"@arcgis/core/layers/OrientedImageryLayer.js\";",
|
|
@@ -313,6 +325,7 @@
|
|
|
313
325
|
"esri/renderers/PointCloudStretchRenderer": "import PointCloudStretchRenderer from \"@arcgis/core/renderers/PointCloudStretchRenderer.js\";",
|
|
314
326
|
"esri/renderers/PointCloudUniqueValueRenderer": "import PointCloudUniqueValueRenderer from \"@arcgis/core/renderers/PointCloudUniqueValueRenderer.js\";",
|
|
315
327
|
"esri/renderers/RasterColormapRenderer": "import RasterColormapRenderer from \"@arcgis/core/renderers/RasterColormapRenderer.js\";",
|
|
328
|
+
"esri/renderers/support/RasterPresetRenderer": "import RasterPresetRenderer from \"@arcgis/core/renderers/support/RasterPresetRenderer.js\";",
|
|
316
329
|
"esri/renderers/RasterShadedReliefRenderer": "import RasterShadedReliefRenderer from \"@arcgis/core/renderers/RasterShadedReliefRenderer.js\";",
|
|
317
330
|
"esri/renderers/RasterStretchRenderer": "import RasterStretchRenderer from \"@arcgis/core/renderers/RasterStretchRenderer.js\";",
|
|
318
331
|
"esri/renderers/Renderer": "import Renderer from \"@arcgis/core/renderers/Renderer.js\";",
|
|
@@ -667,6 +680,7 @@
|
|
|
667
680
|
"esri/views/layers/GeoJSONLayerView": "import GeoJSONLayerView from \"@arcgis/core/views/layers/GeoJSONLayerView.js\";",
|
|
668
681
|
"esri/views/layers/GeoRSSLayerView": "import GeoRSSLayerView from \"@arcgis/core/views/layers/GeoRSSLayerView.js\";",
|
|
669
682
|
"esri/views/layers/GraphicsLayerView": "import GraphicsLayerView from \"@arcgis/core/views/layers/GraphicsLayerView.js\";",
|
|
683
|
+
"esri/views/layers/GroupLayerView": "import GroupLayerView from \"@arcgis/core/views/layers/GroupLayerView.js\";",
|
|
670
684
|
"esri/views/layers/ImageryLayerView": "import ImageryLayerView from \"@arcgis/core/views/layers/ImageryLayerView.js\";",
|
|
671
685
|
"esri/views/layers/KMLLayerView": "import KMLLayerView from \"@arcgis/core/views/layers/KMLLayerView.js\";",
|
|
672
686
|
"esri/views/layers/LayerView": "import LayerView from \"@arcgis/core/views/layers/LayerView.js\";",
|
|
@@ -675,6 +689,7 @@
|
|
|
675
689
|
"esri/views/layers/PointCloudLayerView": "import PointCloudLayerView from \"@arcgis/core/views/layers/PointCloudLayerView.js\";",
|
|
676
690
|
"esri/views/layers/SceneLayerView": "import SceneLayerView from \"@arcgis/core/views/layers/SceneLayerView.js\";",
|
|
677
691
|
"esri/views/layers/StreamLayerView": "import StreamLayerView from \"@arcgis/core/views/layers/StreamLayerView.js\";",
|
|
692
|
+
"esri/views/layers/VectorTileLayerView": "import VectorTileLayerView from \"@arcgis/core/views/layers/VectorTileLayerView.js\";",
|
|
678
693
|
"esri/views/layers/ViewshedLayerView": "import ViewshedLayerView from \"@arcgis/core/views/layers/ViewshedLayerView.js\";",
|
|
679
694
|
"esri/views/layers/WFSLayerView": "import WFSLayerView from \"@arcgis/core/views/layers/WFSLayerView.js\";",
|
|
680
695
|
"esri/views/Magnifier": "import Magnifier from \"@arcgis/core/views/Magnifier.js\";",
|