@arcgis/core-adapter 4.34.0-next.13 → 4.34.0-next.130
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/LICENSE.md +1 -1
- package/README.md +2 -10
- package/dist/index.cjs +564 -162
- package/dist/index.d.cts +95 -35
- package/dist/index.d.ts +95 -35
- package/dist/index.js +564 -162
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisLengthDimension() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -203,6 +214,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
214
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
215
|
return new ModConstructor(properties);
|
|
205
216
|
}
|
|
217
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
218
|
+
if (isAMD) {
|
|
219
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
220
|
+
}
|
|
221
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
223
|
+
}
|
|
224
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
225
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
|
+
return new ModConstructor(properties);
|
|
227
|
+
}
|
|
228
|
+
async function importAnalysisElevationProfileElevationProfileGroundLine() {
|
|
229
|
+
if (isAMD) {
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileGroundLine");
|
|
231
|
+
}
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileGroundLine.js");
|
|
233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
234
|
+
}
|
|
235
|
+
async function newAnalysisElevationProfileElevationProfileGroundLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileGroundLine();
|
|
237
|
+
return new ModConstructor(properties);
|
|
238
|
+
}
|
|
239
|
+
async function importAnalysisElevationProfileElevationProfileInputLine() {
|
|
240
|
+
if (isAMD) {
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileInputLine");
|
|
242
|
+
}
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileInputLine.js");
|
|
244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
245
|
+
}
|
|
246
|
+
async function newAnalysisElevationProfileElevationProfileInputLine(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileInputLine();
|
|
248
|
+
return new ModConstructor(properties);
|
|
249
|
+
}
|
|
250
|
+
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
251
|
+
if (isAMD) {
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
253
|
+
}
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
255
|
+
return isDefaultModule(module) ? module.default : module;
|
|
256
|
+
}
|
|
257
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
259
|
+
return new ModConstructor(properties);
|
|
260
|
+
}
|
|
261
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
262
|
+
if (isAMD) {
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
264
|
+
}
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
266
|
+
return isDefaultModule(module) ? module.default : module;
|
|
267
|
+
}
|
|
268
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
270
|
+
return new ModConstructor(properties);
|
|
271
|
+
}
|
|
272
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importAnalysisElevationProfileElevationProfileQueryLine() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileQueryLine");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileQueryLine.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisElevationProfileElevationProfileQueryLine(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileQueryLine();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileElevationProfileSceneLine() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileSceneLine");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileSceneLine.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileElevationProfileSceneLine(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileSceneLine();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
305
|
+
async function importAnalysisElevationProfileElevationProfileUnits() {
|
|
306
|
+
if (isAMD) {
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileUnits");
|
|
308
|
+
}
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileUnits.js");
|
|
310
|
+
return isDefaultModule(module) ? module.default : module;
|
|
311
|
+
}
|
|
312
|
+
async function newAnalysisElevationProfileElevationProfileUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileUnits();
|
|
314
|
+
return new ModConstructor(properties);
|
|
315
|
+
}
|
|
316
|
+
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
317
|
+
if (isAMD) {
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileViewOptions");
|
|
319
|
+
}
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileViewOptions.js");
|
|
321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
322
|
+
}
|
|
323
|
+
async function newAnalysisElevationProfileElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
325
|
+
return new ModConstructor(properties);
|
|
326
|
+
}
|
|
206
327
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
207
328
|
if (isAMD) {
|
|
208
329
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -214,6 +335,39 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
214
335
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
215
336
|
return new ModConstructor(properties);
|
|
216
337
|
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
347
|
+
return new ModConstructor(properties);
|
|
348
|
+
}
|
|
349
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
360
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
361
|
+
if (isAMD) {
|
|
362
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
363
|
+
}
|
|
364
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
366
|
+
}
|
|
367
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
368
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
369
|
+
return new ModConstructor(properties);
|
|
370
|
+
}
|
|
217
371
|
async function importCoreAccessor() {
|
|
218
372
|
if (isAMD) {
|
|
219
373
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -830,6 +984,28 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
830
984
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
831
985
|
return new ModConstructor(properties);
|
|
832
986
|
}
|
|
987
|
+
async function importGraphicGraphicOrigin() {
|
|
988
|
+
if (isAMD) {
|
|
989
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
990
|
+
}
|
|
991
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
992
|
+
return isDefaultModule(module) ? module.default : module;
|
|
993
|
+
}
|
|
994
|
+
async function newGraphicGraphicOrigin() {
|
|
995
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
996
|
+
return new ModConstructor();
|
|
997
|
+
}
|
|
998
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
999
|
+
if (isAMD) {
|
|
1000
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1001
|
+
}
|
|
1002
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1003
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
+
}
|
|
1005
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1006
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1007
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1008
|
+
}
|
|
833
1009
|
async function importAttributeBinsGraphic() {
|
|
834
1010
|
if (isAMD) {
|
|
835
1011
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1820,6 +1996,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1820
1996
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1821
1997
|
return new ModConstructor(properties);
|
|
1822
1998
|
}
|
|
1999
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2000
|
+
if (isAMD) {
|
|
2001
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2002
|
+
}
|
|
2003
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2004
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2005
|
+
}
|
|
2006
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2007
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2008
|
+
return new ModConstructor(properties);
|
|
2009
|
+
}
|
|
1823
2010
|
async function importLayersSupportPublishingInfo() {
|
|
1824
2011
|
if (isAMD) {
|
|
1825
2012
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3371,6 +3558,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3371
3558
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3372
3559
|
return new ModConstructor(properties);
|
|
3373
3560
|
}
|
|
3561
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3562
|
+
if (isAMD) {
|
|
3563
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3564
|
+
}
|
|
3565
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3566
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3567
|
+
}
|
|
3568
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3569
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3570
|
+
return new ModConstructor(properties);
|
|
3571
|
+
}
|
|
3572
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3573
|
+
if (isAMD) {
|
|
3574
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3575
|
+
}
|
|
3576
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3577
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3578
|
+
}
|
|
3579
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3580
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3581
|
+
return new ModConstructor(properties);
|
|
3582
|
+
}
|
|
3374
3583
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3375
3584
|
if (isAMD) {
|
|
3376
3585
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3393,6 +3602,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3393
3602
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3394
3603
|
return new ModConstructor(properties);
|
|
3395
3604
|
}
|
|
3605
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3606
|
+
if (isAMD) {
|
|
3607
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3608
|
+
}
|
|
3609
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3610
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3611
|
+
}
|
|
3612
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3613
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3614
|
+
return new ModConstructor(properties);
|
|
3615
|
+
}
|
|
3616
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3617
|
+
if (isAMD) {
|
|
3618
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3619
|
+
}
|
|
3620
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3621
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3622
|
+
}
|
|
3623
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3624
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3625
|
+
return new ModConstructor(properties);
|
|
3626
|
+
}
|
|
3396
3627
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3397
3628
|
if (isAMD) {
|
|
3398
3629
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3404,6 +3635,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3404
3635
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3405
3636
|
return new ModConstructor(properties);
|
|
3406
3637
|
}
|
|
3638
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3639
|
+
if (isAMD) {
|
|
3640
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3641
|
+
}
|
|
3642
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3643
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3644
|
+
}
|
|
3645
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3646
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3647
|
+
return new ModConstructor(properties);
|
|
3648
|
+
}
|
|
3407
3649
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3408
3650
|
if (isAMD) {
|
|
3409
3651
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3525,6 +3767,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3525
3767
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3526
3768
|
return new ModConstructor(properties);
|
|
3527
3769
|
}
|
|
3770
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3771
|
+
if (isAMD) {
|
|
3772
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3773
|
+
}
|
|
3774
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3775
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3776
|
+
}
|
|
3777
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3778
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3779
|
+
return new ModConstructor(properties);
|
|
3780
|
+
}
|
|
3781
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3782
|
+
if (isAMD) {
|
|
3783
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3784
|
+
}
|
|
3785
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3786
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3787
|
+
}
|
|
3788
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3789
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3790
|
+
return new ModConstructor(properties);
|
|
3791
|
+
}
|
|
3792
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3793
|
+
if (isAMD) {
|
|
3794
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3795
|
+
}
|
|
3796
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3797
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3798
|
+
}
|
|
3799
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3800
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3801
|
+
return new ModConstructor(properties);
|
|
3802
|
+
}
|
|
3528
3803
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3529
3804
|
if (isAMD) {
|
|
3530
3805
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -4614,6 +4889,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
4614
4889
|
const ModConstructor = await importRestSupportJobInfo();
|
|
4615
4890
|
return new ModConstructor(properties);
|
|
4616
4891
|
}
|
|
4892
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4893
|
+
if (isAMD) {
|
|
4894
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4895
|
+
}
|
|
4896
|
+
const module = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4897
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4898
|
+
}
|
|
4899
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4900
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4901
|
+
return new ModConstructor(properties);
|
|
4902
|
+
}
|
|
4617
4903
|
async function importRestSupportLegendLayer() {
|
|
4618
4904
|
if (isAMD) {
|
|
4619
4905
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -5637,28 +5923,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
5637
5923
|
const ModConstructor = await importTimeTimeInterval();
|
|
5638
5924
|
return new ModConstructor(properties);
|
|
5639
5925
|
}
|
|
5640
|
-
async function importTimeExtent() {
|
|
5641
|
-
if (isAMD) {
|
|
5642
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
5643
|
-
}
|
|
5644
|
-
const module = await import("@arcgis/core/TimeExtent.js");
|
|
5645
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5646
|
-
}
|
|
5647
|
-
async function newTimeExtent(properties) {
|
|
5648
|
-
const ModConstructor = await importTimeExtent();
|
|
5649
|
-
return new ModConstructor(properties);
|
|
5650
|
-
}
|
|
5651
|
-
async function importTimeInterval() {
|
|
5652
|
-
if (isAMD) {
|
|
5653
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
5654
|
-
}
|
|
5655
|
-
const module = await import("@arcgis/core/TimeInterval.js");
|
|
5656
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5657
|
-
}
|
|
5658
|
-
async function newTimeInterval(properties) {
|
|
5659
|
-
const ModConstructor = await importTimeInterval();
|
|
5660
|
-
return new ModConstructor(properties);
|
|
5661
|
-
}
|
|
5662
5926
|
async function importVersionManagementVersioningState() {
|
|
5663
5927
|
if (isAMD) {
|
|
5664
5928
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -5692,26 +5956,26 @@ async function newViewpoint(properties) {
|
|
|
5692
5956
|
const ModConstructor = await importViewpoint();
|
|
5693
5957
|
return new ModConstructor(properties);
|
|
5694
5958
|
}
|
|
5695
|
-
async function
|
|
5959
|
+
async function importViewsBasemapView() {
|
|
5696
5960
|
if (isAMD) {
|
|
5697
|
-
return await window.$arcgis.import("esri/views/
|
|
5961
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5698
5962
|
}
|
|
5699
|
-
const module = await import("@arcgis/core/views/
|
|
5963
|
+
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
5700
5964
|
return isDefaultModule(module) ? module.default : module;
|
|
5701
5965
|
}
|
|
5702
|
-
async function
|
|
5703
|
-
const ModConstructor = await
|
|
5966
|
+
async function newViewsBasemapView(properties) {
|
|
5967
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5704
5968
|
return new ModConstructor(properties);
|
|
5705
5969
|
}
|
|
5706
|
-
async function
|
|
5970
|
+
async function importViewsGroundView() {
|
|
5707
5971
|
if (isAMD) {
|
|
5708
|
-
return await window.$arcgis.import("esri/views/
|
|
5972
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5709
5973
|
}
|
|
5710
|
-
const module = await import("@arcgis/core/views/
|
|
5974
|
+
const module = await import("@arcgis/core/views/GroundView.js");
|
|
5711
5975
|
return isDefaultModule(module) ? module.default : module;
|
|
5712
5976
|
}
|
|
5713
|
-
async function
|
|
5714
|
-
const ModConstructor = await
|
|
5977
|
+
async function newViewsGroundView(properties) {
|
|
5978
|
+
const ModConstructor = await importViewsGroundView();
|
|
5715
5979
|
return new ModConstructor(properties);
|
|
5716
5980
|
}
|
|
5717
5981
|
async function importViews2dViewState() {
|
|
@@ -5725,6 +5989,39 @@ async function newViews2dViewState(properties) {
|
|
|
5725
5989
|
const ModConstructor = await importViews2dViewState();
|
|
5726
5990
|
return new ModConstructor(properties);
|
|
5727
5991
|
}
|
|
5992
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
5993
|
+
if (isAMD) {
|
|
5994
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
5995
|
+
}
|
|
5996
|
+
const module = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
5997
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5998
|
+
}
|
|
5999
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6000
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6001
|
+
return new ModConstructor(properties);
|
|
6002
|
+
}
|
|
6003
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6004
|
+
if (isAMD) {
|
|
6005
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6006
|
+
}
|
|
6007
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6008
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6009
|
+
}
|
|
6010
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6011
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6012
|
+
return new ModConstructor(properties);
|
|
6013
|
+
}
|
|
6014
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6015
|
+
if (isAMD) {
|
|
6016
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6017
|
+
}
|
|
6018
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
+
}
|
|
6021
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6022
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6023
|
+
return new ModConstructor(properties);
|
|
6024
|
+
}
|
|
5728
6025
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5729
6026
|
if (isAMD) {
|
|
5730
6027
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5758,6 +6055,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5758
6055
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5759
6056
|
return new ModConstructor(properties);
|
|
5760
6057
|
}
|
|
6058
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6059
|
+
if (isAMD) {
|
|
6060
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6061
|
+
}
|
|
6062
|
+
const module = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6063
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6064
|
+
}
|
|
6065
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6066
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6067
|
+
return new ModConstructor(properties);
|
|
6068
|
+
}
|
|
5761
6069
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5762
6070
|
if (isAMD) {
|
|
5763
6071
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5802,6 +6110,28 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5802
6110
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5803
6111
|
return new ModConstructor(properties);
|
|
5804
6112
|
}
|
|
6113
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6114
|
+
if (isAMD) {
|
|
6115
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6116
|
+
}
|
|
6117
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6118
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6119
|
+
}
|
|
6120
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6121
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6122
|
+
return new ModConstructor(properties);
|
|
6123
|
+
}
|
|
6124
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6125
|
+
if (isAMD) {
|
|
6126
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6127
|
+
}
|
|
6128
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6129
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
+
}
|
|
6131
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6132
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6133
|
+
return new ModConstructor(properties);
|
|
6134
|
+
}
|
|
5805
6135
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5806
6136
|
if (isAMD) {
|
|
5807
6137
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5890,15 +6220,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5890
6220
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5891
6221
|
return new ModConstructor(properties);
|
|
5892
6222
|
}
|
|
5893
|
-
async function
|
|
6223
|
+
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5894
6224
|
if (isAMD) {
|
|
5895
|
-
return await window.$arcgis.import("esri/views/
|
|
6225
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5896
6226
|
}
|
|
5897
|
-
const module = await import("@arcgis/core/views/
|
|
6227
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5898
6228
|
return isDefaultModule(module) ? module.default : module;
|
|
5899
6229
|
}
|
|
5900
|
-
async function
|
|
5901
|
-
const ModConstructor = await
|
|
6230
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6231
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
5902
6232
|
return new ModConstructor(properties);
|
|
5903
6233
|
}
|
|
5904
6234
|
async function importViewsDrawDraw() {
|
|
@@ -5978,15 +6308,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
5978
6308
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
5979
6309
|
return new ModConstructor(properties);
|
|
5980
6310
|
}
|
|
5981
|
-
async function
|
|
6311
|
+
async function importViewsInputInput() {
|
|
5982
6312
|
if (isAMD) {
|
|
5983
|
-
return await window.$arcgis.import("esri/views/
|
|
6313
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
5984
6314
|
}
|
|
5985
|
-
const module = await import("@arcgis/core/views/
|
|
6315
|
+
const module = await import("@arcgis/core/views/input/Input.js");
|
|
5986
6316
|
return isDefaultModule(module) ? module.default : module;
|
|
5987
6317
|
}
|
|
5988
|
-
async function
|
|
5989
|
-
const ModConstructor = await
|
|
6318
|
+
async function newViewsInputInput(properties) {
|
|
6319
|
+
const ModConstructor = await importViewsInputInput();
|
|
5990
6320
|
return new ModConstructor(properties);
|
|
5991
6321
|
}
|
|
5992
6322
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6011,17 +6341,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6011
6341
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6012
6342
|
return new ModConstructor(properties);
|
|
6013
6343
|
}
|
|
6014
|
-
async function importViewsInputInput() {
|
|
6015
|
-
if (isAMD) {
|
|
6016
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6017
|
-
}
|
|
6018
|
-
const module = await import("@arcgis/core/views/input/Input.js");
|
|
6019
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
-
}
|
|
6021
|
-
async function newViewsInputInput(properties) {
|
|
6022
|
-
const ModConstructor = await importViewsInputInput();
|
|
6023
|
-
return new ModConstructor(properties);
|
|
6024
|
-
}
|
|
6025
6344
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6026
6345
|
if (isAMD) {
|
|
6027
6346
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6110,39 +6429,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6110
6429
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6111
6430
|
return new ModConstructor(properties);
|
|
6112
6431
|
}
|
|
6113
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6114
|
-
if (isAMD) {
|
|
6115
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6116
|
-
}
|
|
6117
|
-
const module = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6118
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6119
|
-
}
|
|
6120
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6121
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6122
|
-
return new ModConstructor(properties);
|
|
6123
|
-
}
|
|
6124
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6125
|
-
if (isAMD) {
|
|
6126
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6127
|
-
}
|
|
6128
|
-
const module = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6129
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
-
}
|
|
6131
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6132
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6133
|
-
return new ModConstructor(properties);
|
|
6134
|
-
}
|
|
6135
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6136
|
-
if (isAMD) {
|
|
6137
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6138
|
-
}
|
|
6139
|
-
const module = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6140
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
-
}
|
|
6142
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6143
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6144
|
-
return new ModConstructor(properties);
|
|
6145
|
-
}
|
|
6146
6432
|
async function importViewsLayersDimensionLayerView() {
|
|
6147
6433
|
if (isAMD) {
|
|
6148
6434
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6154,17 +6440,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6154
6440
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6155
6441
|
return new ModConstructor(properties);
|
|
6156
6442
|
}
|
|
6157
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6158
|
-
if (isAMD) {
|
|
6159
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6160
|
-
}
|
|
6161
|
-
const module = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6162
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6163
|
-
}
|
|
6164
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6165
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6166
|
-
return new ModConstructor(properties);
|
|
6167
|
-
}
|
|
6168
6443
|
async function importViewsLayersGroupLayerView() {
|
|
6169
6444
|
if (isAMD) {
|
|
6170
6445
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6231,28 +6506,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6231
6506
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6232
6507
|
return new ModConstructor(properties);
|
|
6233
6508
|
}
|
|
6234
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6235
|
-
if (isAMD) {
|
|
6236
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6237
|
-
}
|
|
6238
|
-
const module = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6239
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6240
|
-
}
|
|
6241
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6242
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6243
|
-
return new ModConstructor(properties);
|
|
6244
|
-
}
|
|
6245
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6246
|
-
if (isAMD) {
|
|
6247
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6248
|
-
}
|
|
6249
|
-
const module = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6250
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6251
|
-
}
|
|
6252
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6253
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6254
|
-
return new ModConstructor(properties);
|
|
6255
|
-
}
|
|
6256
6509
|
async function importViewsLayersSceneLayerView() {
|
|
6257
6510
|
if (isAMD) {
|
|
6258
6511
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6264,17 +6517,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6264
6517
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6265
6518
|
return new ModConstructor(properties);
|
|
6266
6519
|
}
|
|
6267
|
-
async function importViewsLayersStreamLayerView() {
|
|
6268
|
-
if (isAMD) {
|
|
6269
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6270
|
-
}
|
|
6271
|
-
const module = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6272
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6273
|
-
}
|
|
6274
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6275
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6276
|
-
return new ModConstructor(properties);
|
|
6277
|
-
}
|
|
6278
6520
|
async function importViewsLayersViewshedLayerView() {
|
|
6279
6521
|
if (isAMD) {
|
|
6280
6522
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7177,6 +7419,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7177
7419
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7178
7420
|
return new ModConstructor(properties);
|
|
7179
7421
|
}
|
|
7422
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7423
|
+
if (isAMD) {
|
|
7424
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7425
|
+
}
|
|
7426
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7427
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7428
|
+
}
|
|
7429
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7430
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7431
|
+
return new ModConstructor(properties);
|
|
7432
|
+
}
|
|
7433
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7434
|
+
if (isAMD) {
|
|
7435
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7436
|
+
}
|
|
7437
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7438
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7439
|
+
}
|
|
7440
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7441
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7442
|
+
return new ModConstructor(properties);
|
|
7443
|
+
}
|
|
7444
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7445
|
+
if (isAMD) {
|
|
7446
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7447
|
+
}
|
|
7448
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7449
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7450
|
+
}
|
|
7451
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7452
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7453
|
+
return new ModConstructor(properties);
|
|
7454
|
+
}
|
|
7455
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7456
|
+
if (isAMD) {
|
|
7457
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7458
|
+
}
|
|
7459
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7460
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7461
|
+
}
|
|
7462
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7463
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7464
|
+
return new ModConstructor(properties);
|
|
7465
|
+
}
|
|
7180
7466
|
async function importWidgetsBookmarks() {
|
|
7181
7467
|
if (isAMD) {
|
|
7182
7468
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9560,6 +9846,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
9560
9846
|
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
9561
9847
|
return isDefaultModule(module) ? module.default : module;
|
|
9562
9848
|
}
|
|
9849
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9850
|
+
if (isAMD) {
|
|
9851
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9852
|
+
}
|
|
9853
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9854
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9855
|
+
}
|
|
9563
9856
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
9564
9857
|
if (isAMD) {
|
|
9565
9858
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10008,6 +10301,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10008
10301
|
const module = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10009
10302
|
return isDefaultModule(module) ? module.default : module;
|
|
10010
10303
|
}
|
|
10304
|
+
async function importRestLastMileDelivery() {
|
|
10305
|
+
if (isAMD) {
|
|
10306
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10307
|
+
}
|
|
10308
|
+
const module = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10309
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10310
|
+
}
|
|
10011
10311
|
async function importRestLocator() {
|
|
10012
10312
|
if (isAMD) {
|
|
10013
10313
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -10512,6 +10812,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10512
10812
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10513
10813
|
return isDefaultModule(module) ? module.default : module;
|
|
10514
10814
|
}
|
|
10815
|
+
async function importViews3dWebgl() {
|
|
10816
|
+
if (isAMD) {
|
|
10817
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10818
|
+
}
|
|
10819
|
+
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10820
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10821
|
+
}
|
|
10515
10822
|
async function importViews3dWebglManagedFBO() {
|
|
10516
10823
|
if (isAMD) {
|
|
10517
10824
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10526,13 +10833,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10526
10833
|
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10527
10834
|
return isDefaultModule(module) ? module.default : module;
|
|
10528
10835
|
}
|
|
10529
|
-
async function importViews3dWebgl() {
|
|
10530
|
-
if (isAMD) {
|
|
10531
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10532
|
-
}
|
|
10533
|
-
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10534
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10535
|
-
}
|
|
10536
10836
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10537
10837
|
if (isAMD) {
|
|
10538
10838
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10561,13 +10861,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10561
10861
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10562
10862
|
return isDefaultModule(module) ? module.default : module;
|
|
10563
10863
|
}
|
|
10564
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10565
|
-
if (isAMD) {
|
|
10566
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10567
|
-
}
|
|
10568
|
-
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10569
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10570
|
-
}
|
|
10571
10864
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10572
10865
|
if (isAMD) {
|
|
10573
10866
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10582,6 +10875,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10582
10875
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
10583
10876
|
return isDefaultModule(module) ? module.default : module;
|
|
10584
10877
|
}
|
|
10878
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10879
|
+
if (isAMD) {
|
|
10880
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10881
|
+
}
|
|
10882
|
+
const module = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10883
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10884
|
+
}
|
|
10585
10885
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
10586
10886
|
if (isAMD) {
|
|
10587
10887
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -10589,6 +10889,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10589
10889
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10590
10890
|
return isDefaultModule(module) ? module.default : module;
|
|
10591
10891
|
}
|
|
10892
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10893
|
+
if (isAMD) {
|
|
10894
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10895
|
+
}
|
|
10896
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10897
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10898
|
+
}
|
|
10592
10899
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10593
10900
|
if (isAMD) {
|
|
10594
10901
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10603,6 +10910,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10603
10910
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10604
10911
|
return isDefaultModule(module) ? module.default : module;
|
|
10605
10912
|
}
|
|
10913
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10914
|
+
if (isAMD) {
|
|
10915
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10916
|
+
}
|
|
10917
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10918
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10919
|
+
}
|
|
10606
10920
|
async function importApplicationsComponentsFontUtils() {
|
|
10607
10921
|
if (isAMD) {
|
|
10608
10922
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10610,6 +10924,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10610
10924
|
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10611
10925
|
return isDefaultModule(module) ? module.default : module;
|
|
10612
10926
|
}
|
|
10927
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
10928
|
+
if (isAMD) {
|
|
10929
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
10930
|
+
}
|
|
10931
|
+
const module = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
10932
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10933
|
+
}
|
|
10613
10934
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10614
10935
|
if (isAMD) {
|
|
10615
10936
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10624,6 +10945,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10624
10945
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10625
10946
|
return isDefaultModule(module) ? module.default : module;
|
|
10626
10947
|
}
|
|
10948
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10949
|
+
if (isAMD) {
|
|
10950
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10951
|
+
}
|
|
10952
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10953
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10954
|
+
}
|
|
10627
10955
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10628
10956
|
if (isAMD) {
|
|
10629
10957
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10652,6 +10980,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10652
10980
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10653
10981
|
return isDefaultModule(module) ? module.default : module;
|
|
10654
10982
|
}
|
|
10983
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10984
|
+
if (isAMD) {
|
|
10985
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10986
|
+
}
|
|
10987
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10988
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10989
|
+
}
|
|
10655
10990
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10656
10991
|
if (isAMD) {
|
|
10657
10992
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10666,6 +11001,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10666
11001
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10667
11002
|
return isDefaultModule(module) ? module.default : module;
|
|
10668
11003
|
}
|
|
11004
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11005
|
+
if (isAMD) {
|
|
11006
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11007
|
+
}
|
|
11008
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11009
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11010
|
+
}
|
|
10669
11011
|
async function importApplicationsComponentsStyleUtils() {
|
|
10670
11012
|
if (isAMD) {
|
|
10671
11013
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10728,6 +11070,16 @@ export {
|
|
|
10728
11070
|
importAnalysisDimensionAnalysis,
|
|
10729
11071
|
importAnalysisDimensionSimpleStyle,
|
|
10730
11072
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11073
|
+
importAnalysisElevationProfileAnalysis,
|
|
11074
|
+
importAnalysisElevationProfileElevationProfileGroundLine,
|
|
11075
|
+
importAnalysisElevationProfileElevationProfileInputLine,
|
|
11076
|
+
importAnalysisElevationProfileElevationProfileLine,
|
|
11077
|
+
importAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
11078
|
+
importAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
11079
|
+
importAnalysisElevationProfileElevationProfileQueryLine,
|
|
11080
|
+
importAnalysisElevationProfileElevationProfileSceneLine,
|
|
11081
|
+
importAnalysisElevationProfileElevationProfileUnits,
|
|
11082
|
+
importAnalysisElevationProfileElevationProfileViewOptions,
|
|
10731
11083
|
importAnalysisLengthDimension,
|
|
10732
11084
|
importAnalysisLineOfSightAnalysis,
|
|
10733
11085
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10737,18 +11089,29 @@ export {
|
|
|
10737
11089
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10738
11090
|
importAnalysisViewshed,
|
|
10739
11091
|
importAnalysisViewshedAnalysis,
|
|
11092
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11093
|
+
importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
11094
|
+
importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
11095
|
+
importAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11096
|
+
importApplicationsComponentsActionUtils,
|
|
10740
11097
|
importApplicationsComponentsAnalysisUtils,
|
|
11098
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10741
11099
|
importApplicationsComponentsBasemapUtils,
|
|
10742
11100
|
importApplicationsComponentsDrawUtils,
|
|
11101
|
+
importApplicationsComponentsFeatureUtils,
|
|
10743
11102
|
importApplicationsComponentsFontUtils,
|
|
11103
|
+
importApplicationsComponentsFormatUtils,
|
|
10744
11104
|
importApplicationsComponentsGetDefaultUnits,
|
|
10745
11105
|
importApplicationsComponentsGfxUtils,
|
|
11106
|
+
importApplicationsComponentsImageryUtils,
|
|
10746
11107
|
importApplicationsComponentsLayerOriginUtils,
|
|
10747
11108
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10748
11109
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10749
11110
|
importApplicationsComponentsReactiveUtils,
|
|
11111
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10750
11112
|
importApplicationsComponentsSelectionOperation,
|
|
10751
11113
|
importApplicationsComponentsSketchTooltipControls,
|
|
11114
|
+
importApplicationsComponentsStringUtils,
|
|
10752
11115
|
importApplicationsComponentsStyleUtils,
|
|
10753
11116
|
importApplicationsComponentsSvgUtils,
|
|
10754
11117
|
importApplicationsComponentsViewUtils,
|
|
@@ -10845,6 +11208,7 @@ export {
|
|
|
10845
11208
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
10846
11209
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
10847
11210
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
11211
|
+
importGeometryOperatorsGeodeticUtilsOperator,
|
|
10848
11212
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10849
11213
|
importGeometryOperatorsIntegrateOperator,
|
|
10850
11214
|
importGeometryOperatorsIntersectionOperator,
|
|
@@ -10896,6 +11260,8 @@ export {
|
|
|
10896
11260
|
importGeometrySupportNormalizeUtils,
|
|
10897
11261
|
importGeometrySupportWebMercatorUtils,
|
|
10898
11262
|
importGraphic,
|
|
11263
|
+
importGraphicGraphicOrigin,
|
|
11264
|
+
importGraphicVectorTileGraphicOrigin,
|
|
10899
11265
|
importGround,
|
|
10900
11266
|
importIdentityCredential,
|
|
10901
11267
|
importIdentityIdentityManager,
|
|
@@ -10996,6 +11362,7 @@ export {
|
|
|
10996
11362
|
importLayersSupportParquetEncodingWkb,
|
|
10997
11363
|
importLayersSupportParquetUtils,
|
|
10998
11364
|
importLayersSupportPixelBlock,
|
|
11365
|
+
importLayersSupportPlaybackInfo,
|
|
10999
11366
|
importLayersSupportPublishingInfo,
|
|
11000
11367
|
importLayersSupportRangeDomain,
|
|
11001
11368
|
importLayersSupportRasterBandInfo,
|
|
@@ -11156,10 +11523,15 @@ export {
|
|
|
11156
11523
|
importRestKnowledgeGraphEntity,
|
|
11157
11524
|
importRestKnowledgeGraphEntityType,
|
|
11158
11525
|
importRestKnowledgeGraphFieldIndex,
|
|
11526
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11159
11527
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11528
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11160
11529
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11161
11530
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11531
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11532
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11162
11533
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11534
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11163
11535
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11164
11536
|
importRestKnowledgeGraphGraphObject,
|
|
11165
11537
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11171,6 +11543,9 @@ export {
|
|
|
11171
11543
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11172
11544
|
importRestKnowledgeGraphGraphSearch,
|
|
11173
11545
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11546
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11547
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11548
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11174
11549
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11175
11550
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11176
11551
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11186,6 +11561,7 @@ export {
|
|
|
11186
11561
|
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11187
11562
|
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11188
11563
|
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
11564
|
+
importRestLastMileDelivery,
|
|
11189
11565
|
importRestLocator,
|
|
11190
11566
|
importRestNetworkService,
|
|
11191
11567
|
importRestNetworksQueryAssociations,
|
|
@@ -11282,6 +11658,7 @@ export {
|
|
|
11282
11658
|
importRestSupportImageVolumeParameters,
|
|
11283
11659
|
importRestSupportImageVolumeResult,
|
|
11284
11660
|
importRestSupportJobInfo,
|
|
11661
|
+
importRestSupportLastMileDeliveryParameters,
|
|
11285
11662
|
importRestSupportLegendLayer,
|
|
11286
11663
|
importRestSupportLengthsParameters,
|
|
11287
11664
|
importRestSupportLinearUnit,
|
|
@@ -11432,8 +11809,6 @@ export {
|
|
|
11432
11809
|
importTablesElementsAttributeTableFieldElement,
|
|
11433
11810
|
importTablesElementsAttributeTableGroupElement,
|
|
11434
11811
|
importTablesElementsAttributeTableRelationshipElement,
|
|
11435
|
-
importTimeExtent,
|
|
11436
|
-
importTimeInterval,
|
|
11437
11812
|
importTimeTimeExtent,
|
|
11438
11813
|
importTimeTimeInterval,
|
|
11439
11814
|
importVersionManagementUtils,
|
|
@@ -11441,16 +11816,20 @@ export {
|
|
|
11441
11816
|
importVersionManagementVersionManagementService,
|
|
11442
11817
|
importVersionManagementVersioningState,
|
|
11443
11818
|
importViewpoint,
|
|
11819
|
+
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
11444
11820
|
importViews2dLayersBaseLayerView2D,
|
|
11445
11821
|
importViews2dLayersBaseLayerViewGL2D,
|
|
11446
11822
|
importViews2dViewState,
|
|
11447
11823
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11448
11824
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11449
11825
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
11826
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11450
11827
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11451
11828
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11452
11829
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11453
11830
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11831
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11832
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
11454
11833
|
importViews3dEnvironmentCloudyWeather,
|
|
11455
11834
|
importViews3dEnvironmentFoggyWeather,
|
|
11456
11835
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11464,6 +11843,7 @@ export {
|
|
|
11464
11843
|
importViews3dWebglManagedFBO,
|
|
11465
11844
|
importViews3dWebglRenderCamera,
|
|
11466
11845
|
importViews3dWebglRenderNode,
|
|
11846
|
+
importViewsAnalysisElevationProfileElevationProfileResult,
|
|
11467
11847
|
importViewsAnalysisLengthDimensionResult,
|
|
11468
11848
|
importViewsBasemapView,
|
|
11469
11849
|
importViewsDrawDraw,
|
|
@@ -11485,21 +11865,14 @@ export {
|
|
|
11485
11865
|
importViewsInteractiveTooltip,
|
|
11486
11866
|
importViewsLayersBuildingComponentSublayerView,
|
|
11487
11867
|
importViewsLayersBuildingSceneLayerView,
|
|
11488
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11489
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11490
|
-
importViewsLayersCatalogLayerView,
|
|
11491
11868
|
importViewsLayersDimensionLayerView,
|
|
11492
|
-
importViewsLayersFeatureLayerView,
|
|
11493
11869
|
importViewsLayersGroupLayerView,
|
|
11494
11870
|
importViewsLayersImageryLayerView,
|
|
11495
11871
|
importViewsLayersImageryTileLayerView,
|
|
11496
11872
|
importViewsLayersLayerView,
|
|
11497
11873
|
importViewsLayersLineOfSightLayerView,
|
|
11498
11874
|
importViewsLayersMediaLayerView,
|
|
11499
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11500
|
-
importViewsLayersPointCloudLayerView,
|
|
11501
11875
|
importViewsLayersSceneLayerView,
|
|
11502
|
-
importViewsLayersStreamLayerView,
|
|
11503
11876
|
importViewsLayersViewshedLayerView,
|
|
11504
11877
|
importViewsLinkChartView,
|
|
11505
11878
|
importViewsMagnifier,
|
|
@@ -11584,6 +11957,9 @@ export {
|
|
|
11584
11957
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11585
11958
|
importWidgetsBatchAttributeForm,
|
|
11586
11959
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
11960
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
11961
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
11962
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11587
11963
|
importWidgetsBookmarks,
|
|
11588
11964
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11589
11965
|
importWidgetsBuildingExplorer,
|
|
@@ -11780,6 +12156,16 @@ export {
|
|
|
11780
12156
|
newAnalysisDimensionAnalysis,
|
|
11781
12157
|
newAnalysisDimensionSimpleStyle,
|
|
11782
12158
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12159
|
+
newAnalysisElevationProfileAnalysis,
|
|
12160
|
+
newAnalysisElevationProfileElevationProfileGroundLine,
|
|
12161
|
+
newAnalysisElevationProfileElevationProfileInputLine,
|
|
12162
|
+
newAnalysisElevationProfileElevationProfileLine,
|
|
12163
|
+
newAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
12164
|
+
newAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
12165
|
+
newAnalysisElevationProfileElevationProfileQueryLine,
|
|
12166
|
+
newAnalysisElevationProfileElevationProfileSceneLine,
|
|
12167
|
+
newAnalysisElevationProfileElevationProfileUnits,
|
|
12168
|
+
newAnalysisElevationProfileElevationProfileViewOptions,
|
|
11783
12169
|
newAnalysisLengthDimension,
|
|
11784
12170
|
newAnalysisLineOfSightAnalysis,
|
|
11785
12171
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11789,6 +12175,10 @@ export {
|
|
|
11789
12175
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11790
12176
|
newAnalysisViewshed,
|
|
11791
12177
|
newAnalysisViewshedAnalysis,
|
|
12178
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12179
|
+
newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
12180
|
+
newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
12181
|
+
newAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11792
12182
|
newAttributeBinsGraphic,
|
|
11793
12183
|
newBasemap,
|
|
11794
12184
|
newCamera,
|
|
@@ -11851,6 +12241,8 @@ export {
|
|
|
11851
12241
|
newGeometrySupportMeshTextureTransform,
|
|
11852
12242
|
newGeometrySupportMeshTransform,
|
|
11853
12243
|
newGraphic,
|
|
12244
|
+
newGraphicGraphicOrigin,
|
|
12245
|
+
newGraphicVectorTileGraphicOrigin,
|
|
11854
12246
|
newGround,
|
|
11855
12247
|
newIdentityCredential,
|
|
11856
12248
|
newIdentityOAuthInfo,
|
|
@@ -11939,6 +12331,7 @@ export {
|
|
|
11939
12331
|
newLayersSupportParquetEncodingLocation,
|
|
11940
12332
|
newLayersSupportParquetEncodingWkb,
|
|
11941
12333
|
newLayersSupportPixelBlock,
|
|
12334
|
+
newLayersSupportPlaybackInfo,
|
|
11942
12335
|
newLayersSupportPublishingInfo,
|
|
11943
12336
|
newLayersSupportRangeDomain,
|
|
11944
12337
|
newLayersSupportRasterBandInfo,
|
|
@@ -12079,10 +12472,15 @@ export {
|
|
|
12079
12472
|
newRestKnowledgeGraphEntity,
|
|
12080
12473
|
newRestKnowledgeGraphEntityType,
|
|
12081
12474
|
newRestKnowledgeGraphFieldIndex,
|
|
12475
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12082
12476
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12477
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12083
12478
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12084
12479
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12480
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12481
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12085
12482
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12483
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12086
12484
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12087
12485
|
newRestKnowledgeGraphGraphObject,
|
|
12088
12486
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12094,6 +12492,9 @@ export {
|
|
|
12094
12492
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12095
12493
|
newRestKnowledgeGraphGraphSearch,
|
|
12096
12494
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12495
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12496
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12497
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12097
12498
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12098
12499
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12099
12500
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12193,6 +12594,7 @@ export {
|
|
|
12193
12594
|
newRestSupportImageVolumeParameters,
|
|
12194
12595
|
newRestSupportImageVolumeResult,
|
|
12195
12596
|
newRestSupportJobInfo,
|
|
12597
|
+
newRestSupportLastMileDeliveryParameters,
|
|
12196
12598
|
newRestSupportLegendLayer,
|
|
12197
12599
|
newRestSupportLengthsParameters,
|
|
12198
12600
|
newRestSupportLinearUnit,
|
|
@@ -12284,23 +12686,25 @@ export {
|
|
|
12284
12686
|
newTablesElementsAttributeTableFieldElement,
|
|
12285
12687
|
newTablesElementsAttributeTableGroupElement,
|
|
12286
12688
|
newTablesElementsAttributeTableRelationshipElement,
|
|
12287
|
-
newTimeExtent,
|
|
12288
|
-
newTimeInterval,
|
|
12289
12689
|
newTimeTimeExtent,
|
|
12290
12690
|
newTimeTimeInterval,
|
|
12291
12691
|
newVersionManagementVersionManagementService,
|
|
12292
12692
|
newVersionManagementVersioningState,
|
|
12293
12693
|
newViewpoint,
|
|
12694
|
+
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12294
12695
|
newViews2dLayersBaseLayerView2D,
|
|
12295
12696
|
newViews2dLayersBaseLayerViewGL2D,
|
|
12296
12697
|
newViews2dViewState,
|
|
12297
12698
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12298
12699
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12299
12700
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12701
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12300
12702
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12301
12703
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12302
12704
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12303
12705
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12706
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12707
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
12304
12708
|
newViews3dEnvironmentCloudyWeather,
|
|
12305
12709
|
newViews3dEnvironmentFoggyWeather,
|
|
12306
12710
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12309,6 +12713,7 @@ export {
|
|
|
12309
12713
|
newViews3dEnvironmentSunnyWeather,
|
|
12310
12714
|
newViews3dEnvironmentVirtualLighting,
|
|
12311
12715
|
newViews3dWebglRenderNode,
|
|
12716
|
+
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
12312
12717
|
newViewsBasemapView,
|
|
12313
12718
|
newViewsDrawDraw,
|
|
12314
12719
|
newViewsDrawDrawAction,
|
|
@@ -12329,21 +12734,14 @@ export {
|
|
|
12329
12734
|
newViewsInteractiveTooltip,
|
|
12330
12735
|
newViewsLayersBuildingComponentSublayerView,
|
|
12331
12736
|
newViewsLayersBuildingSceneLayerView,
|
|
12332
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12333
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12334
|
-
newViewsLayersCatalogLayerView,
|
|
12335
12737
|
newViewsLayersDimensionLayerView,
|
|
12336
|
-
newViewsLayersFeatureLayerView,
|
|
12337
12738
|
newViewsLayersGroupLayerView,
|
|
12338
12739
|
newViewsLayersImageryLayerView,
|
|
12339
12740
|
newViewsLayersImageryTileLayerView,
|
|
12340
12741
|
newViewsLayersLayerView,
|
|
12341
12742
|
newViewsLayersLineOfSightLayerView,
|
|
12342
12743
|
newViewsLayersMediaLayerView,
|
|
12343
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12344
|
-
newViewsLayersPointCloudLayerView,
|
|
12345
12744
|
newViewsLayersSceneLayerView,
|
|
12346
|
-
newViewsLayersStreamLayerView,
|
|
12347
12745
|
newViewsLayersViewshedLayerView,
|
|
12348
12746
|
newViewsLinkChartView,
|
|
12349
12747
|
newViewsMagnifier,
|
|
@@ -12426,6 +12824,10 @@ export {
|
|
|
12426
12824
|
newWidgetsBasemapToggle,
|
|
12427
12825
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12428
12826
|
newWidgetsBatchAttributeForm,
|
|
12827
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12828
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12829
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
12830
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12429
12831
|
newWidgetsBookmarks,
|
|
12430
12832
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12431
12833
|
newWidgetsBuildingExplorer,
|