@arcgis/core-adapter 4.32.0-next.4 → 4.32.0-next.7
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 +192 -54
- package/dist/index.d.cts +34 -18
- package/dist/index.d.ts +34 -18
- package/dist/index.js +176 -54
- package/package.json +3 -27
- package/src/index.ts +176 -54
- package/support/api-reference-esm-imports.json +14 -1
- package/support/arcgis.d.ts +1153 -273
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");
|
|
@@ -6645,6 +6658,19 @@ export async function newViewsLayersFeatureLayerView(properties: __esri.FeatureL
|
|
|
6645
6658
|
return new ModConstructor(properties);
|
|
6646
6659
|
}
|
|
6647
6660
|
|
|
6661
|
+
export async function importViewsLayersGroupLayerView(): Promise<typeof __esri.GroupLayerView> {
|
|
6662
|
+
if (isAMD) {
|
|
6663
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
6664
|
+
}
|
|
6665
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
6666
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6667
|
+
}
|
|
6668
|
+
|
|
6669
|
+
export async function newViewsLayersGroupLayerView(properties: __esri.GroupLayerViewProperties): Promise<__esri.GroupLayerView> {
|
|
6670
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
6671
|
+
return new ModConstructor(properties);
|
|
6672
|
+
}
|
|
6673
|
+
|
|
6648
6674
|
export async function importViewsLayersImageryLayerView(): Promise<typeof __esri.ImageryLayerView> {
|
|
6649
6675
|
if (isAMD) {
|
|
6650
6676
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -10008,6 +10034,30 @@ export async function importGeometryProjection(): Promise<typeof __esri.projecti
|
|
|
10008
10034
|
return isDefaultModule(module) ? module.default : module;
|
|
10009
10035
|
}
|
|
10010
10036
|
|
|
10037
|
+
export async function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator> {
|
|
10038
|
+
if (isAMD) {
|
|
10039
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
10040
|
+
}
|
|
10041
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
10042
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10043
|
+
}
|
|
10044
|
+
|
|
10045
|
+
export async function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator> {
|
|
10046
|
+
if (isAMD) {
|
|
10047
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
10048
|
+
}
|
|
10049
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
10050
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10051
|
+
}
|
|
10052
|
+
|
|
10053
|
+
export async function importGeometryOperatorsBufferOperator(): Promise<typeof __esri.bufferOperator> {
|
|
10054
|
+
if (isAMD) {
|
|
10055
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
10056
|
+
}
|
|
10057
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
10058
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10059
|
+
}
|
|
10060
|
+
|
|
10011
10061
|
export async function importGeometryOperatorsCentroidOperator(): Promise<typeof __esri.centroidOperator> {
|
|
10012
10062
|
if (isAMD) {
|
|
10013
10063
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -10024,19 +10074,19 @@ export async function importGeometryOperatorsClipOperator(): Promise<typeof __es
|
|
|
10024
10074
|
return isDefaultModule(module) ? module.default : module;
|
|
10025
10075
|
}
|
|
10026
10076
|
|
|
10027
|
-
export async function
|
|
10077
|
+
export async function importGeometryOperatorsContainsOperator(): Promise<typeof __esri.containsOperator> {
|
|
10028
10078
|
if (isAMD) {
|
|
10029
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10079
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
10030
10080
|
}
|
|
10031
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10081
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
10032
10082
|
return isDefaultModule(module) ? module.default : module;
|
|
10033
10083
|
}
|
|
10034
10084
|
|
|
10035
|
-
export async function
|
|
10085
|
+
export async function importGeometryOperatorsConvexHullOperator(): Promise<typeof __esri.convexHullOperator> {
|
|
10036
10086
|
if (isAMD) {
|
|
10037
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10087
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
10038
10088
|
}
|
|
10039
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10089
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
10040
10090
|
return isDefaultModule(module) ? module.default : module;
|
|
10041
10091
|
}
|
|
10042
10092
|
|
|
@@ -10048,6 +10098,14 @@ export async function importGeometryOperatorsCrossesOperator(): Promise<typeof _
|
|
|
10048
10098
|
return isDefaultModule(module) ? module.default : module;
|
|
10049
10099
|
}
|
|
10050
10100
|
|
|
10101
|
+
export async function importGeometryOperatorsCutOperator(): Promise<typeof __esri.cutOperator> {
|
|
10102
|
+
if (isAMD) {
|
|
10103
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
10104
|
+
}
|
|
10105
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
10106
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10107
|
+
}
|
|
10108
|
+
|
|
10051
10109
|
export async function importGeometryOperatorsDensifyOperator(): Promise<typeof __esri.densifyOperator> {
|
|
10052
10110
|
if (isAMD) {
|
|
10053
10111
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -10096,6 +10154,14 @@ export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<t
|
|
|
10096
10154
|
return isDefaultModule(module) ? module.default : module;
|
|
10097
10155
|
}
|
|
10098
10156
|
|
|
10157
|
+
export async function importGeometryOperatorsGeodeticAreaOperator(): Promise<typeof __esri.geodeticAreaOperator> {
|
|
10158
|
+
if (isAMD) {
|
|
10159
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
10160
|
+
}
|
|
10161
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
10162
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10163
|
+
}
|
|
10164
|
+
|
|
10099
10165
|
export async function importGeometryOperatorsGeodeticDensifyOperator(): Promise<typeof __esri.geodeticDensifyOperator> {
|
|
10100
10166
|
if (isAMD) {
|
|
10101
10167
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -10112,6 +10178,14 @@ export async function importGeometryOperatorsGeodeticDistanceOperator(): Promise
|
|
|
10112
10178
|
return isDefaultModule(module) ? module.default : module;
|
|
10113
10179
|
}
|
|
10114
10180
|
|
|
10181
|
+
export async function importGeometryOperatorsGeodeticLengthOperator(): Promise<typeof __esri.geodeticLengthOperator> {
|
|
10182
|
+
if (isAMD) {
|
|
10183
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
10184
|
+
}
|
|
10185
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10186
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10187
|
+
}
|
|
10188
|
+
|
|
10115
10189
|
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10116
10190
|
if (isAMD) {
|
|
10117
10191
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -10120,6 +10194,14 @@ export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeo
|
|
|
10120
10194
|
return isDefaultModule(module) ? module.default : module;
|
|
10121
10195
|
}
|
|
10122
10196
|
|
|
10197
|
+
export async function importGeometryOperatorsGraphicBufferOperator(): Promise<typeof __esri.graphicBufferOperator> {
|
|
10198
|
+
if (isAMD) {
|
|
10199
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
10200
|
+
}
|
|
10201
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
10202
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10203
|
+
}
|
|
10204
|
+
|
|
10123
10205
|
export async function importGeometryOperatorsIntersectionOperator(): Promise<typeof __esri.intersectionOperator> {
|
|
10124
10206
|
if (isAMD) {
|
|
10125
10207
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -10136,6 +10218,22 @@ export async function importGeometryOperatorsIntersectsOperator(): Promise<typeo
|
|
|
10136
10218
|
return isDefaultModule(module) ? module.default : module;
|
|
10137
10219
|
}
|
|
10138
10220
|
|
|
10221
|
+
export async function importGeometryOperatorsLengthOperator(): Promise<typeof __esri.lengthOperator> {
|
|
10222
|
+
if (isAMD) {
|
|
10223
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
10224
|
+
}
|
|
10225
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
10226
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10227
|
+
}
|
|
10228
|
+
|
|
10229
|
+
export async function importGeometryOperatorsOffsetOperator(): Promise<typeof __esri.offsetOperator> {
|
|
10230
|
+
if (isAMD) {
|
|
10231
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
10232
|
+
}
|
|
10233
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
10234
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10235
|
+
}
|
|
10236
|
+
|
|
10139
10237
|
export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof __esri.overlapsOperator> {
|
|
10140
10238
|
if (isAMD) {
|
|
10141
10239
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -10168,6 +10266,14 @@ export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof
|
|
|
10168
10266
|
return isDefaultModule(module) ? module.default : module;
|
|
10169
10267
|
}
|
|
10170
10268
|
|
|
10269
|
+
export async function importGeometryOperatorsSymmetricDifferenceOperator(): Promise<typeof __esri.symmetricDifferenceOperator> {
|
|
10270
|
+
if (isAMD) {
|
|
10271
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
10272
|
+
}
|
|
10273
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
10274
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10275
|
+
}
|
|
10276
|
+
|
|
10171
10277
|
export async function importGeometryOperatorsTouchesOperator(): Promise<typeof __esri.touchesOperator> {
|
|
10172
10278
|
if (isAMD) {
|
|
10173
10279
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -10264,6 +10370,14 @@ export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils>
|
|
|
10264
10370
|
return isDefaultModule(module) ? module.default : module;
|
|
10265
10371
|
}
|
|
10266
10372
|
|
|
10373
|
+
export async function importLayersOgcWcsUtils(): Promise<typeof __esri.wcsUtils> {
|
|
10374
|
+
if (isAMD) {
|
|
10375
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
10376
|
+
}
|
|
10377
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
10378
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10379
|
+
}
|
|
10380
|
+
|
|
10267
10381
|
export async function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils> {
|
|
10268
10382
|
if (isAMD) {
|
|
10269
10383
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -11104,67 +11218,67 @@ export async function importWidgetsSupportWidget(): Promise<typeof __esri.widget
|
|
|
11104
11218
|
return isDefaultModule(module) ? module.default : module;
|
|
11105
11219
|
}
|
|
11106
11220
|
|
|
11107
|
-
export async function
|
|
11221
|
+
export async function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils> {
|
|
11108
11222
|
if (isAMD) {
|
|
11109
|
-
return await window.$arcgis.import("esri/applications/
|
|
11223
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
11110
11224
|
}
|
|
11111
|
-
const module = await import("@arcgis/core/applications/
|
|
11225
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
11112
11226
|
return isDefaultModule(module) ? module.default : module;
|
|
11113
11227
|
}
|
|
11114
11228
|
|
|
11115
|
-
export async function
|
|
11229
|
+
export async function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils> {
|
|
11116
11230
|
if (isAMD) {
|
|
11117
|
-
return await window.$arcgis.import("esri/applications/
|
|
11231
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
11118
11232
|
}
|
|
11119
|
-
const module = await import("@arcgis/core/applications/
|
|
11233
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
11120
11234
|
return isDefaultModule(module) ? module.default : module;
|
|
11121
11235
|
}
|
|
11122
11236
|
|
|
11123
|
-
export async function
|
|
11237
|
+
export async function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits> {
|
|
11124
11238
|
if (isAMD) {
|
|
11125
|
-
return await window.$arcgis.import("esri/applications/
|
|
11239
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
11126
11240
|
}
|
|
11127
|
-
const module = await import("@arcgis/core/applications/
|
|
11241
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
11128
11242
|
return isDefaultModule(module) ? module.default : module;
|
|
11129
11243
|
}
|
|
11130
11244
|
|
|
11131
|
-
export async function
|
|
11245
|
+
export async function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils> {
|
|
11132
11246
|
if (isAMD) {
|
|
11133
|
-
return await window.$arcgis.import("esri/applications/
|
|
11247
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
11134
11248
|
}
|
|
11135
|
-
const module = await import("@arcgis/core/applications/
|
|
11249
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
11136
11250
|
return isDefaultModule(module) ? module.default : module;
|
|
11137
11251
|
}
|
|
11138
11252
|
|
|
11139
|
-
export async function
|
|
11253
|
+
export async function importApplicationsComponentsLayerOriginUtils(): Promise<typeof __esri.layerOriginUtils> {
|
|
11140
11254
|
if (isAMD) {
|
|
11141
|
-
return await window.$arcgis.import("esri/applications/
|
|
11255
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
11142
11256
|
}
|
|
11143
|
-
const module = await import("@arcgis/core/applications/
|
|
11257
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
11144
11258
|
return isDefaultModule(module) ? module.default : module;
|
|
11145
11259
|
}
|
|
11146
11260
|
|
|
11147
|
-
export async function
|
|
11261
|
+
export async function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D> {
|
|
11148
11262
|
if (isAMD) {
|
|
11149
|
-
return await window.$arcgis.import("esri/applications/
|
|
11263
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
11150
11264
|
}
|
|
11151
|
-
const module = await import("@arcgis/core/applications/
|
|
11265
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
11152
11266
|
return isDefaultModule(module) ? module.default : module;
|
|
11153
11267
|
}
|
|
11154
11268
|
|
|
11155
|
-
export async function
|
|
11269
|
+
export async function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils> {
|
|
11156
11270
|
if (isAMD) {
|
|
11157
|
-
return await window.$arcgis.import("esri/applications/
|
|
11271
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
11158
11272
|
}
|
|
11159
|
-
const module = await import("@arcgis/core/applications/
|
|
11273
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
11160
11274
|
return isDefaultModule(module) ? module.default : module;
|
|
11161
11275
|
}
|
|
11162
11276
|
|
|
11163
|
-
export async function
|
|
11277
|
+
export async function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils> {
|
|
11164
11278
|
if (isAMD) {
|
|
11165
|
-
return await window.$arcgis.import("esri/applications/
|
|
11279
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
11166
11280
|
}
|
|
11167
|
-
const module = await import("@arcgis/core/applications/
|
|
11281
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
11168
11282
|
return isDefaultModule(module) ? module.default : module;
|
|
11169
11283
|
}
|
|
11170
11284
|
|
|
@@ -11176,66 +11290,74 @@ export async function importApplicationsComponentsWebStyleSymbolUtils(): Promise
|
|
|
11176
11290
|
return isDefaultModule(module) ? module.default : module;
|
|
11177
11291
|
}
|
|
11178
11292
|
|
|
11179
|
-
export async function
|
|
11293
|
+
export async function importApplicationsExcaliburVideoViewUtils(): Promise<typeof __esri.videoViewUtils> {
|
|
11180
11294
|
if (isAMD) {
|
|
11181
|
-
return await window.$arcgis.import("esri/applications/
|
|
11295
|
+
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
11182
11296
|
}
|
|
11183
|
-
const module = await import("@arcgis/core/applications/
|
|
11297
|
+
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
11184
11298
|
return isDefaultModule(module) ? module.default : module;
|
|
11185
11299
|
}
|
|
11186
11300
|
|
|
11187
|
-
export async function
|
|
11301
|
+
export async function importApplicationsMapViewerMediaUtils(): Promise<typeof __esri.mediaUtils> {
|
|
11188
11302
|
if (isAMD) {
|
|
11189
|
-
return await window.$arcgis.import("esri/applications/
|
|
11303
|
+
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
11190
11304
|
}
|
|
11191
|
-
const module = await import("@arcgis/core/applications/
|
|
11305
|
+
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
11192
11306
|
return isDefaultModule(module) ? module.default : module;
|
|
11193
11307
|
}
|
|
11194
11308
|
|
|
11195
|
-
export async function
|
|
11309
|
+
export async function importApplicationsSceneViewerColorUtils(): Promise<typeof __esri.SceneViewerColorUtils> {
|
|
11196
11310
|
if (isAMD) {
|
|
11197
|
-
return await window.$arcgis.import("esri/applications/
|
|
11311
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
11198
11312
|
}
|
|
11199
|
-
const module = await import("@arcgis/core/applications/
|
|
11313
|
+
const module = await import("@arcgis/core/applications/SceneViewer/colorUtils.js");
|
|
11200
11314
|
return isDefaultModule(module) ? module.default : module;
|
|
11201
11315
|
}
|
|
11202
11316
|
|
|
11203
|
-
export async function
|
|
11317
|
+
export async function importApplicationsSceneViewerDevEnvironmentUtils(): Promise<typeof __esri.devEnvironmentUtils> {
|
|
11204
11318
|
if (isAMD) {
|
|
11205
|
-
return await window.$arcgis.import("esri/applications/
|
|
11319
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
11206
11320
|
}
|
|
11207
|
-
const module = await import("@arcgis/core/applications/
|
|
11321
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
11208
11322
|
return isDefaultModule(module) ? module.default : module;
|
|
11209
11323
|
}
|
|
11210
11324
|
|
|
11211
|
-
export async function
|
|
11325
|
+
export async function importApplicationsSceneViewerLayerUtils(): Promise<typeof __esri.layerUtils> {
|
|
11212
11326
|
if (isAMD) {
|
|
11213
|
-
return await window.$arcgis.import("esri/applications/
|
|
11327
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
11214
11328
|
}
|
|
11215
|
-
const module = await import("@arcgis/core/applications/
|
|
11329
|
+
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
11216
11330
|
return isDefaultModule(module) ? module.default : module;
|
|
11217
11331
|
}
|
|
11218
11332
|
|
|
11219
|
-
export async function
|
|
11333
|
+
export async function importApplicationsSceneViewerSceneViewerUtils(): Promise<typeof __esri.sceneViewerUtils> {
|
|
11220
11334
|
if (isAMD) {
|
|
11221
|
-
return await window.$arcgis.import("esri/applications/
|
|
11335
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
11222
11336
|
}
|
|
11223
|
-
const module = await import("@arcgis/core/applications/
|
|
11337
|
+
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
11224
11338
|
return isDefaultModule(module) ? module.default : module;
|
|
11225
11339
|
}
|
|
11226
11340
|
|
|
11227
|
-
export async function
|
|
11341
|
+
export async function importApplicationsSceneViewerSymbolUtils(): Promise<typeof __esri.SceneViewerSymbolUtils> {
|
|
11228
11342
|
if (isAMD) {
|
|
11229
|
-
return await window.$arcgis.import("esri/applications/
|
|
11343
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
11230
11344
|
}
|
|
11231
|
-
const module = await import("@arcgis/core/applications/
|
|
11345
|
+
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
11232
11346
|
return isDefaultModule(module) ? module.default : module;
|
|
11233
11347
|
}
|
|
11234
11348
|
|
|
11235
|
-
export async function
|
|
11349
|
+
export async function importApplicationsUrbanMeshUtils(): Promise<typeof __esri.UrbanMeshUtils> {
|
|
11236
11350
|
if (isAMD) {
|
|
11237
|
-
return await window.$arcgis.import("esri/applications/
|
|
11351
|
+
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
11238
11352
|
}
|
|
11239
|
-
const module = await import("@arcgis/core/applications/
|
|
11353
|
+
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
11354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11355
|
+
}
|
|
11356
|
+
|
|
11357
|
+
export async function importApplicationsWebEditorSketchUtils(): Promise<typeof __esri.sketchUtils> {
|
|
11358
|
+
if (isAMD) {
|
|
11359
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
11360
|
+
}
|
|
11361
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
11240
11362
|
return isDefaultModule(module) ? module.default : module;
|
|
11241
11363
|
}
|
|
@@ -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\";",
|
|
@@ -667,6 +679,7 @@
|
|
|
667
679
|
"esri/views/layers/GeoJSONLayerView": "import GeoJSONLayerView from \"@arcgis/core/views/layers/GeoJSONLayerView.js\";",
|
|
668
680
|
"esri/views/layers/GeoRSSLayerView": "import GeoRSSLayerView from \"@arcgis/core/views/layers/GeoRSSLayerView.js\";",
|
|
669
681
|
"esri/views/layers/GraphicsLayerView": "import GraphicsLayerView from \"@arcgis/core/views/layers/GraphicsLayerView.js\";",
|
|
682
|
+
"esri/views/layers/GroupLayerView": "import GroupLayerView from \"@arcgis/core/views/layers/GroupLayerView.js\";",
|
|
670
683
|
"esri/views/layers/ImageryLayerView": "import ImageryLayerView from \"@arcgis/core/views/layers/ImageryLayerView.js\";",
|
|
671
684
|
"esri/views/layers/KMLLayerView": "import KMLLayerView from \"@arcgis/core/views/layers/KMLLayerView.js\";",
|
|
672
685
|
"esri/views/layers/LayerView": "import LayerView from \"@arcgis/core/views/layers/LayerView.js\";",
|