@arcgis/core-adapter 4.32.0-next.11 → 4.32.0-next.13
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 +125 -98
- package/dist/index.d.cts +22 -19
- package/dist/index.d.ts +22 -19
- package/dist/index.js +122 -98
- package/package.json +1 -1
- package/src/index.ts +133 -109
- package/support/arcgis.d.ts +2120 -368
package/.turbo/turbo-build.log
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -43,7 +43,9 @@ __export(src_exports, {
|
|
|
43
43
|
importAnalysisViewshed: () => importAnalysisViewshed,
|
|
44
44
|
importAnalysisViewshedAnalysis: () => importAnalysisViewshedAnalysis,
|
|
45
45
|
importApplicationsComponentsBasemapUtils: () => importApplicationsComponentsBasemapUtils,
|
|
46
|
+
importApplicationsComponentsCollectionFlattener: () => importApplicationsComponentsCollectionFlattener,
|
|
46
47
|
importApplicationsComponentsDrawUtils: () => importApplicationsComponentsDrawUtils,
|
|
48
|
+
importApplicationsComponentsFontUtils: () => importApplicationsComponentsFontUtils,
|
|
47
49
|
importApplicationsComponentsGetDefaultUnits: () => importApplicationsComponentsGetDefaultUnits,
|
|
48
50
|
importApplicationsComponentsGfxUtils: () => importApplicationsComponentsGfxUtils,
|
|
49
51
|
importApplicationsComponentsLayerOriginUtils: () => importApplicationsComponentsLayerOriginUtils,
|
|
@@ -55,6 +57,7 @@ __export(src_exports, {
|
|
|
55
57
|
importApplicationsExcaliburVideoViewUtils: () => importApplicationsExcaliburVideoViewUtils,
|
|
56
58
|
importApplicationsExperienceBuilderSketchUtils: () => importApplicationsExperienceBuilderSketchUtils,
|
|
57
59
|
importApplicationsMapViewerMediaUtils: () => importApplicationsMapViewerMediaUtils,
|
|
60
|
+
importApplicationsMapViewerTemplateUtils: () => importApplicationsMapViewerTemplateUtils,
|
|
58
61
|
importApplicationsSceneViewerColorUtils: () => importApplicationsSceneViewerColorUtils,
|
|
59
62
|
importApplicationsSceneViewerDevEnvironmentUtils: () => importApplicationsSceneViewerDevEnvironmentUtils,
|
|
60
63
|
importApplicationsSceneViewerLayerUtils: () => importApplicationsSceneViewerLayerUtils,
|
|
@@ -3394,17 +3397,6 @@ async function newLayersSupportPublishingInfo(properties) {
|
|
|
3394
3397
|
const ModConstructor = await importLayersSupportPublishingInfo();
|
|
3395
3398
|
return new ModConstructor(properties);
|
|
3396
3399
|
}
|
|
3397
|
-
async function importLayersSupportSceneFilter() {
|
|
3398
|
-
if (isAMD) {
|
|
3399
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
3400
|
-
}
|
|
3401
|
-
const module2 = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
3402
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
3403
|
-
}
|
|
3404
|
-
async function newLayersSupportSceneFilter(properties) {
|
|
3405
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
3406
|
-
return new ModConstructor(properties);
|
|
3407
|
-
}
|
|
3408
3400
|
async function importLayersSupportRangeDomain() {
|
|
3409
3401
|
if (isAMD) {
|
|
3410
3402
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -3493,6 +3485,17 @@ async function newLayersSupportRouteSymbols(properties) {
|
|
|
3493
3485
|
const ModConstructor = await importLayersSupportRouteSymbols();
|
|
3494
3486
|
return new ModConstructor(properties);
|
|
3495
3487
|
}
|
|
3488
|
+
async function importLayersSupportSceneFilter() {
|
|
3489
|
+
if (isAMD) {
|
|
3490
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
3491
|
+
}
|
|
3492
|
+
const module2 = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
3493
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3494
|
+
}
|
|
3495
|
+
async function newLayersSupportSceneFilter(properties) {
|
|
3496
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
3497
|
+
return new ModConstructor(properties);
|
|
3498
|
+
}
|
|
3496
3499
|
async function importLayersSupportSceneModification() {
|
|
3497
3500
|
if (isAMD) {
|
|
3498
3501
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -3768,26 +3771,26 @@ async function newLayersUnsupportedLayer(properties) {
|
|
|
3768
3771
|
const ModConstructor = await importLayersUnsupportedLayer();
|
|
3769
3772
|
return new ModConstructor(properties);
|
|
3770
3773
|
}
|
|
3771
|
-
async function
|
|
3774
|
+
async function importLayersVectorTileLayer() {
|
|
3772
3775
|
if (isAMD) {
|
|
3773
|
-
return await window.$arcgis.import("esri/layers/
|
|
3776
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
3774
3777
|
}
|
|
3775
|
-
const module2 = await import("@arcgis/core/layers/
|
|
3778
|
+
const module2 = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
3776
3779
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
3777
3780
|
}
|
|
3778
|
-
async function
|
|
3779
|
-
const ModConstructor = await
|
|
3781
|
+
async function newLayersVectorTileLayer(properties) {
|
|
3782
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
3780
3783
|
return new ModConstructor(properties);
|
|
3781
3784
|
}
|
|
3782
|
-
async function
|
|
3785
|
+
async function importLayersVideoLayer() {
|
|
3783
3786
|
if (isAMD) {
|
|
3784
|
-
return await window.$arcgis.import("esri/layers/
|
|
3787
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
3785
3788
|
}
|
|
3786
|
-
const module2 = await import("@arcgis/core/layers/
|
|
3789
|
+
const module2 = await import("@arcgis/core/layers/VideoLayer.js");
|
|
3787
3790
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
3788
3791
|
}
|
|
3789
|
-
async function
|
|
3790
|
-
const ModConstructor = await
|
|
3792
|
+
async function newLayersVideoLayer(properties) {
|
|
3793
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
3791
3794
|
return new ModConstructor(properties);
|
|
3792
3795
|
}
|
|
3793
3796
|
async function importLayersVoxelLayer() {
|
|
@@ -5572,50 +5575,6 @@ async function newRestSupportImageBoundaryResult(properties) {
|
|
|
5572
5575
|
const ModConstructor = await importRestSupportImageBoundaryResult();
|
|
5573
5576
|
return new ModConstructor(properties);
|
|
5574
5577
|
}
|
|
5575
|
-
async function importRestSupportImageHistogramParameters() {
|
|
5576
|
-
if (isAMD) {
|
|
5577
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
5578
|
-
}
|
|
5579
|
-
const module2 = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
5580
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5581
|
-
}
|
|
5582
|
-
async function newRestSupportImageHistogramParameters(properties) {
|
|
5583
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
5584
|
-
return new ModConstructor(properties);
|
|
5585
|
-
}
|
|
5586
|
-
async function importRestSupportImageIdentifyParameters() {
|
|
5587
|
-
if (isAMD) {
|
|
5588
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
5589
|
-
}
|
|
5590
|
-
const module2 = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
5591
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5592
|
-
}
|
|
5593
|
-
async function newRestSupportImageIdentifyParameters(properties) {
|
|
5594
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
5595
|
-
return new ModConstructor(properties);
|
|
5596
|
-
}
|
|
5597
|
-
async function importRestSupportImageIdentifyResult() {
|
|
5598
|
-
if (isAMD) {
|
|
5599
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
5600
|
-
}
|
|
5601
|
-
const module2 = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
5602
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5603
|
-
}
|
|
5604
|
-
async function newRestSupportImageIdentifyResult(properties) {
|
|
5605
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
5606
|
-
return new ModConstructor(properties);
|
|
5607
|
-
}
|
|
5608
|
-
async function importRestSupportImageInspectionInfo() {
|
|
5609
|
-
if (isAMD) {
|
|
5610
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
5611
|
-
}
|
|
5612
|
-
const module2 = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
5613
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5614
|
-
}
|
|
5615
|
-
async function newRestSupportImageInspectionInfo(properties) {
|
|
5616
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
5617
|
-
return new ModConstructor(properties);
|
|
5618
|
-
}
|
|
5619
5578
|
async function importRestSupportImageDistanceParameters() {
|
|
5620
5579
|
if (isAMD) {
|
|
5621
5580
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -5693,6 +5652,50 @@ async function newRestSupportImageHeightResult(properties) {
|
|
|
5693
5652
|
const ModConstructor = await importRestSupportImageHeightResult();
|
|
5694
5653
|
return new ModConstructor(properties);
|
|
5695
5654
|
}
|
|
5655
|
+
async function importRestSupportImageHistogramParameters() {
|
|
5656
|
+
if (isAMD) {
|
|
5657
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
5658
|
+
}
|
|
5659
|
+
const module2 = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
5660
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5661
|
+
}
|
|
5662
|
+
async function newRestSupportImageHistogramParameters(properties) {
|
|
5663
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
5664
|
+
return new ModConstructor(properties);
|
|
5665
|
+
}
|
|
5666
|
+
async function importRestSupportImageIdentifyParameters() {
|
|
5667
|
+
if (isAMD) {
|
|
5668
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
5669
|
+
}
|
|
5670
|
+
const module2 = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
5671
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5672
|
+
}
|
|
5673
|
+
async function newRestSupportImageIdentifyParameters(properties) {
|
|
5674
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
5675
|
+
return new ModConstructor(properties);
|
|
5676
|
+
}
|
|
5677
|
+
async function importRestSupportImageIdentifyResult() {
|
|
5678
|
+
if (isAMD) {
|
|
5679
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
5680
|
+
}
|
|
5681
|
+
const module2 = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
5682
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5683
|
+
}
|
|
5684
|
+
async function newRestSupportImageIdentifyResult(properties) {
|
|
5685
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
5686
|
+
return new ModConstructor(properties);
|
|
5687
|
+
}
|
|
5688
|
+
async function importRestSupportImageInspectionInfo() {
|
|
5689
|
+
if (isAMD) {
|
|
5690
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
5691
|
+
}
|
|
5692
|
+
const module2 = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
5693
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5694
|
+
}
|
|
5695
|
+
async function newRestSupportImageInspectionInfo(properties) {
|
|
5696
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
5697
|
+
return new ModConstructor(properties);
|
|
5698
|
+
}
|
|
5696
5699
|
async function importRestSupportImageParameters() {
|
|
5697
5700
|
if (isAMD) {
|
|
5698
5701
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -5781,26 +5784,26 @@ async function newRestSupportImageSampleResult(properties) {
|
|
|
5781
5784
|
const ModConstructor = await importRestSupportImageSampleResult();
|
|
5782
5785
|
return new ModConstructor(properties);
|
|
5783
5786
|
}
|
|
5784
|
-
async function
|
|
5787
|
+
async function importRestSupportImageToMapMultirayParameters() {
|
|
5785
5788
|
if (isAMD) {
|
|
5786
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5789
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
5787
5790
|
}
|
|
5788
|
-
const module2 = await import("@arcgis/core/rest/support/
|
|
5791
|
+
const module2 = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
5789
5792
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5790
5793
|
}
|
|
5791
|
-
async function
|
|
5792
|
-
const ModConstructor = await
|
|
5794
|
+
async function newRestSupportImageToMapMultirayParameters(properties) {
|
|
5795
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
5793
5796
|
return new ModConstructor(properties);
|
|
5794
5797
|
}
|
|
5795
|
-
async function
|
|
5798
|
+
async function importRestSupportImageToMapParameters() {
|
|
5796
5799
|
if (isAMD) {
|
|
5797
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5800
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
5798
5801
|
}
|
|
5799
|
-
const module2 = await import("@arcgis/core/rest/support/
|
|
5802
|
+
const module2 = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
5800
5803
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5801
5804
|
}
|
|
5802
|
-
async function
|
|
5803
|
-
const ModConstructor = await
|
|
5805
|
+
async function newRestSupportImageToMapParameters(properties) {
|
|
5806
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
5804
5807
|
return new ModConstructor(properties);
|
|
5805
5808
|
}
|
|
5806
5809
|
async function importRestSupportImageUrlParameters() {
|
|
@@ -5891,26 +5894,26 @@ async function newRestSupportMeasureAreaFromImageResult(properties) {
|
|
|
5891
5894
|
const ModConstructor = await importRestSupportMeasureAreaFromImageResult();
|
|
5892
5895
|
return new ModConstructor(properties);
|
|
5893
5896
|
}
|
|
5894
|
-
async function
|
|
5897
|
+
async function importRestSupportMeasureFromImageParameters() {
|
|
5895
5898
|
if (isAMD) {
|
|
5896
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5899
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
5897
5900
|
}
|
|
5898
|
-
const module2 = await import("@arcgis/core/rest/support/
|
|
5901
|
+
const module2 = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
5899
5902
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5900
5903
|
}
|
|
5901
|
-
async function
|
|
5902
|
-
const ModConstructor = await
|
|
5904
|
+
async function newRestSupportMeasureFromImageParameters(properties) {
|
|
5905
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
5903
5906
|
return new ModConstructor(properties);
|
|
5904
5907
|
}
|
|
5905
|
-
async function
|
|
5908
|
+
async function importRestSupportMeasureLengthFromImageResult() {
|
|
5906
5909
|
if (isAMD) {
|
|
5907
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5910
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
5908
5911
|
}
|
|
5909
|
-
const module2 = await import("@arcgis/core/rest/support/
|
|
5912
|
+
const module2 = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
5910
5913
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
5911
5914
|
}
|
|
5912
|
-
async function
|
|
5913
|
-
const ModConstructor = await
|
|
5915
|
+
async function newRestSupportMeasureLengthFromImageResult(properties) {
|
|
5916
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
5914
5917
|
return new ModConstructor(properties);
|
|
5915
5918
|
}
|
|
5916
5919
|
async function importRestSupportMultipartColorRamp() {
|
|
@@ -10303,18 +10306,18 @@ async function importGeometryOperatorsDifferenceOperator() {
|
|
|
10303
10306
|
const module2 = await import("@arcgis/core/geometry/operators/differenceOperator.js");
|
|
10304
10307
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10305
10308
|
}
|
|
10306
|
-
async function
|
|
10309
|
+
async function importGeometryOperatorsDisjointOperator() {
|
|
10307
10310
|
if (isAMD) {
|
|
10308
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10311
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
10309
10312
|
}
|
|
10310
|
-
const module2 = await import("@arcgis/core/geometry/operators/
|
|
10313
|
+
const module2 = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
10311
10314
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10312
10315
|
}
|
|
10313
|
-
async function
|
|
10316
|
+
async function importGeometryOperatorsDistanceOperator() {
|
|
10314
10317
|
if (isAMD) {
|
|
10315
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10318
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
10316
10319
|
}
|
|
10317
|
-
const module2 = await import("@arcgis/core/geometry/operators/
|
|
10320
|
+
const module2 = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
10318
10321
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10319
10322
|
}
|
|
10320
10323
|
async function importGeometryOperatorsEqualsOperator() {
|
|
@@ -10324,6 +10327,13 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
10324
10327
|
const module2 = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
10325
10328
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10326
10329
|
}
|
|
10330
|
+
async function importGeometryOperatorsGeneralizeOperator() {
|
|
10331
|
+
if (isAMD) {
|
|
10332
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10333
|
+
}
|
|
10334
|
+
const module2 = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10335
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10336
|
+
}
|
|
10327
10337
|
async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
10328
10338
|
if (isAMD) {
|
|
10329
10339
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -10359,13 +10369,6 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
10359
10369
|
const module2 = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10360
10370
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10361
10371
|
}
|
|
10362
|
-
async function importGeometryOperatorsGeneralizeOperator() {
|
|
10363
|
-
if (isAMD) {
|
|
10364
|
-
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10365
|
-
}
|
|
10366
|
-
const module2 = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10367
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10368
|
-
}
|
|
10369
10372
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
10370
10373
|
if (isAMD) {
|
|
10371
10374
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -11269,6 +11272,13 @@ async function importApplicationsComponentsBasemapUtils() {
|
|
|
11269
11272
|
const module2 = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
11270
11273
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11271
11274
|
}
|
|
11275
|
+
async function importApplicationsComponentsCollectionFlattener() {
|
|
11276
|
+
if (isAMD) {
|
|
11277
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
11278
|
+
}
|
|
11279
|
+
const module2 = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
11280
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11281
|
+
}
|
|
11272
11282
|
async function importApplicationsComponentsDrawUtils() {
|
|
11273
11283
|
if (isAMD) {
|
|
11274
11284
|
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
@@ -11276,6 +11286,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
11276
11286
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
11277
11287
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11278
11288
|
}
|
|
11289
|
+
async function importApplicationsComponentsFontUtils() {
|
|
11290
|
+
if (isAMD) {
|
|
11291
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
11292
|
+
}
|
|
11293
|
+
const module2 = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
11294
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11295
|
+
}
|
|
11279
11296
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
11280
11297
|
if (isAMD) {
|
|
11281
11298
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -11353,6 +11370,13 @@ async function importApplicationsMapViewerMediaUtils() {
|
|
|
11353
11370
|
const module2 = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
11354
11371
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11355
11372
|
}
|
|
11373
|
+
async function importApplicationsMapViewerTemplateUtils() {
|
|
11374
|
+
if (isAMD) {
|
|
11375
|
+
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
11376
|
+
}
|
|
11377
|
+
const module2 = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
11378
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11379
|
+
}
|
|
11356
11380
|
async function importApplicationsSceneViewerColorUtils() {
|
|
11357
11381
|
if (isAMD) {
|
|
11358
11382
|
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
@@ -11417,7 +11441,9 @@ async function importApplicationsWebEditorSketchUtils() {
|
|
|
11417
11441
|
importAnalysisViewshed,
|
|
11418
11442
|
importAnalysisViewshedAnalysis,
|
|
11419
11443
|
importApplicationsComponentsBasemapUtils,
|
|
11444
|
+
importApplicationsComponentsCollectionFlattener,
|
|
11420
11445
|
importApplicationsComponentsDrawUtils,
|
|
11446
|
+
importApplicationsComponentsFontUtils,
|
|
11421
11447
|
importApplicationsComponentsGetDefaultUnits,
|
|
11422
11448
|
importApplicationsComponentsGfxUtils,
|
|
11423
11449
|
importApplicationsComponentsLayerOriginUtils,
|
|
@@ -11429,6 +11455,7 @@ async function importApplicationsWebEditorSketchUtils() {
|
|
|
11429
11455
|
importApplicationsExcaliburVideoViewUtils,
|
|
11430
11456
|
importApplicationsExperienceBuilderSketchUtils,
|
|
11431
11457
|
importApplicationsMapViewerMediaUtils,
|
|
11458
|
+
importApplicationsMapViewerTemplateUtils,
|
|
11432
11459
|
importApplicationsSceneViewerColorUtils,
|
|
11433
11460
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
11434
11461
|
importApplicationsSceneViewerLayerUtils,
|