@arcgis/core-adapter 4.34.0-next.7 → 4.34.0-next.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +768 -104
- package/dist/index.d.cts +130 -29
- package/dist/index.d.ts +130 -29
- package/dist/index.js +768 -104
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
|
|
|
6
6
|
if (isAMD) {
|
|
7
7
|
return await window.$arcgis.import(modulePath);
|
|
8
8
|
}
|
|
9
|
-
const module = deferredImport();
|
|
9
|
+
const module = await deferredImport();
|
|
10
10
|
return isDefaultModule(module) ? module.default : module;
|
|
11
11
|
}
|
|
12
12
|
async function importIdentityIdentityManager() {
|
|
@@ -115,6 +115,105 @@ 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
|
+
}
|
|
129
|
+
async function importAnalysisElevationProfileLine() {
|
|
130
|
+
if (isAMD) {
|
|
131
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLine");
|
|
132
|
+
}
|
|
133
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLine.js");
|
|
134
|
+
return isDefaultModule(module) ? module.default : module;
|
|
135
|
+
}
|
|
136
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
137
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
138
|
+
return new ModConstructor(properties);
|
|
139
|
+
}
|
|
140
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
141
|
+
if (isAMD) {
|
|
142
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineChartOptions");
|
|
143
|
+
}
|
|
144
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineChartOptions.js");
|
|
145
|
+
return isDefaultModule(module) ? module.default : module;
|
|
146
|
+
}
|
|
147
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
148
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
149
|
+
return new ModConstructor(properties);
|
|
150
|
+
}
|
|
151
|
+
async function importAnalysisElevationProfileLineGround() {
|
|
152
|
+
if (isAMD) {
|
|
153
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineGround");
|
|
154
|
+
}
|
|
155
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineGround.js");
|
|
156
|
+
return isDefaultModule(module) ? module.default : module;
|
|
157
|
+
}
|
|
158
|
+
async function newAnalysisElevationProfileLineGround(properties) {
|
|
159
|
+
const ModConstructor = await importAnalysisElevationProfileLineGround();
|
|
160
|
+
return new ModConstructor(properties);
|
|
161
|
+
}
|
|
162
|
+
async function importAnalysisElevationProfileLineInput() {
|
|
163
|
+
if (isAMD) {
|
|
164
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineInput");
|
|
165
|
+
}
|
|
166
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineInput.js");
|
|
167
|
+
return isDefaultModule(module) ? module.default : module;
|
|
168
|
+
}
|
|
169
|
+
async function newAnalysisElevationProfileLineInput(properties) {
|
|
170
|
+
const ModConstructor = await importAnalysisElevationProfileLineInput();
|
|
171
|
+
return new ModConstructor(properties);
|
|
172
|
+
}
|
|
173
|
+
async function importAnalysisElevationProfileLineQuery() {
|
|
174
|
+
if (isAMD) {
|
|
175
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineQuery");
|
|
176
|
+
}
|
|
177
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineQuery.js");
|
|
178
|
+
return isDefaultModule(module) ? module.default : module;
|
|
179
|
+
}
|
|
180
|
+
async function newAnalysisElevationProfileLineQuery(properties) {
|
|
181
|
+
const ModConstructor = await importAnalysisElevationProfileLineQuery();
|
|
182
|
+
return new ModConstructor(properties);
|
|
183
|
+
}
|
|
184
|
+
async function importAnalysisElevationProfileLineScene() {
|
|
185
|
+
if (isAMD) {
|
|
186
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineScene");
|
|
187
|
+
}
|
|
188
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineScene.js");
|
|
189
|
+
return isDefaultModule(module) ? module.default : module;
|
|
190
|
+
}
|
|
191
|
+
async function newAnalysisElevationProfileLineScene(properties) {
|
|
192
|
+
const ModConstructor = await importAnalysisElevationProfileLineScene();
|
|
193
|
+
return new ModConstructor(properties);
|
|
194
|
+
}
|
|
195
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
196
|
+
if (isAMD) {
|
|
197
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineViewOptions");
|
|
198
|
+
}
|
|
199
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileLineViewOptions.js");
|
|
200
|
+
return isDefaultModule(module) ? module.default : module;
|
|
201
|
+
}
|
|
202
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
203
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
204
|
+
return new ModConstructor(properties);
|
|
205
|
+
}
|
|
206
|
+
async function importAnalysisElevationProfileUnits() {
|
|
207
|
+
if (isAMD) {
|
|
208
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileUnits");
|
|
209
|
+
}
|
|
210
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileUnits.js");
|
|
211
|
+
return isDefaultModule(module) ? module.default : module;
|
|
212
|
+
}
|
|
213
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
214
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
215
|
+
return new ModConstructor(properties);
|
|
216
|
+
}
|
|
118
217
|
async function importAnalysisLengthDimension() {
|
|
119
218
|
if (isAMD) {
|
|
120
219
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -181,6 +280,17 @@ async function newAnalysisSlicePlane(properties) {
|
|
|
181
280
|
const ModConstructor = await importAnalysisSlicePlane();
|
|
182
281
|
return new ModConstructor(properties);
|
|
183
282
|
}
|
|
283
|
+
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/support/AnalysisOriginWebScene.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
184
294
|
async function importAnalysisViewshed() {
|
|
185
295
|
if (isAMD) {
|
|
186
296
|
return await window.$arcgis.import("esri/analysis/Viewshed");
|
|
@@ -203,15 +313,26 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
313
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
314
|
return new ModConstructor(properties);
|
|
205
315
|
}
|
|
206
|
-
async function
|
|
316
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
207
317
|
if (isAMD) {
|
|
208
|
-
return await window.$arcgis.import("esri/analysis/
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
209
319
|
}
|
|
210
|
-
const module = await import("@arcgis/core/analysis/
|
|
320
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
211
321
|
return isDefaultModule(module) ? module.default : module;
|
|
212
322
|
}
|
|
213
|
-
async function
|
|
214
|
-
const ModConstructor = await
|
|
323
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
325
|
+
return new ModConstructor(properties);
|
|
326
|
+
}
|
|
327
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
328
|
+
if (isAMD) {
|
|
329
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
330
|
+
}
|
|
331
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
332
|
+
return isDefaultModule(module) ? module.default : module;
|
|
333
|
+
}
|
|
334
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
335
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
215
336
|
return new ModConstructor(properties);
|
|
216
337
|
}
|
|
217
338
|
async function importCoreAccessor() {
|
|
@@ -269,6 +390,39 @@ async function newCoreWorkersConnection() {
|
|
|
269
390
|
const ModConstructor = await importCoreWorkersConnection();
|
|
270
391
|
return new ModConstructor();
|
|
271
392
|
}
|
|
393
|
+
async function importEffectsFocusAreas() {
|
|
394
|
+
if (isAMD) {
|
|
395
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
396
|
+
}
|
|
397
|
+
const module = await import("@arcgis/core/effects/FocusAreas.js");
|
|
398
|
+
return isDefaultModule(module) ? module.default : module;
|
|
399
|
+
}
|
|
400
|
+
async function newEffectsFocusAreas(properties) {
|
|
401
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
402
|
+
return new ModConstructor(properties);
|
|
403
|
+
}
|
|
404
|
+
async function importEffectsFocusArea() {
|
|
405
|
+
if (isAMD) {
|
|
406
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
407
|
+
}
|
|
408
|
+
const module = await import("@arcgis/core/effects/FocusArea.js");
|
|
409
|
+
return isDefaultModule(module) ? module.default : module;
|
|
410
|
+
}
|
|
411
|
+
async function newEffectsFocusArea(properties) {
|
|
412
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
413
|
+
return new ModConstructor(properties);
|
|
414
|
+
}
|
|
415
|
+
async function importEffectsFocusAreaOutline() {
|
|
416
|
+
if (isAMD) {
|
|
417
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
418
|
+
}
|
|
419
|
+
const module = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
420
|
+
return isDefaultModule(module) ? module.default : module;
|
|
421
|
+
}
|
|
422
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
423
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
424
|
+
return new ModConstructor(properties);
|
|
425
|
+
}
|
|
272
426
|
async function importFormElementsAttachmentElement() {
|
|
273
427
|
if (isAMD) {
|
|
274
428
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -797,6 +951,259 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
797
951
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
798
952
|
return new ModConstructor(properties);
|
|
799
953
|
}
|
|
954
|
+
async function importGraphicGraphicOrigin() {
|
|
955
|
+
if (isAMD) {
|
|
956
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
957
|
+
}
|
|
958
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
959
|
+
return isDefaultModule(module) ? module.default : module;
|
|
960
|
+
}
|
|
961
|
+
async function newGraphicGraphicOrigin() {
|
|
962
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
963
|
+
return new ModConstructor();
|
|
964
|
+
}
|
|
965
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
966
|
+
if (isAMD) {
|
|
967
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
968
|
+
}
|
|
969
|
+
const module = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
971
|
+
}
|
|
972
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
973
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
974
|
+
return new ModConstructor(sublayer);
|
|
975
|
+
}
|
|
976
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
977
|
+
if (isAMD) {
|
|
978
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
979
|
+
}
|
|
980
|
+
const module = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
981
|
+
return isDefaultModule(module) ? module.default : module;
|
|
982
|
+
}
|
|
983
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
984
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
985
|
+
return new ModConstructor(layer);
|
|
986
|
+
}
|
|
987
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
988
|
+
if (isAMD) {
|
|
989
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
990
|
+
}
|
|
991
|
+
const module = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
992
|
+
return isDefaultModule(module) ? module.default : module;
|
|
993
|
+
}
|
|
994
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
995
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
996
|
+
return new ModConstructor(layer);
|
|
997
|
+
}
|
|
998
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
999
|
+
if (isAMD) {
|
|
1000
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1001
|
+
}
|
|
1002
|
+
const module = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1003
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1004
|
+
}
|
|
1005
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1006
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1007
|
+
return new ModConstructor(layer);
|
|
1008
|
+
}
|
|
1009
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1010
|
+
if (isAMD) {
|
|
1011
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1012
|
+
}
|
|
1013
|
+
const module = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1014
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1015
|
+
}
|
|
1016
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1017
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1018
|
+
return new ModConstructor(layer);
|
|
1019
|
+
}
|
|
1020
|
+
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1021
|
+
if (isAMD) {
|
|
1022
|
+
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1023
|
+
}
|
|
1024
|
+
const module = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1025
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1026
|
+
}
|
|
1027
|
+
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1028
|
+
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1029
|
+
return new ModConstructor(layer);
|
|
1030
|
+
}
|
|
1031
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
1032
|
+
if (isAMD) {
|
|
1033
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
1034
|
+
}
|
|
1035
|
+
const module = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
1036
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1037
|
+
}
|
|
1038
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
1039
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
1040
|
+
return new ModConstructor(layer);
|
|
1041
|
+
}
|
|
1042
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
1043
|
+
if (isAMD) {
|
|
1044
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
1045
|
+
}
|
|
1046
|
+
const module = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
1047
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1048
|
+
}
|
|
1049
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
1050
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
1051
|
+
return new ModConstructor(layer);
|
|
1052
|
+
}
|
|
1053
|
+
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1054
|
+
if (isAMD) {
|
|
1055
|
+
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1056
|
+
}
|
|
1057
|
+
const module = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1058
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1059
|
+
}
|
|
1060
|
+
async function newGraphicKnowledgeGraphGraphicOrigin(sublayer) {
|
|
1061
|
+
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1062
|
+
return new ModConstructor(sublayer);
|
|
1063
|
+
}
|
|
1064
|
+
async function importGraphicMapImageGraphicOrigin() {
|
|
1065
|
+
if (isAMD) {
|
|
1066
|
+
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1067
|
+
}
|
|
1068
|
+
const module = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1069
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1070
|
+
}
|
|
1071
|
+
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1072
|
+
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1073
|
+
return new ModConstructor(layer, sublayer);
|
|
1074
|
+
}
|
|
1075
|
+
async function importGraphicMapNotesGraphicOrigin() {
|
|
1076
|
+
if (isAMD) {
|
|
1077
|
+
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1078
|
+
}
|
|
1079
|
+
const module = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1080
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1081
|
+
}
|
|
1082
|
+
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1083
|
+
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1084
|
+
return new ModConstructor(layer, sublayer);
|
|
1085
|
+
}
|
|
1086
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1087
|
+
if (isAMD) {
|
|
1088
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1089
|
+
}
|
|
1090
|
+
const module = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1091
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1092
|
+
}
|
|
1093
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1094
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1095
|
+
return new ModConstructor(layer);
|
|
1096
|
+
}
|
|
1097
|
+
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1098
|
+
if (isAMD) {
|
|
1099
|
+
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1100
|
+
}
|
|
1101
|
+
const module = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1102
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1103
|
+
}
|
|
1104
|
+
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1105
|
+
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1106
|
+
return new ModConstructor(layer);
|
|
1107
|
+
}
|
|
1108
|
+
async function importGraphicParquetGraphicOrigin() {
|
|
1109
|
+
if (isAMD) {
|
|
1110
|
+
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1111
|
+
}
|
|
1112
|
+
const module = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1113
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1114
|
+
}
|
|
1115
|
+
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1116
|
+
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1117
|
+
return new ModConstructor(layer);
|
|
1118
|
+
}
|
|
1119
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
1120
|
+
if (isAMD) {
|
|
1121
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1122
|
+
}
|
|
1123
|
+
const module = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1124
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1125
|
+
}
|
|
1126
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1127
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1128
|
+
return new ModConstructor(layer);
|
|
1129
|
+
}
|
|
1130
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
1131
|
+
if (isAMD) {
|
|
1132
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1133
|
+
}
|
|
1134
|
+
const module = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1135
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1136
|
+
}
|
|
1137
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1138
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1139
|
+
return new ModConstructor(layer);
|
|
1140
|
+
}
|
|
1141
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1142
|
+
if (isAMD) {
|
|
1143
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1144
|
+
}
|
|
1145
|
+
const module = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1146
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1147
|
+
}
|
|
1148
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1149
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1150
|
+
return new ModConstructor(layer);
|
|
1151
|
+
}
|
|
1152
|
+
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1153
|
+
if (isAMD) {
|
|
1154
|
+
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1155
|
+
}
|
|
1156
|
+
const module = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1157
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1158
|
+
}
|
|
1159
|
+
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1160
|
+
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1161
|
+
return new ModConstructor(sublayer);
|
|
1162
|
+
}
|
|
1163
|
+
async function importGraphicTileGraphicOrigin() {
|
|
1164
|
+
if (isAMD) {
|
|
1165
|
+
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1166
|
+
}
|
|
1167
|
+
const module = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1168
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1169
|
+
}
|
|
1170
|
+
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1171
|
+
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1172
|
+
return new ModConstructor(layer, sublayer);
|
|
1173
|
+
}
|
|
1174
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1175
|
+
if (isAMD) {
|
|
1176
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1177
|
+
}
|
|
1178
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1179
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1180
|
+
}
|
|
1181
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1182
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1183
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1184
|
+
}
|
|
1185
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1186
|
+
if (isAMD) {
|
|
1187
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1188
|
+
}
|
|
1189
|
+
const module = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1190
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1191
|
+
}
|
|
1192
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1193
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1194
|
+
return new ModConstructor(layer);
|
|
1195
|
+
}
|
|
1196
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1197
|
+
if (isAMD) {
|
|
1198
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1199
|
+
}
|
|
1200
|
+
const module = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1201
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1202
|
+
}
|
|
1203
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1204
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1205
|
+
return new ModConstructor(layer);
|
|
1206
|
+
}
|
|
800
1207
|
async function importAttributeBinsGraphic() {
|
|
801
1208
|
if (isAMD) {
|
|
802
1209
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1787,6 +2194,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1787
2194
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1788
2195
|
return new ModConstructor(properties);
|
|
1789
2196
|
}
|
|
2197
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2198
|
+
if (isAMD) {
|
|
2199
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2200
|
+
}
|
|
2201
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2202
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2203
|
+
}
|
|
2204
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2205
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2206
|
+
return new ModConstructor(properties);
|
|
2207
|
+
}
|
|
1790
2208
|
async function importLayersSupportPublishingInfo() {
|
|
1791
2209
|
if (isAMD) {
|
|
1792
2210
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3338,6 +3756,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3338
3756
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3339
3757
|
return new ModConstructor(properties);
|
|
3340
3758
|
}
|
|
3759
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3760
|
+
if (isAMD) {
|
|
3761
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3762
|
+
}
|
|
3763
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3764
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3765
|
+
}
|
|
3766
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3767
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3768
|
+
return new ModConstructor(properties);
|
|
3769
|
+
}
|
|
3770
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3771
|
+
if (isAMD) {
|
|
3772
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3773
|
+
}
|
|
3774
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3775
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3776
|
+
}
|
|
3777
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3778
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3779
|
+
return new ModConstructor(properties);
|
|
3780
|
+
}
|
|
3341
3781
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3342
3782
|
if (isAMD) {
|
|
3343
3783
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3360,6 +3800,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3360
3800
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3361
3801
|
return new ModConstructor(properties);
|
|
3362
3802
|
}
|
|
3803
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3804
|
+
if (isAMD) {
|
|
3805
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3806
|
+
}
|
|
3807
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3808
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3809
|
+
}
|
|
3810
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3811
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3812
|
+
return new ModConstructor(properties);
|
|
3813
|
+
}
|
|
3814
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3815
|
+
if (isAMD) {
|
|
3816
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3817
|
+
}
|
|
3818
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3819
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3820
|
+
}
|
|
3821
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3822
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3823
|
+
return new ModConstructor(properties);
|
|
3824
|
+
}
|
|
3363
3825
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3364
3826
|
if (isAMD) {
|
|
3365
3827
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3371,6 +3833,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3371
3833
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3372
3834
|
return new ModConstructor(properties);
|
|
3373
3835
|
}
|
|
3836
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3837
|
+
if (isAMD) {
|
|
3838
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3839
|
+
}
|
|
3840
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3841
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3842
|
+
}
|
|
3843
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3844
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3845
|
+
return new ModConstructor(properties);
|
|
3846
|
+
}
|
|
3374
3847
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3375
3848
|
if (isAMD) {
|
|
3376
3849
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3492,6 +3965,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3492
3965
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3493
3966
|
return new ModConstructor(properties);
|
|
3494
3967
|
}
|
|
3968
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3969
|
+
if (isAMD) {
|
|
3970
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3971
|
+
}
|
|
3972
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3973
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3974
|
+
}
|
|
3975
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3976
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3977
|
+
return new ModConstructor(properties);
|
|
3978
|
+
}
|
|
3979
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3980
|
+
if (isAMD) {
|
|
3981
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3982
|
+
}
|
|
3983
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3984
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3985
|
+
}
|
|
3986
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3987
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3988
|
+
return new ModConstructor(properties);
|
|
3989
|
+
}
|
|
3990
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3991
|
+
if (isAMD) {
|
|
3992
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3993
|
+
}
|
|
3994
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3995
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3996
|
+
}
|
|
3997
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3998
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3999
|
+
return new ModConstructor(properties);
|
|
4000
|
+
}
|
|
3495
4001
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3496
4002
|
if (isAMD) {
|
|
3497
4003
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5395,6 +5901,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5395
5901
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5396
5902
|
return new ModConstructor(properties);
|
|
5397
5903
|
}
|
|
5904
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5905
|
+
if (isAMD) {
|
|
5906
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5907
|
+
}
|
|
5908
|
+
const module = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5909
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5910
|
+
}
|
|
5911
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5912
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5913
|
+
return new ModConstructor(properties);
|
|
5914
|
+
}
|
|
5915
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5916
|
+
if (isAMD) {
|
|
5917
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5918
|
+
}
|
|
5919
|
+
const module = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5920
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5921
|
+
}
|
|
5922
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5923
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5924
|
+
return new ModConstructor(properties);
|
|
5925
|
+
}
|
|
5398
5926
|
async function importSymbolsSupportStyleOrigin() {
|
|
5399
5927
|
if (isAMD) {
|
|
5400
5928
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5703,6 +6231,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5703
6231
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5704
6232
|
return new ModConstructor(properties);
|
|
5705
6233
|
}
|
|
6234
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6235
|
+
if (isAMD) {
|
|
6236
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6237
|
+
}
|
|
6238
|
+
const module = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6239
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6240
|
+
}
|
|
6241
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6242
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6243
|
+
return new ModConstructor(properties);
|
|
6244
|
+
}
|
|
5706
6245
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5707
6246
|
if (isAMD) {
|
|
5708
6247
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5747,6 +6286,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5747
6286
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5748
6287
|
return new ModConstructor(properties);
|
|
5749
6288
|
}
|
|
6289
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6290
|
+
if (isAMD) {
|
|
6291
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6292
|
+
}
|
|
6293
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6294
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6295
|
+
}
|
|
6296
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6297
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6298
|
+
return new ModConstructor(properties);
|
|
6299
|
+
}
|
|
5750
6300
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5751
6301
|
if (isAMD) {
|
|
5752
6302
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5835,6 +6385,17 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5835
6385
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5836
6386
|
return new ModConstructor(properties);
|
|
5837
6387
|
}
|
|
6388
|
+
async function importViewsAnalysisElevationProfileResult() {
|
|
6389
|
+
if (isAMD) {
|
|
6390
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfileResult");
|
|
6391
|
+
}
|
|
6392
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfileResult.js");
|
|
6393
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6394
|
+
}
|
|
6395
|
+
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6396
|
+
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
6397
|
+
return new ModConstructor(properties);
|
|
6398
|
+
}
|
|
5838
6399
|
async function importViewsBasemapView() {
|
|
5839
6400
|
if (isAMD) {
|
|
5840
6401
|
return await window.$arcgis.import("esri/views/BasemapView");
|
|
@@ -6055,39 +6616,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6055
6616
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6056
6617
|
return new ModConstructor(properties);
|
|
6057
6618
|
}
|
|
6058
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6059
|
-
if (isAMD) {
|
|
6060
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6061
|
-
}
|
|
6062
|
-
const module = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6063
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6064
|
-
}
|
|
6065
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6066
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6067
|
-
return new ModConstructor(properties);
|
|
6068
|
-
}
|
|
6069
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6070
|
-
if (isAMD) {
|
|
6071
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6072
|
-
}
|
|
6073
|
-
const module = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6074
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6075
|
-
}
|
|
6076
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6077
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6078
|
-
return new ModConstructor(properties);
|
|
6079
|
-
}
|
|
6080
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6081
|
-
if (isAMD) {
|
|
6082
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6083
|
-
}
|
|
6084
|
-
const module = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6085
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6086
|
-
}
|
|
6087
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6088
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6089
|
-
return new ModConstructor(properties);
|
|
6090
|
-
}
|
|
6091
6619
|
async function importViewsLayersDimensionLayerView() {
|
|
6092
6620
|
if (isAMD) {
|
|
6093
6621
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6099,17 +6627,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6099
6627
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6100
6628
|
return new ModConstructor(properties);
|
|
6101
6629
|
}
|
|
6102
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6103
|
-
if (isAMD) {
|
|
6104
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6105
|
-
}
|
|
6106
|
-
const module = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6107
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6108
|
-
}
|
|
6109
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6110
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6111
|
-
return new ModConstructor(properties);
|
|
6112
|
-
}
|
|
6113
6630
|
async function importViewsLayersGroupLayerView() {
|
|
6114
6631
|
if (isAMD) {
|
|
6115
6632
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6176,28 +6693,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6176
6693
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6177
6694
|
return new ModConstructor(properties);
|
|
6178
6695
|
}
|
|
6179
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6180
|
-
if (isAMD) {
|
|
6181
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6182
|
-
}
|
|
6183
|
-
const module = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6184
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6185
|
-
}
|
|
6186
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6187
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6188
|
-
return new ModConstructor(properties);
|
|
6189
|
-
}
|
|
6190
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6191
|
-
if (isAMD) {
|
|
6192
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6193
|
-
}
|
|
6194
|
-
const module = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6195
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6196
|
-
}
|
|
6197
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6198
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6199
|
-
return new ModConstructor(properties);
|
|
6200
|
-
}
|
|
6201
6696
|
async function importViewsLayersSceneLayerView() {
|
|
6202
6697
|
if (isAMD) {
|
|
6203
6698
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6209,17 +6704,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6209
6704
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6210
6705
|
return new ModConstructor(properties);
|
|
6211
6706
|
}
|
|
6212
|
-
async function importViewsLayersStreamLayerView() {
|
|
6213
|
-
if (isAMD) {
|
|
6214
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6215
|
-
}
|
|
6216
|
-
const module = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6217
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6218
|
-
}
|
|
6219
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6220
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6221
|
-
return new ModConstructor(properties);
|
|
6222
|
-
}
|
|
6223
6707
|
async function importViewsLayersViewshedLayerView() {
|
|
6224
6708
|
if (isAMD) {
|
|
6225
6709
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7122,6 +7606,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7122
7606
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7123
7607
|
return new ModConstructor(properties);
|
|
7124
7608
|
}
|
|
7609
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7610
|
+
if (isAMD) {
|
|
7611
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7612
|
+
}
|
|
7613
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7614
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7615
|
+
}
|
|
7616
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7617
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7618
|
+
return new ModConstructor(properties);
|
|
7619
|
+
}
|
|
7620
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7621
|
+
if (isAMD) {
|
|
7622
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7623
|
+
}
|
|
7624
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7625
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7626
|
+
}
|
|
7627
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7628
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7629
|
+
return new ModConstructor(properties);
|
|
7630
|
+
}
|
|
7631
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7632
|
+
if (isAMD) {
|
|
7633
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7634
|
+
}
|
|
7635
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7636
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7637
|
+
}
|
|
7638
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7639
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7640
|
+
return new ModConstructor(properties);
|
|
7641
|
+
}
|
|
7642
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7643
|
+
if (isAMD) {
|
|
7644
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7645
|
+
}
|
|
7646
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7647
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7648
|
+
}
|
|
7649
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7650
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7651
|
+
return new ModConstructor(properties);
|
|
7652
|
+
}
|
|
7125
7653
|
async function importWidgetsBookmarks() {
|
|
7126
7654
|
if (isAMD) {
|
|
7127
7655
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9729,6 +10257,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9729
10257
|
const module = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9730
10258
|
return isDefaultModule(module) ? module.default : module;
|
|
9731
10259
|
}
|
|
10260
|
+
async function importGraphicGraphicOrigins() {
|
|
10261
|
+
if (isAMD) {
|
|
10262
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10263
|
+
}
|
|
10264
|
+
const module = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10265
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10266
|
+
}
|
|
9732
10267
|
async function importIntl() {
|
|
9733
10268
|
if (isAMD) {
|
|
9734
10269
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10506,13 +11041,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10506
11041
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10507
11042
|
return isDefaultModule(module) ? module.default : module;
|
|
10508
11043
|
}
|
|
10509
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10510
|
-
if (isAMD) {
|
|
10511
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10512
|
-
}
|
|
10513
|
-
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10514
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10515
|
-
}
|
|
10516
11044
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10517
11045
|
if (isAMD) {
|
|
10518
11046
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10534,6 +11062,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10534
11062
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10535
11063
|
return isDefaultModule(module) ? module.default : module;
|
|
10536
11064
|
}
|
|
11065
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
11066
|
+
if (isAMD) {
|
|
11067
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
11068
|
+
}
|
|
11069
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
11070
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11071
|
+
}
|
|
10537
11072
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10538
11073
|
if (isAMD) {
|
|
10539
11074
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10548,6 +11083,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10548
11083
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10549
11084
|
return isDefaultModule(module) ? module.default : module;
|
|
10550
11085
|
}
|
|
11086
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
11087
|
+
if (isAMD) {
|
|
11088
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
11089
|
+
}
|
|
11090
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
11091
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11092
|
+
}
|
|
10551
11093
|
async function importApplicationsComponentsFontUtils() {
|
|
10552
11094
|
if (isAMD) {
|
|
10553
11095
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10569,6 +11111,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10569
11111
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10570
11112
|
return isDefaultModule(module) ? module.default : module;
|
|
10571
11113
|
}
|
|
11114
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11115
|
+
if (isAMD) {
|
|
11116
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11117
|
+
}
|
|
11118
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11119
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11120
|
+
}
|
|
10572
11121
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10573
11122
|
if (isAMD) {
|
|
10574
11123
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10597,6 +11146,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10597
11146
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10598
11147
|
return isDefaultModule(module) ? module.default : module;
|
|
10599
11148
|
}
|
|
11149
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11150
|
+
if (isAMD) {
|
|
11151
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11152
|
+
}
|
|
11153
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11154
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11155
|
+
}
|
|
10600
11156
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10601
11157
|
if (isAMD) {
|
|
10602
11158
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10611,6 +11167,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10611
11167
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10612
11168
|
return isDefaultModule(module) ? module.default : module;
|
|
10613
11169
|
}
|
|
11170
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11171
|
+
if (isAMD) {
|
|
11172
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11173
|
+
}
|
|
11174
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11175
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11176
|
+
}
|
|
10614
11177
|
async function importApplicationsComponentsStyleUtils() {
|
|
10615
11178
|
if (isAMD) {
|
|
10616
11179
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10673,6 +11236,15 @@ export {
|
|
|
10673
11236
|
importAnalysisDimensionAnalysis,
|
|
10674
11237
|
importAnalysisDimensionSimpleStyle,
|
|
10675
11238
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11239
|
+
importAnalysisElevationProfileAnalysis,
|
|
11240
|
+
importAnalysisElevationProfileLine,
|
|
11241
|
+
importAnalysisElevationProfileLineChartOptions,
|
|
11242
|
+
importAnalysisElevationProfileLineGround,
|
|
11243
|
+
importAnalysisElevationProfileLineInput,
|
|
11244
|
+
importAnalysisElevationProfileLineQuery,
|
|
11245
|
+
importAnalysisElevationProfileLineScene,
|
|
11246
|
+
importAnalysisElevationProfileLineViewOptions,
|
|
11247
|
+
importAnalysisElevationProfileUnits,
|
|
10676
11248
|
importAnalysisLengthDimension,
|
|
10677
11249
|
importAnalysisLineOfSightAnalysis,
|
|
10678
11250
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10682,18 +11254,25 @@ export {
|
|
|
10682
11254
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10683
11255
|
importAnalysisViewshed,
|
|
10684
11256
|
importAnalysisViewshedAnalysis,
|
|
11257
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11258
|
+
importAnalysisVolumeMeasurementCutFillOptions,
|
|
10685
11259
|
importApplicationsComponentsAnalysisUtils,
|
|
11260
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10686
11261
|
importApplicationsComponentsBasemapUtils,
|
|
10687
11262
|
importApplicationsComponentsDrawUtils,
|
|
11263
|
+
importApplicationsComponentsFeatureUtils,
|
|
10688
11264
|
importApplicationsComponentsFontUtils,
|
|
10689
11265
|
importApplicationsComponentsGetDefaultUnits,
|
|
10690
11266
|
importApplicationsComponentsGfxUtils,
|
|
11267
|
+
importApplicationsComponentsImageryUtils,
|
|
10691
11268
|
importApplicationsComponentsLayerOriginUtils,
|
|
10692
11269
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10693
11270
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10694
11271
|
importApplicationsComponentsReactiveUtils,
|
|
11272
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10695
11273
|
importApplicationsComponentsSelectionOperation,
|
|
10696
11274
|
importApplicationsComponentsSketchTooltipControls,
|
|
11275
|
+
importApplicationsComponentsStringUtils,
|
|
10697
11276
|
importApplicationsComponentsStyleUtils,
|
|
10698
11277
|
importApplicationsComponentsSvgUtils,
|
|
10699
11278
|
importApplicationsComponentsViewUtils,
|
|
@@ -10725,6 +11304,9 @@ export {
|
|
|
10725
11304
|
importCoreWorkersConnection,
|
|
10726
11305
|
importEditingSharedTemplatesSharedTemplate,
|
|
10727
11306
|
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
11307
|
+
importEffectsFocusArea,
|
|
11308
|
+
importEffectsFocusAreaOutline,
|
|
11309
|
+
importEffectsFocusAreas,
|
|
10728
11310
|
importFormElements,
|
|
10729
11311
|
importFormElementsAttachmentElement,
|
|
10730
11312
|
importFormElementsElement,
|
|
@@ -10838,6 +11420,30 @@ export {
|
|
|
10838
11420
|
importGeometrySupportNormalizeUtils,
|
|
10839
11421
|
importGeometrySupportWebMercatorUtils,
|
|
10840
11422
|
importGraphic,
|
|
11423
|
+
importGraphicBuildingGraphicOrigin,
|
|
11424
|
+
importGraphicCSVGraphicOrigin,
|
|
11425
|
+
importGraphicCatalogGraphicOrigin,
|
|
11426
|
+
importGraphicFeatureGraphicOrigin,
|
|
11427
|
+
importGraphicGeoJSONGraphicOrigin,
|
|
11428
|
+
importGraphicGeoRSSGraphicOrigin,
|
|
11429
|
+
importGraphicGraphicOrigin,
|
|
11430
|
+
importGraphicGraphicOrigins,
|
|
11431
|
+
importGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
11432
|
+
importGraphicIntegratedMeshGraphicOrigin,
|
|
11433
|
+
importGraphicKnowledgeGraphGraphicOrigin,
|
|
11434
|
+
importGraphicMapImageGraphicOrigin,
|
|
11435
|
+
importGraphicMapNotesGraphicOrigin,
|
|
11436
|
+
importGraphicOGCFeatureGraphicOrigin,
|
|
11437
|
+
importGraphicOrientedImageryGraphicOrigin,
|
|
11438
|
+
importGraphicParquetGraphicOrigin,
|
|
11439
|
+
importGraphicPointCloudGraphicOrigin,
|
|
11440
|
+
importGraphicSceneGraphicOrigin,
|
|
11441
|
+
importGraphicStreamGraphicOrigin,
|
|
11442
|
+
importGraphicSubtypeGroupGraphicOrigin,
|
|
11443
|
+
importGraphicTileGraphicOrigin,
|
|
11444
|
+
importGraphicVectorTileGraphicOrigin,
|
|
11445
|
+
importGraphicVoxelGraphicOrigin,
|
|
11446
|
+
importGraphicWFSGraphicOrigin,
|
|
10841
11447
|
importGround,
|
|
10842
11448
|
importIdentityCredential,
|
|
10843
11449
|
importIdentityIdentityManager,
|
|
@@ -10938,6 +11544,7 @@ export {
|
|
|
10938
11544
|
importLayersSupportParquetEncodingWkb,
|
|
10939
11545
|
importLayersSupportParquetUtils,
|
|
10940
11546
|
importLayersSupportPixelBlock,
|
|
11547
|
+
importLayersSupportPlaybackInfo,
|
|
10941
11548
|
importLayersSupportPublishingInfo,
|
|
10942
11549
|
importLayersSupportRangeDomain,
|
|
10943
11550
|
importLayersSupportRasterBandInfo,
|
|
@@ -11098,10 +11705,15 @@ export {
|
|
|
11098
11705
|
importRestKnowledgeGraphEntity,
|
|
11099
11706
|
importRestKnowledgeGraphEntityType,
|
|
11100
11707
|
importRestKnowledgeGraphFieldIndex,
|
|
11708
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11101
11709
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11710
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11102
11711
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11103
11712
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11713
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11714
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11104
11715
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11716
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11105
11717
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11106
11718
|
importRestKnowledgeGraphGraphObject,
|
|
11107
11719
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11113,6 +11725,9 @@ export {
|
|
|
11113
11725
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11114
11726
|
importRestKnowledgeGraphGraphSearch,
|
|
11115
11727
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11728
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11729
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11730
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11116
11731
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11117
11732
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11118
11733
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11354,6 +11969,8 @@ export {
|
|
|
11354
11969
|
importSymbolsSimpleMarkerSymbol,
|
|
11355
11970
|
importSymbolsSupportCimConversionUtils,
|
|
11356
11971
|
importSymbolsSupportCimSymbolUtils,
|
|
11972
|
+
importSymbolsSupportElevationInfo,
|
|
11973
|
+
importSymbolsSupportFeatureExpressionInfo,
|
|
11357
11974
|
importSymbolsSupportJsonUtils,
|
|
11358
11975
|
importSymbolsSupportStyleOrigin,
|
|
11359
11976
|
importSymbolsSupportSymbol3DVerticalOffset,
|
|
@@ -11387,10 +12004,12 @@ export {
|
|
|
11387
12004
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11388
12005
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11389
12006
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12007
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11390
12008
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11391
12009
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11392
12010
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11393
12011
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
12012
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11394
12013
|
importViews3dEnvironmentCloudyWeather,
|
|
11395
12014
|
importViews3dEnvironmentFoggyWeather,
|
|
11396
12015
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11404,6 +12023,7 @@ export {
|
|
|
11404
12023
|
importViews3dWebglManagedFBO,
|
|
11405
12024
|
importViews3dWebglRenderCamera,
|
|
11406
12025
|
importViews3dWebglRenderNode,
|
|
12026
|
+
importViewsAnalysisElevationProfileResult,
|
|
11407
12027
|
importViewsAnalysisLengthDimensionResult,
|
|
11408
12028
|
importViewsBasemapView,
|
|
11409
12029
|
importViewsDrawDraw,
|
|
@@ -11425,21 +12045,14 @@ export {
|
|
|
11425
12045
|
importViewsInteractiveTooltip,
|
|
11426
12046
|
importViewsLayersBuildingComponentSublayerView,
|
|
11427
12047
|
importViewsLayersBuildingSceneLayerView,
|
|
11428
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11429
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11430
|
-
importViewsLayersCatalogLayerView,
|
|
11431
12048
|
importViewsLayersDimensionLayerView,
|
|
11432
|
-
importViewsLayersFeatureLayerView,
|
|
11433
12049
|
importViewsLayersGroupLayerView,
|
|
11434
12050
|
importViewsLayersImageryLayerView,
|
|
11435
12051
|
importViewsLayersImageryTileLayerView,
|
|
11436
12052
|
importViewsLayersLayerView,
|
|
11437
12053
|
importViewsLayersLineOfSightLayerView,
|
|
11438
12054
|
importViewsLayersMediaLayerView,
|
|
11439
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11440
|
-
importViewsLayersPointCloudLayerView,
|
|
11441
12055
|
importViewsLayersSceneLayerView,
|
|
11442
|
-
importViewsLayersStreamLayerView,
|
|
11443
12056
|
importViewsLayersViewshedLayerView,
|
|
11444
12057
|
importViewsLinkChartView,
|
|
11445
12058
|
importViewsMagnifier,
|
|
@@ -11524,6 +12137,9 @@ export {
|
|
|
11524
12137
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11525
12138
|
importWidgetsBatchAttributeForm,
|
|
11526
12139
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12140
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12141
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
12142
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11527
12143
|
importWidgetsBookmarks,
|
|
11528
12144
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11529
12145
|
importWidgetsBuildingExplorer,
|
|
@@ -11720,6 +12336,15 @@ export {
|
|
|
11720
12336
|
newAnalysisDimensionAnalysis,
|
|
11721
12337
|
newAnalysisDimensionSimpleStyle,
|
|
11722
12338
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12339
|
+
newAnalysisElevationProfileAnalysis,
|
|
12340
|
+
newAnalysisElevationProfileLine,
|
|
12341
|
+
newAnalysisElevationProfileLineChartOptions,
|
|
12342
|
+
newAnalysisElevationProfileLineGround,
|
|
12343
|
+
newAnalysisElevationProfileLineInput,
|
|
12344
|
+
newAnalysisElevationProfileLineQuery,
|
|
12345
|
+
newAnalysisElevationProfileLineScene,
|
|
12346
|
+
newAnalysisElevationProfileLineViewOptions,
|
|
12347
|
+
newAnalysisElevationProfileUnits,
|
|
11723
12348
|
newAnalysisLengthDimension,
|
|
11724
12349
|
newAnalysisLineOfSightAnalysis,
|
|
11725
12350
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11729,6 +12354,8 @@ export {
|
|
|
11729
12354
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11730
12355
|
newAnalysisViewshed,
|
|
11731
12356
|
newAnalysisViewshedAnalysis,
|
|
12357
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12358
|
+
newAnalysisVolumeMeasurementCutFillOptions,
|
|
11732
12359
|
newAttributeBinsGraphic,
|
|
11733
12360
|
newBasemap,
|
|
11734
12361
|
newCamera,
|
|
@@ -11739,6 +12366,9 @@ export {
|
|
|
11739
12366
|
newCoreError,
|
|
11740
12367
|
newCoreHandles,
|
|
11741
12368
|
newCoreWorkersConnection,
|
|
12369
|
+
newEffectsFocusArea,
|
|
12370
|
+
newEffectsFocusAreaOutline,
|
|
12371
|
+
newEffectsFocusAreas,
|
|
11742
12372
|
newFormElementsAttachmentElement,
|
|
11743
12373
|
newFormElementsElement,
|
|
11744
12374
|
newFormElementsFieldElement,
|
|
@@ -11788,6 +12418,29 @@ export {
|
|
|
11788
12418
|
newGeometrySupportMeshTextureTransform,
|
|
11789
12419
|
newGeometrySupportMeshTransform,
|
|
11790
12420
|
newGraphic,
|
|
12421
|
+
newGraphicBuildingGraphicOrigin,
|
|
12422
|
+
newGraphicCSVGraphicOrigin,
|
|
12423
|
+
newGraphicCatalogGraphicOrigin,
|
|
12424
|
+
newGraphicFeatureGraphicOrigin,
|
|
12425
|
+
newGraphicGeoJSONGraphicOrigin,
|
|
12426
|
+
newGraphicGeoRSSGraphicOrigin,
|
|
12427
|
+
newGraphicGraphicOrigin,
|
|
12428
|
+
newGraphicIntegratedMesh3DTilesGraphicOrigin,
|
|
12429
|
+
newGraphicIntegratedMeshGraphicOrigin,
|
|
12430
|
+
newGraphicKnowledgeGraphGraphicOrigin,
|
|
12431
|
+
newGraphicMapImageGraphicOrigin,
|
|
12432
|
+
newGraphicMapNotesGraphicOrigin,
|
|
12433
|
+
newGraphicOGCFeatureGraphicOrigin,
|
|
12434
|
+
newGraphicOrientedImageryGraphicOrigin,
|
|
12435
|
+
newGraphicParquetGraphicOrigin,
|
|
12436
|
+
newGraphicPointCloudGraphicOrigin,
|
|
12437
|
+
newGraphicSceneGraphicOrigin,
|
|
12438
|
+
newGraphicStreamGraphicOrigin,
|
|
12439
|
+
newGraphicSubtypeGroupGraphicOrigin,
|
|
12440
|
+
newGraphicTileGraphicOrigin,
|
|
12441
|
+
newGraphicVectorTileGraphicOrigin,
|
|
12442
|
+
newGraphicVoxelGraphicOrigin,
|
|
12443
|
+
newGraphicWFSGraphicOrigin,
|
|
11791
12444
|
newGround,
|
|
11792
12445
|
newIdentityCredential,
|
|
11793
12446
|
newIdentityOAuthInfo,
|
|
@@ -11876,6 +12529,7 @@ export {
|
|
|
11876
12529
|
newLayersSupportParquetEncodingLocation,
|
|
11877
12530
|
newLayersSupportParquetEncodingWkb,
|
|
11878
12531
|
newLayersSupportPixelBlock,
|
|
12532
|
+
newLayersSupportPlaybackInfo,
|
|
11879
12533
|
newLayersSupportPublishingInfo,
|
|
11880
12534
|
newLayersSupportRangeDomain,
|
|
11881
12535
|
newLayersSupportRasterBandInfo,
|
|
@@ -12016,10 +12670,15 @@ export {
|
|
|
12016
12670
|
newRestKnowledgeGraphEntity,
|
|
12017
12671
|
newRestKnowledgeGraphEntityType,
|
|
12018
12672
|
newRestKnowledgeGraphFieldIndex,
|
|
12673
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12019
12674
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12675
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12020
12676
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12021
12677
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12678
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12679
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12022
12680
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12681
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12023
12682
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12024
12683
|
newRestKnowledgeGraphGraphObject,
|
|
12025
12684
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12031,6 +12690,9 @@ export {
|
|
|
12031
12690
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12032
12691
|
newRestKnowledgeGraphGraphSearch,
|
|
12033
12692
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12693
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12694
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12695
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12034
12696
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12035
12697
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12036
12698
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12204,6 +12866,8 @@ export {
|
|
|
12204
12866
|
newSymbolsSimpleFillSymbol,
|
|
12205
12867
|
newSymbolsSimpleLineSymbol,
|
|
12206
12868
|
newSymbolsSimpleMarkerSymbol,
|
|
12869
|
+
newSymbolsSupportElevationInfo,
|
|
12870
|
+
newSymbolsSupportFeatureExpressionInfo,
|
|
12207
12871
|
newSymbolsSupportStyleOrigin,
|
|
12208
12872
|
newSymbolsSupportSymbol3DVerticalOffset,
|
|
12209
12873
|
newSymbolsSymbol,
|
|
@@ -12232,10 +12896,12 @@ export {
|
|
|
12232
12896
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12233
12897
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12234
12898
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12899
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12235
12900
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12236
12901
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12237
12902
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12238
12903
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12904
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12239
12905
|
newViews3dEnvironmentCloudyWeather,
|
|
12240
12906
|
newViews3dEnvironmentFoggyWeather,
|
|
12241
12907
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12244,6 +12910,7 @@ export {
|
|
|
12244
12910
|
newViews3dEnvironmentSunnyWeather,
|
|
12245
12911
|
newViews3dEnvironmentVirtualLighting,
|
|
12246
12912
|
newViews3dWebglRenderNode,
|
|
12913
|
+
newViewsAnalysisElevationProfileResult,
|
|
12247
12914
|
newViewsBasemapView,
|
|
12248
12915
|
newViewsDrawDraw,
|
|
12249
12916
|
newViewsDrawDrawAction,
|
|
@@ -12264,21 +12931,14 @@ export {
|
|
|
12264
12931
|
newViewsInteractiveTooltip,
|
|
12265
12932
|
newViewsLayersBuildingComponentSublayerView,
|
|
12266
12933
|
newViewsLayersBuildingSceneLayerView,
|
|
12267
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12268
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12269
|
-
newViewsLayersCatalogLayerView,
|
|
12270
12934
|
newViewsLayersDimensionLayerView,
|
|
12271
|
-
newViewsLayersFeatureLayerView,
|
|
12272
12935
|
newViewsLayersGroupLayerView,
|
|
12273
12936
|
newViewsLayersImageryLayerView,
|
|
12274
12937
|
newViewsLayersImageryTileLayerView,
|
|
12275
12938
|
newViewsLayersLayerView,
|
|
12276
12939
|
newViewsLayersLineOfSightLayerView,
|
|
12277
12940
|
newViewsLayersMediaLayerView,
|
|
12278
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12279
|
-
newViewsLayersPointCloudLayerView,
|
|
12280
12941
|
newViewsLayersSceneLayerView,
|
|
12281
|
-
newViewsLayersStreamLayerView,
|
|
12282
12942
|
newViewsLayersViewshedLayerView,
|
|
12283
12943
|
newViewsLinkChartView,
|
|
12284
12944
|
newViewsMagnifier,
|
|
@@ -12361,6 +13021,10 @@ export {
|
|
|
12361
13021
|
newWidgetsBasemapToggle,
|
|
12362
13022
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12363
13023
|
newWidgetsBatchAttributeForm,
|
|
13024
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
13025
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
13026
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
13027
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12364
13028
|
newWidgetsBookmarks,
|
|
12365
13029
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12366
13030
|
newWidgetsBuildingExplorer,
|