@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.cjs
CHANGED
|
@@ -30,7 +30,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
|
|
|
30
30
|
if (isAMD) {
|
|
31
31
|
return await window.$arcgis.import(modulePath);
|
|
32
32
|
}
|
|
33
|
-
const module2 = deferredImport();
|
|
33
|
+
const module2 = await deferredImport();
|
|
34
34
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
35
35
|
}
|
|
36
36
|
async function importIdentityIdentityManager() {
|
|
@@ -139,6 +139,105 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
139
139
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
140
140
|
return new ModConstructor(properties);
|
|
141
141
|
}
|
|
142
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
143
|
+
if (isAMD) {
|
|
144
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
145
|
+
}
|
|
146
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
147
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
148
|
+
}
|
|
149
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
150
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
151
|
+
return new ModConstructor(properties);
|
|
152
|
+
}
|
|
153
|
+
async function importAnalysisElevationProfileLine() {
|
|
154
|
+
if (isAMD) {
|
|
155
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLine");
|
|
156
|
+
}
|
|
157
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLine.js");
|
|
158
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
159
|
+
}
|
|
160
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
161
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
162
|
+
return new ModConstructor(properties);
|
|
163
|
+
}
|
|
164
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
165
|
+
if (isAMD) {
|
|
166
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineChartOptions");
|
|
167
|
+
}
|
|
168
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineChartOptions.js");
|
|
169
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
170
|
+
}
|
|
171
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
172
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
173
|
+
return new ModConstructor(properties);
|
|
174
|
+
}
|
|
175
|
+
async function importAnalysisElevationProfileLineGround() {
|
|
176
|
+
if (isAMD) {
|
|
177
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineGround");
|
|
178
|
+
}
|
|
179
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineGround.js");
|
|
180
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
181
|
+
}
|
|
182
|
+
async function newAnalysisElevationProfileLineGround(properties) {
|
|
183
|
+
const ModConstructor = await importAnalysisElevationProfileLineGround();
|
|
184
|
+
return new ModConstructor(properties);
|
|
185
|
+
}
|
|
186
|
+
async function importAnalysisElevationProfileLineInput() {
|
|
187
|
+
if (isAMD) {
|
|
188
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineInput");
|
|
189
|
+
}
|
|
190
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineInput.js");
|
|
191
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
192
|
+
}
|
|
193
|
+
async function newAnalysisElevationProfileLineInput(properties) {
|
|
194
|
+
const ModConstructor = await importAnalysisElevationProfileLineInput();
|
|
195
|
+
return new ModConstructor(properties);
|
|
196
|
+
}
|
|
197
|
+
async function importAnalysisElevationProfileLineQuery() {
|
|
198
|
+
if (isAMD) {
|
|
199
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineQuery");
|
|
200
|
+
}
|
|
201
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineQuery.js");
|
|
202
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
203
|
+
}
|
|
204
|
+
async function newAnalysisElevationProfileLineQuery(properties) {
|
|
205
|
+
const ModConstructor = await importAnalysisElevationProfileLineQuery();
|
|
206
|
+
return new ModConstructor(properties);
|
|
207
|
+
}
|
|
208
|
+
async function importAnalysisElevationProfileLineScene() {
|
|
209
|
+
if (isAMD) {
|
|
210
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineScene");
|
|
211
|
+
}
|
|
212
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineScene.js");
|
|
213
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
214
|
+
}
|
|
215
|
+
async function newAnalysisElevationProfileLineScene(properties) {
|
|
216
|
+
const ModConstructor = await importAnalysisElevationProfileLineScene();
|
|
217
|
+
return new ModConstructor(properties);
|
|
218
|
+
}
|
|
219
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
220
|
+
if (isAMD) {
|
|
221
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileLineViewOptions");
|
|
222
|
+
}
|
|
223
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileLineViewOptions.js");
|
|
224
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
225
|
+
}
|
|
226
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
227
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
228
|
+
return new ModConstructor(properties);
|
|
229
|
+
}
|
|
230
|
+
async function importAnalysisElevationProfileUnits() {
|
|
231
|
+
if (isAMD) {
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileUnits");
|
|
233
|
+
}
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfileUnits.js");
|
|
235
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
|
+
}
|
|
237
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
239
|
+
return new ModConstructor(properties);
|
|
240
|
+
}
|
|
142
241
|
async function importAnalysisLengthDimension() {
|
|
143
242
|
if (isAMD) {
|
|
144
243
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -205,6 +304,17 @@ async function newAnalysisSlicePlane(properties) {
|
|
|
205
304
|
const ModConstructor = await importAnalysisSlicePlane();
|
|
206
305
|
return new ModConstructor(properties);
|
|
207
306
|
}
|
|
307
|
+
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
308
|
+
if (isAMD) {
|
|
309
|
+
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
310
|
+
}
|
|
311
|
+
const module2 = await import("@arcgis/core/analysis/support/AnalysisOriginWebScene.js");
|
|
312
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
|
+
}
|
|
314
|
+
async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
315
|
+
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
316
|
+
return new ModConstructor(properties);
|
|
317
|
+
}
|
|
208
318
|
async function importAnalysisViewshed() {
|
|
209
319
|
if (isAMD) {
|
|
210
320
|
return await window.$arcgis.import("esri/analysis/Viewshed");
|
|
@@ -227,15 +337,26 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
337
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
338
|
return new ModConstructor(properties);
|
|
229
339
|
}
|
|
230
|
-
async function
|
|
340
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
231
341
|
if (isAMD) {
|
|
232
|
-
return await window.$arcgis.import("esri/analysis/
|
|
342
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
233
343
|
}
|
|
234
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
344
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
235
345
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
346
|
}
|
|
237
|
-
async function
|
|
238
|
-
const ModConstructor = await
|
|
347
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
348
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
349
|
+
return new ModConstructor(properties);
|
|
350
|
+
}
|
|
351
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
352
|
+
if (isAMD) {
|
|
353
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
354
|
+
}
|
|
355
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
356
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
357
|
+
}
|
|
358
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
359
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
239
360
|
return new ModConstructor(properties);
|
|
240
361
|
}
|
|
241
362
|
async function importCoreAccessor() {
|
|
@@ -293,6 +414,39 @@ async function newCoreWorkersConnection() {
|
|
|
293
414
|
const ModConstructor = await importCoreWorkersConnection();
|
|
294
415
|
return new ModConstructor();
|
|
295
416
|
}
|
|
417
|
+
async function importEffectsFocusAreas() {
|
|
418
|
+
if (isAMD) {
|
|
419
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
420
|
+
}
|
|
421
|
+
const module2 = await import("@arcgis/core/effects/FocusAreas.js");
|
|
422
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
423
|
+
}
|
|
424
|
+
async function newEffectsFocusAreas(properties) {
|
|
425
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
426
|
+
return new ModConstructor(properties);
|
|
427
|
+
}
|
|
428
|
+
async function importEffectsFocusArea() {
|
|
429
|
+
if (isAMD) {
|
|
430
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
431
|
+
}
|
|
432
|
+
const module2 = await import("@arcgis/core/effects/FocusArea.js");
|
|
433
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
434
|
+
}
|
|
435
|
+
async function newEffectsFocusArea(properties) {
|
|
436
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
437
|
+
return new ModConstructor(properties);
|
|
438
|
+
}
|
|
439
|
+
async function importEffectsFocusAreaOutline() {
|
|
440
|
+
if (isAMD) {
|
|
441
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
442
|
+
}
|
|
443
|
+
const module2 = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
444
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
445
|
+
}
|
|
446
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
447
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
448
|
+
return new ModConstructor(properties);
|
|
449
|
+
}
|
|
296
450
|
async function importFormElementsAttachmentElement() {
|
|
297
451
|
if (isAMD) {
|
|
298
452
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -821,6 +975,259 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
821
975
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
822
976
|
return new ModConstructor(properties);
|
|
823
977
|
}
|
|
978
|
+
async function importGraphicGraphicOrigin() {
|
|
979
|
+
if (isAMD) {
|
|
980
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
981
|
+
}
|
|
982
|
+
const module2 = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
983
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
984
|
+
}
|
|
985
|
+
async function newGraphicGraphicOrigin() {
|
|
986
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
987
|
+
return new ModConstructor();
|
|
988
|
+
}
|
|
989
|
+
async function importGraphicBuildingGraphicOrigin() {
|
|
990
|
+
if (isAMD) {
|
|
991
|
+
return await window.$arcgis.import("esri/graphic/BuildingGraphicOrigin");
|
|
992
|
+
}
|
|
993
|
+
const module2 = await import("@arcgis/core/graphic/BuildingGraphicOrigin.js");
|
|
994
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
995
|
+
}
|
|
996
|
+
async function newGraphicBuildingGraphicOrigin(sublayer) {
|
|
997
|
+
const ModConstructor = await importGraphicBuildingGraphicOrigin();
|
|
998
|
+
return new ModConstructor(sublayer);
|
|
999
|
+
}
|
|
1000
|
+
async function importGraphicCatalogGraphicOrigin() {
|
|
1001
|
+
if (isAMD) {
|
|
1002
|
+
return await window.$arcgis.import("esri/graphic/CatalogGraphicOrigin");
|
|
1003
|
+
}
|
|
1004
|
+
const module2 = await import("@arcgis/core/graphic/CatalogGraphicOrigin.js");
|
|
1005
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1006
|
+
}
|
|
1007
|
+
async function newGraphicCatalogGraphicOrigin(layer) {
|
|
1008
|
+
const ModConstructor = await importGraphicCatalogGraphicOrigin();
|
|
1009
|
+
return new ModConstructor(layer);
|
|
1010
|
+
}
|
|
1011
|
+
async function importGraphicCSVGraphicOrigin() {
|
|
1012
|
+
if (isAMD) {
|
|
1013
|
+
return await window.$arcgis.import("esri/graphic/CSVGraphicOrigin");
|
|
1014
|
+
}
|
|
1015
|
+
const module2 = await import("@arcgis/core/graphic/CSVGraphicOrigin.js");
|
|
1016
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1017
|
+
}
|
|
1018
|
+
async function newGraphicCSVGraphicOrigin(layer) {
|
|
1019
|
+
const ModConstructor = await importGraphicCSVGraphicOrigin();
|
|
1020
|
+
return new ModConstructor(layer);
|
|
1021
|
+
}
|
|
1022
|
+
async function importGraphicFeatureGraphicOrigin() {
|
|
1023
|
+
if (isAMD) {
|
|
1024
|
+
return await window.$arcgis.import("esri/graphic/FeatureGraphicOrigin");
|
|
1025
|
+
}
|
|
1026
|
+
const module2 = await import("@arcgis/core/graphic/FeatureGraphicOrigin.js");
|
|
1027
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1028
|
+
}
|
|
1029
|
+
async function newGraphicFeatureGraphicOrigin(layer) {
|
|
1030
|
+
const ModConstructor = await importGraphicFeatureGraphicOrigin();
|
|
1031
|
+
return new ModConstructor(layer);
|
|
1032
|
+
}
|
|
1033
|
+
async function importGraphicGeoJSONGraphicOrigin() {
|
|
1034
|
+
if (isAMD) {
|
|
1035
|
+
return await window.$arcgis.import("esri/graphic/GeoJSONGraphicOrigin");
|
|
1036
|
+
}
|
|
1037
|
+
const module2 = await import("@arcgis/core/graphic/GeoJSONGraphicOrigin.js");
|
|
1038
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1039
|
+
}
|
|
1040
|
+
async function newGraphicGeoJSONGraphicOrigin(layer) {
|
|
1041
|
+
const ModConstructor = await importGraphicGeoJSONGraphicOrigin();
|
|
1042
|
+
return new ModConstructor(layer);
|
|
1043
|
+
}
|
|
1044
|
+
async function importGraphicGeoRSSGraphicOrigin() {
|
|
1045
|
+
if (isAMD) {
|
|
1046
|
+
return await window.$arcgis.import("esri/graphic/GeoRSSGraphicOrigin");
|
|
1047
|
+
}
|
|
1048
|
+
const module2 = await import("@arcgis/core/graphic/GeoRSSGraphicOrigin.js");
|
|
1049
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1050
|
+
}
|
|
1051
|
+
async function newGraphicGeoRSSGraphicOrigin(layer) {
|
|
1052
|
+
const ModConstructor = await importGraphicGeoRSSGraphicOrigin();
|
|
1053
|
+
return new ModConstructor(layer);
|
|
1054
|
+
}
|
|
1055
|
+
async function importGraphicIntegratedMesh3DTilesGraphicOrigin() {
|
|
1056
|
+
if (isAMD) {
|
|
1057
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMesh3DTilesGraphicOrigin");
|
|
1058
|
+
}
|
|
1059
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMesh3DTilesGraphicOrigin.js");
|
|
1060
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1061
|
+
}
|
|
1062
|
+
async function newGraphicIntegratedMesh3DTilesGraphicOrigin(layer) {
|
|
1063
|
+
const ModConstructor = await importGraphicIntegratedMesh3DTilesGraphicOrigin();
|
|
1064
|
+
return new ModConstructor(layer);
|
|
1065
|
+
}
|
|
1066
|
+
async function importGraphicIntegratedMeshGraphicOrigin() {
|
|
1067
|
+
if (isAMD) {
|
|
1068
|
+
return await window.$arcgis.import("esri/graphic/IntegratedMeshGraphicOrigin");
|
|
1069
|
+
}
|
|
1070
|
+
const module2 = await import("@arcgis/core/graphic/IntegratedMeshGraphicOrigin.js");
|
|
1071
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1072
|
+
}
|
|
1073
|
+
async function newGraphicIntegratedMeshGraphicOrigin(layer) {
|
|
1074
|
+
const ModConstructor = await importGraphicIntegratedMeshGraphicOrigin();
|
|
1075
|
+
return new ModConstructor(layer);
|
|
1076
|
+
}
|
|
1077
|
+
async function importGraphicKnowledgeGraphGraphicOrigin() {
|
|
1078
|
+
if (isAMD) {
|
|
1079
|
+
return await window.$arcgis.import("esri/graphic/KnowledgeGraphGraphicOrigin");
|
|
1080
|
+
}
|
|
1081
|
+
const module2 = await import("@arcgis/core/graphic/KnowledgeGraphGraphicOrigin.js");
|
|
1082
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1083
|
+
}
|
|
1084
|
+
async function newGraphicKnowledgeGraphGraphicOrigin(sublayer) {
|
|
1085
|
+
const ModConstructor = await importGraphicKnowledgeGraphGraphicOrigin();
|
|
1086
|
+
return new ModConstructor(sublayer);
|
|
1087
|
+
}
|
|
1088
|
+
async function importGraphicMapImageGraphicOrigin() {
|
|
1089
|
+
if (isAMD) {
|
|
1090
|
+
return await window.$arcgis.import("esri/graphic/MapImageGraphicOrigin");
|
|
1091
|
+
}
|
|
1092
|
+
const module2 = await import("@arcgis/core/graphic/MapImageGraphicOrigin.js");
|
|
1093
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1094
|
+
}
|
|
1095
|
+
async function newGraphicMapImageGraphicOrigin(layer, sublayer) {
|
|
1096
|
+
const ModConstructor = await importGraphicMapImageGraphicOrigin();
|
|
1097
|
+
return new ModConstructor(layer, sublayer);
|
|
1098
|
+
}
|
|
1099
|
+
async function importGraphicMapNotesGraphicOrigin() {
|
|
1100
|
+
if (isAMD) {
|
|
1101
|
+
return await window.$arcgis.import("esri/graphic/MapNotesGraphicOrigin");
|
|
1102
|
+
}
|
|
1103
|
+
const module2 = await import("@arcgis/core/graphic/MapNotesGraphicOrigin.js");
|
|
1104
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1105
|
+
}
|
|
1106
|
+
async function newGraphicMapNotesGraphicOrigin(layer, sublayer) {
|
|
1107
|
+
const ModConstructor = await importGraphicMapNotesGraphicOrigin();
|
|
1108
|
+
return new ModConstructor(layer, sublayer);
|
|
1109
|
+
}
|
|
1110
|
+
async function importGraphicOGCFeatureGraphicOrigin() {
|
|
1111
|
+
if (isAMD) {
|
|
1112
|
+
return await window.$arcgis.import("esri/graphic/OGCFeatureGraphicOrigin");
|
|
1113
|
+
}
|
|
1114
|
+
const module2 = await import("@arcgis/core/graphic/OGCFeatureGraphicOrigin.js");
|
|
1115
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1116
|
+
}
|
|
1117
|
+
async function newGraphicOGCFeatureGraphicOrigin(layer) {
|
|
1118
|
+
const ModConstructor = await importGraphicOGCFeatureGraphicOrigin();
|
|
1119
|
+
return new ModConstructor(layer);
|
|
1120
|
+
}
|
|
1121
|
+
async function importGraphicOrientedImageryGraphicOrigin() {
|
|
1122
|
+
if (isAMD) {
|
|
1123
|
+
return await window.$arcgis.import("esri/graphic/OrientedImageryGraphicOrigin");
|
|
1124
|
+
}
|
|
1125
|
+
const module2 = await import("@arcgis/core/graphic/OrientedImageryGraphicOrigin.js");
|
|
1126
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1127
|
+
}
|
|
1128
|
+
async function newGraphicOrientedImageryGraphicOrigin(layer) {
|
|
1129
|
+
const ModConstructor = await importGraphicOrientedImageryGraphicOrigin();
|
|
1130
|
+
return new ModConstructor(layer);
|
|
1131
|
+
}
|
|
1132
|
+
async function importGraphicParquetGraphicOrigin() {
|
|
1133
|
+
if (isAMD) {
|
|
1134
|
+
return await window.$arcgis.import("esri/graphic/ParquetGraphicOrigin");
|
|
1135
|
+
}
|
|
1136
|
+
const module2 = await import("@arcgis/core/graphic/ParquetGraphicOrigin.js");
|
|
1137
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1138
|
+
}
|
|
1139
|
+
async function newGraphicParquetGraphicOrigin(layer) {
|
|
1140
|
+
const ModConstructor = await importGraphicParquetGraphicOrigin();
|
|
1141
|
+
return new ModConstructor(layer);
|
|
1142
|
+
}
|
|
1143
|
+
async function importGraphicPointCloudGraphicOrigin() {
|
|
1144
|
+
if (isAMD) {
|
|
1145
|
+
return await window.$arcgis.import("esri/graphic/PointCloudGraphicOrigin");
|
|
1146
|
+
}
|
|
1147
|
+
const module2 = await import("@arcgis/core/graphic/PointCloudGraphicOrigin.js");
|
|
1148
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1149
|
+
}
|
|
1150
|
+
async function newGraphicPointCloudGraphicOrigin(layer) {
|
|
1151
|
+
const ModConstructor = await importGraphicPointCloudGraphicOrigin();
|
|
1152
|
+
return new ModConstructor(layer);
|
|
1153
|
+
}
|
|
1154
|
+
async function importGraphicSceneGraphicOrigin() {
|
|
1155
|
+
if (isAMD) {
|
|
1156
|
+
return await window.$arcgis.import("esri/graphic/SceneGraphicOrigin");
|
|
1157
|
+
}
|
|
1158
|
+
const module2 = await import("@arcgis/core/graphic/SceneGraphicOrigin.js");
|
|
1159
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1160
|
+
}
|
|
1161
|
+
async function newGraphicSceneGraphicOrigin(layer) {
|
|
1162
|
+
const ModConstructor = await importGraphicSceneGraphicOrigin();
|
|
1163
|
+
return new ModConstructor(layer);
|
|
1164
|
+
}
|
|
1165
|
+
async function importGraphicStreamGraphicOrigin() {
|
|
1166
|
+
if (isAMD) {
|
|
1167
|
+
return await window.$arcgis.import("esri/graphic/StreamGraphicOrigin");
|
|
1168
|
+
}
|
|
1169
|
+
const module2 = await import("@arcgis/core/graphic/StreamGraphicOrigin.js");
|
|
1170
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1171
|
+
}
|
|
1172
|
+
async function newGraphicStreamGraphicOrigin(layer) {
|
|
1173
|
+
const ModConstructor = await importGraphicStreamGraphicOrigin();
|
|
1174
|
+
return new ModConstructor(layer);
|
|
1175
|
+
}
|
|
1176
|
+
async function importGraphicSubtypeGroupGraphicOrigin() {
|
|
1177
|
+
if (isAMD) {
|
|
1178
|
+
return await window.$arcgis.import("esri/graphic/SubtypeGroupGraphicOrigin");
|
|
1179
|
+
}
|
|
1180
|
+
const module2 = await import("@arcgis/core/graphic/SubtypeGroupGraphicOrigin.js");
|
|
1181
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1182
|
+
}
|
|
1183
|
+
async function newGraphicSubtypeGroupGraphicOrigin(sublayer) {
|
|
1184
|
+
const ModConstructor = await importGraphicSubtypeGroupGraphicOrigin();
|
|
1185
|
+
return new ModConstructor(sublayer);
|
|
1186
|
+
}
|
|
1187
|
+
async function importGraphicTileGraphicOrigin() {
|
|
1188
|
+
if (isAMD) {
|
|
1189
|
+
return await window.$arcgis.import("esri/graphic/TileGraphicOrigin");
|
|
1190
|
+
}
|
|
1191
|
+
const module2 = await import("@arcgis/core/graphic/TileGraphicOrigin.js");
|
|
1192
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1193
|
+
}
|
|
1194
|
+
async function newGraphicTileGraphicOrigin(layer, sublayer) {
|
|
1195
|
+
const ModConstructor = await importGraphicTileGraphicOrigin();
|
|
1196
|
+
return new ModConstructor(layer, sublayer);
|
|
1197
|
+
}
|
|
1198
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
1199
|
+
if (isAMD) {
|
|
1200
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
1201
|
+
}
|
|
1202
|
+
const module2 = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
1203
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1204
|
+
}
|
|
1205
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
1206
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
1207
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
1208
|
+
}
|
|
1209
|
+
async function importGraphicVoxelGraphicOrigin() {
|
|
1210
|
+
if (isAMD) {
|
|
1211
|
+
return await window.$arcgis.import("esri/graphic/VoxelGraphicOrigin");
|
|
1212
|
+
}
|
|
1213
|
+
const module2 = await import("@arcgis/core/graphic/VoxelGraphicOrigin.js");
|
|
1214
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1215
|
+
}
|
|
1216
|
+
async function newGraphicVoxelGraphicOrigin(layer) {
|
|
1217
|
+
const ModConstructor = await importGraphicVoxelGraphicOrigin();
|
|
1218
|
+
return new ModConstructor(layer);
|
|
1219
|
+
}
|
|
1220
|
+
async function importGraphicWFSGraphicOrigin() {
|
|
1221
|
+
if (isAMD) {
|
|
1222
|
+
return await window.$arcgis.import("esri/graphic/WFSGraphicOrigin");
|
|
1223
|
+
}
|
|
1224
|
+
const module2 = await import("@arcgis/core/graphic/WFSGraphicOrigin.js");
|
|
1225
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1226
|
+
}
|
|
1227
|
+
async function newGraphicWFSGraphicOrigin(layer) {
|
|
1228
|
+
const ModConstructor = await importGraphicWFSGraphicOrigin();
|
|
1229
|
+
return new ModConstructor(layer);
|
|
1230
|
+
}
|
|
824
1231
|
async function importAttributeBinsGraphic() {
|
|
825
1232
|
if (isAMD) {
|
|
826
1233
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1811,6 +2218,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1811
2218
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1812
2219
|
return new ModConstructor(properties);
|
|
1813
2220
|
}
|
|
2221
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2222
|
+
if (isAMD) {
|
|
2223
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2224
|
+
}
|
|
2225
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2226
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
2227
|
+
}
|
|
2228
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2229
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2230
|
+
return new ModConstructor(properties);
|
|
2231
|
+
}
|
|
1814
2232
|
async function importLayersSupportPublishingInfo() {
|
|
1815
2233
|
if (isAMD) {
|
|
1816
2234
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3362,6 +3780,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3362
3780
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3363
3781
|
return new ModConstructor(properties);
|
|
3364
3782
|
}
|
|
3783
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3784
|
+
if (isAMD) {
|
|
3785
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3786
|
+
}
|
|
3787
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3788
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3789
|
+
}
|
|
3790
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3791
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3792
|
+
return new ModConstructor(properties);
|
|
3793
|
+
}
|
|
3794
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3795
|
+
if (isAMD) {
|
|
3796
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3797
|
+
}
|
|
3798
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3799
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3800
|
+
}
|
|
3801
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3802
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3803
|
+
return new ModConstructor(properties);
|
|
3804
|
+
}
|
|
3365
3805
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3366
3806
|
if (isAMD) {
|
|
3367
3807
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3384,6 +3824,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3384
3824
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3385
3825
|
return new ModConstructor(properties);
|
|
3386
3826
|
}
|
|
3827
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3828
|
+
if (isAMD) {
|
|
3829
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3830
|
+
}
|
|
3831
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3832
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3833
|
+
}
|
|
3834
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3835
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3836
|
+
return new ModConstructor(properties);
|
|
3837
|
+
}
|
|
3838
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3839
|
+
if (isAMD) {
|
|
3840
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3841
|
+
}
|
|
3842
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3843
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3844
|
+
}
|
|
3845
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3846
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3847
|
+
return new ModConstructor(properties);
|
|
3848
|
+
}
|
|
3387
3849
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3388
3850
|
if (isAMD) {
|
|
3389
3851
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3395,6 +3857,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3395
3857
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3396
3858
|
return new ModConstructor(properties);
|
|
3397
3859
|
}
|
|
3860
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3861
|
+
if (isAMD) {
|
|
3862
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3863
|
+
}
|
|
3864
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3865
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3866
|
+
}
|
|
3867
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3868
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3869
|
+
return new ModConstructor(properties);
|
|
3870
|
+
}
|
|
3398
3871
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3399
3872
|
if (isAMD) {
|
|
3400
3873
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3516,6 +3989,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3516
3989
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3517
3990
|
return new ModConstructor(properties);
|
|
3518
3991
|
}
|
|
3992
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3993
|
+
if (isAMD) {
|
|
3994
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3995
|
+
}
|
|
3996
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3997
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3998
|
+
}
|
|
3999
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
4000
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
4001
|
+
return new ModConstructor(properties);
|
|
4002
|
+
}
|
|
4003
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
4004
|
+
if (isAMD) {
|
|
4005
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
4006
|
+
}
|
|
4007
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
4008
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4009
|
+
}
|
|
4010
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
4011
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
4012
|
+
return new ModConstructor(properties);
|
|
4013
|
+
}
|
|
4014
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
4015
|
+
if (isAMD) {
|
|
4016
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
4017
|
+
}
|
|
4018
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
4019
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
4020
|
+
}
|
|
4021
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
4022
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
4023
|
+
return new ModConstructor(properties);
|
|
4024
|
+
}
|
|
3519
4025
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3520
4026
|
if (isAMD) {
|
|
3521
4027
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5419,6 +5925,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5419
5925
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5420
5926
|
return new ModConstructor(properties);
|
|
5421
5927
|
}
|
|
5928
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5929
|
+
if (isAMD) {
|
|
5930
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5931
|
+
}
|
|
5932
|
+
const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5933
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5934
|
+
}
|
|
5935
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5936
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5937
|
+
return new ModConstructor(properties);
|
|
5938
|
+
}
|
|
5939
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5940
|
+
if (isAMD) {
|
|
5941
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5942
|
+
}
|
|
5943
|
+
const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5944
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5945
|
+
}
|
|
5946
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5947
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5948
|
+
return new ModConstructor(properties);
|
|
5949
|
+
}
|
|
5422
5950
|
async function importSymbolsSupportStyleOrigin() {
|
|
5423
5951
|
if (isAMD) {
|
|
5424
5952
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5727,6 +6255,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5727
6255
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5728
6256
|
return new ModConstructor(properties);
|
|
5729
6257
|
}
|
|
6258
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6259
|
+
if (isAMD) {
|
|
6260
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6261
|
+
}
|
|
6262
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6263
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6264
|
+
}
|
|
6265
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6266
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6267
|
+
return new ModConstructor(properties);
|
|
6268
|
+
}
|
|
5730
6269
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5731
6270
|
if (isAMD) {
|
|
5732
6271
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5771,6 +6310,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5771
6310
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5772
6311
|
return new ModConstructor(properties);
|
|
5773
6312
|
}
|
|
6313
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6314
|
+
if (isAMD) {
|
|
6315
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6316
|
+
}
|
|
6317
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6318
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6319
|
+
}
|
|
6320
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6321
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6322
|
+
return new ModConstructor(properties);
|
|
6323
|
+
}
|
|
5774
6324
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5775
6325
|
if (isAMD) {
|
|
5776
6326
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5859,6 +6409,17 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5859
6409
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5860
6410
|
return new ModConstructor(properties);
|
|
5861
6411
|
}
|
|
6412
|
+
async function importViewsAnalysisElevationProfileResult() {
|
|
6413
|
+
if (isAMD) {
|
|
6414
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfileResult");
|
|
6415
|
+
}
|
|
6416
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfileResult.js");
|
|
6417
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6418
|
+
}
|
|
6419
|
+
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6420
|
+
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
6421
|
+
return new ModConstructor(properties);
|
|
6422
|
+
}
|
|
5862
6423
|
async function importViewsBasemapView() {
|
|
5863
6424
|
if (isAMD) {
|
|
5864
6425
|
return await window.$arcgis.import("esri/views/BasemapView");
|
|
@@ -6079,39 +6640,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6079
6640
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6080
6641
|
return new ModConstructor(properties);
|
|
6081
6642
|
}
|
|
6082
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6083
|
-
if (isAMD) {
|
|
6084
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6085
|
-
}
|
|
6086
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6087
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6088
|
-
}
|
|
6089
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6090
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6091
|
-
return new ModConstructor(properties);
|
|
6092
|
-
}
|
|
6093
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6094
|
-
if (isAMD) {
|
|
6095
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6096
|
-
}
|
|
6097
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6098
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6099
|
-
}
|
|
6100
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6101
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6102
|
-
return new ModConstructor(properties);
|
|
6103
|
-
}
|
|
6104
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6105
|
-
if (isAMD) {
|
|
6106
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6107
|
-
}
|
|
6108
|
-
const module2 = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6109
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6110
|
-
}
|
|
6111
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6112
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6113
|
-
return new ModConstructor(properties);
|
|
6114
|
-
}
|
|
6115
6643
|
async function importViewsLayersDimensionLayerView() {
|
|
6116
6644
|
if (isAMD) {
|
|
6117
6645
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6123,17 +6651,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6123
6651
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6124
6652
|
return new ModConstructor(properties);
|
|
6125
6653
|
}
|
|
6126
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6127
|
-
if (isAMD) {
|
|
6128
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6129
|
-
}
|
|
6130
|
-
const module2 = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6131
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6132
|
-
}
|
|
6133
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6134
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6135
|
-
return new ModConstructor(properties);
|
|
6136
|
-
}
|
|
6137
6654
|
async function importViewsLayersGroupLayerView() {
|
|
6138
6655
|
if (isAMD) {
|
|
6139
6656
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6200,28 +6717,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6200
6717
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6201
6718
|
return new ModConstructor(properties);
|
|
6202
6719
|
}
|
|
6203
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6204
|
-
if (isAMD) {
|
|
6205
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6206
|
-
}
|
|
6207
|
-
const module2 = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6208
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6209
|
-
}
|
|
6210
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6211
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6212
|
-
return new ModConstructor(properties);
|
|
6213
|
-
}
|
|
6214
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6215
|
-
if (isAMD) {
|
|
6216
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6217
|
-
}
|
|
6218
|
-
const module2 = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6219
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6220
|
-
}
|
|
6221
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6222
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6223
|
-
return new ModConstructor(properties);
|
|
6224
|
-
}
|
|
6225
6720
|
async function importViewsLayersSceneLayerView() {
|
|
6226
6721
|
if (isAMD) {
|
|
6227
6722
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6233,17 +6728,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6233
6728
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6234
6729
|
return new ModConstructor(properties);
|
|
6235
6730
|
}
|
|
6236
|
-
async function importViewsLayersStreamLayerView() {
|
|
6237
|
-
if (isAMD) {
|
|
6238
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6239
|
-
}
|
|
6240
|
-
const module2 = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6241
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6242
|
-
}
|
|
6243
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6244
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6245
|
-
return new ModConstructor(properties);
|
|
6246
|
-
}
|
|
6247
6731
|
async function importViewsLayersViewshedLayerView() {
|
|
6248
6732
|
if (isAMD) {
|
|
6249
6733
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7146,6 +7630,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7146
7630
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7147
7631
|
return new ModConstructor(properties);
|
|
7148
7632
|
}
|
|
7633
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7634
|
+
if (isAMD) {
|
|
7635
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7636
|
+
}
|
|
7637
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7638
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7639
|
+
}
|
|
7640
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7641
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7642
|
+
return new ModConstructor(properties);
|
|
7643
|
+
}
|
|
7644
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7645
|
+
if (isAMD) {
|
|
7646
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7647
|
+
}
|
|
7648
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7649
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7650
|
+
}
|
|
7651
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7652
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7653
|
+
return new ModConstructor(properties);
|
|
7654
|
+
}
|
|
7655
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7656
|
+
if (isAMD) {
|
|
7657
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7658
|
+
}
|
|
7659
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7660
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7661
|
+
}
|
|
7662
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7663
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7664
|
+
return new ModConstructor(properties);
|
|
7665
|
+
}
|
|
7666
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7667
|
+
if (isAMD) {
|
|
7668
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7669
|
+
}
|
|
7670
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7671
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7672
|
+
}
|
|
7673
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7674
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7675
|
+
return new ModConstructor(properties);
|
|
7676
|
+
}
|
|
7149
7677
|
async function importWidgetsBookmarks() {
|
|
7150
7678
|
if (isAMD) {
|
|
7151
7679
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -9753,6 +10281,13 @@ async function importGeometrySupportWebMercatorUtils() {
|
|
|
9753
10281
|
const module2 = await import("@arcgis/core/geometry/support/webMercatorUtils.js");
|
|
9754
10282
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9755
10283
|
}
|
|
10284
|
+
async function importGraphicGraphicOrigins() {
|
|
10285
|
+
if (isAMD) {
|
|
10286
|
+
return await window.$arcgis.import("esri/graphic/graphicOrigins");
|
|
10287
|
+
}
|
|
10288
|
+
const module2 = await import("@arcgis/core/graphic/graphicOrigins.js");
|
|
10289
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10290
|
+
}
|
|
9756
10291
|
async function importIntl() {
|
|
9757
10292
|
if (isAMD) {
|
|
9758
10293
|
return await window.$arcgis.import("esri/intl");
|
|
@@ -10530,13 +11065,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10530
11065
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10531
11066
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10532
11067
|
}
|
|
10533
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10534
|
-
if (isAMD) {
|
|
10535
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10536
|
-
}
|
|
10537
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10538
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10539
|
-
}
|
|
10540
11068
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10541
11069
|
if (isAMD) {
|
|
10542
11070
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10558,6 +11086,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10558
11086
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10559
11087
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10560
11088
|
}
|
|
11089
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
11090
|
+
if (isAMD) {
|
|
11091
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
11092
|
+
}
|
|
11093
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
11094
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11095
|
+
}
|
|
10561
11096
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10562
11097
|
if (isAMD) {
|
|
10563
11098
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10572,6 +11107,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10572
11107
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10573
11108
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10574
11109
|
}
|
|
11110
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
11111
|
+
if (isAMD) {
|
|
11112
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
11113
|
+
}
|
|
11114
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
11115
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11116
|
+
}
|
|
10575
11117
|
async function importApplicationsComponentsFontUtils() {
|
|
10576
11118
|
if (isAMD) {
|
|
10577
11119
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10593,6 +11135,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10593
11135
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10594
11136
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10595
11137
|
}
|
|
11138
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
11139
|
+
if (isAMD) {
|
|
11140
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
11141
|
+
}
|
|
11142
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
11143
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11144
|
+
}
|
|
10596
11145
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10597
11146
|
if (isAMD) {
|
|
10598
11147
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10621,6 +11170,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10621
11170
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10622
11171
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10623
11172
|
}
|
|
11173
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11174
|
+
if (isAMD) {
|
|
11175
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11176
|
+
}
|
|
11177
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11178
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11179
|
+
}
|
|
10624
11180
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10625
11181
|
if (isAMD) {
|
|
10626
11182
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10635,6 +11191,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10635
11191
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10636
11192
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10637
11193
|
}
|
|
11194
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11195
|
+
if (isAMD) {
|
|
11196
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11197
|
+
}
|
|
11198
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11199
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11200
|
+
}
|
|
10638
11201
|
async function importApplicationsComponentsStyleUtils() {
|
|
10639
11202
|
if (isAMD) {
|
|
10640
11203
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10696,6 +11259,15 @@ exports.importAnalysisAreaMeasurementAnalysis = importAnalysisAreaMeasurementAna
|
|
|
10696
11259
|
exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
10697
11260
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
10698
11261
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11262
|
+
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11263
|
+
exports.importAnalysisElevationProfileLine = importAnalysisElevationProfileLine;
|
|
11264
|
+
exports.importAnalysisElevationProfileLineChartOptions = importAnalysisElevationProfileLineChartOptions;
|
|
11265
|
+
exports.importAnalysisElevationProfileLineGround = importAnalysisElevationProfileLineGround;
|
|
11266
|
+
exports.importAnalysisElevationProfileLineInput = importAnalysisElevationProfileLineInput;
|
|
11267
|
+
exports.importAnalysisElevationProfileLineQuery = importAnalysisElevationProfileLineQuery;
|
|
11268
|
+
exports.importAnalysisElevationProfileLineScene = importAnalysisElevationProfileLineScene;
|
|
11269
|
+
exports.importAnalysisElevationProfileLineViewOptions = importAnalysisElevationProfileLineViewOptions;
|
|
11270
|
+
exports.importAnalysisElevationProfileUnits = importAnalysisElevationProfileUnits;
|
|
10699
11271
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
10700
11272
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
10701
11273
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
@@ -10705,18 +11277,25 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10705
11277
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10706
11278
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10707
11279
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
11280
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
11281
|
+
exports.importAnalysisVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementCutFillOptions;
|
|
10708
11282
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
11283
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10709
11284
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10710
11285
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
11286
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10711
11287
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
10712
11288
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10713
11289
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
11290
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10714
11291
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10715
11292
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10716
11293
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10717
11294
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
11295
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10718
11296
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10719
11297
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
11298
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10720
11299
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10721
11300
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10722
11301
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10748,6 +11327,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10748
11327
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10749
11328
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10750
11329
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
11330
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
11331
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
11332
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10751
11333
|
exports.importFormElements = importFormElements;
|
|
10752
11334
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10753
11335
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10861,6 +11443,30 @@ exports.importGeometrySupportMeshUtils = importGeometrySupportMeshUtils;
|
|
|
10861
11443
|
exports.importGeometrySupportNormalizeUtils = importGeometrySupportNormalizeUtils;
|
|
10862
11444
|
exports.importGeometrySupportWebMercatorUtils = importGeometrySupportWebMercatorUtils;
|
|
10863
11445
|
exports.importGraphic = importGraphic;
|
|
11446
|
+
exports.importGraphicBuildingGraphicOrigin = importGraphicBuildingGraphicOrigin;
|
|
11447
|
+
exports.importGraphicCSVGraphicOrigin = importGraphicCSVGraphicOrigin;
|
|
11448
|
+
exports.importGraphicCatalogGraphicOrigin = importGraphicCatalogGraphicOrigin;
|
|
11449
|
+
exports.importGraphicFeatureGraphicOrigin = importGraphicFeatureGraphicOrigin;
|
|
11450
|
+
exports.importGraphicGeoJSONGraphicOrigin = importGraphicGeoJSONGraphicOrigin;
|
|
11451
|
+
exports.importGraphicGeoRSSGraphicOrigin = importGraphicGeoRSSGraphicOrigin;
|
|
11452
|
+
exports.importGraphicGraphicOrigin = importGraphicGraphicOrigin;
|
|
11453
|
+
exports.importGraphicGraphicOrigins = importGraphicGraphicOrigins;
|
|
11454
|
+
exports.importGraphicIntegratedMesh3DTilesGraphicOrigin = importGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
11455
|
+
exports.importGraphicIntegratedMeshGraphicOrigin = importGraphicIntegratedMeshGraphicOrigin;
|
|
11456
|
+
exports.importGraphicKnowledgeGraphGraphicOrigin = importGraphicKnowledgeGraphGraphicOrigin;
|
|
11457
|
+
exports.importGraphicMapImageGraphicOrigin = importGraphicMapImageGraphicOrigin;
|
|
11458
|
+
exports.importGraphicMapNotesGraphicOrigin = importGraphicMapNotesGraphicOrigin;
|
|
11459
|
+
exports.importGraphicOGCFeatureGraphicOrigin = importGraphicOGCFeatureGraphicOrigin;
|
|
11460
|
+
exports.importGraphicOrientedImageryGraphicOrigin = importGraphicOrientedImageryGraphicOrigin;
|
|
11461
|
+
exports.importGraphicParquetGraphicOrigin = importGraphicParquetGraphicOrigin;
|
|
11462
|
+
exports.importGraphicPointCloudGraphicOrigin = importGraphicPointCloudGraphicOrigin;
|
|
11463
|
+
exports.importGraphicSceneGraphicOrigin = importGraphicSceneGraphicOrigin;
|
|
11464
|
+
exports.importGraphicStreamGraphicOrigin = importGraphicStreamGraphicOrigin;
|
|
11465
|
+
exports.importGraphicSubtypeGroupGraphicOrigin = importGraphicSubtypeGroupGraphicOrigin;
|
|
11466
|
+
exports.importGraphicTileGraphicOrigin = importGraphicTileGraphicOrigin;
|
|
11467
|
+
exports.importGraphicVectorTileGraphicOrigin = importGraphicVectorTileGraphicOrigin;
|
|
11468
|
+
exports.importGraphicVoxelGraphicOrigin = importGraphicVoxelGraphicOrigin;
|
|
11469
|
+
exports.importGraphicWFSGraphicOrigin = importGraphicWFSGraphicOrigin;
|
|
10864
11470
|
exports.importGround = importGround;
|
|
10865
11471
|
exports.importIdentityCredential = importIdentityCredential;
|
|
10866
11472
|
exports.importIdentityIdentityManager = importIdentityIdentityManager;
|
|
@@ -10961,6 +11567,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10961
11567
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10962
11568
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10963
11569
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11570
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10964
11571
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10965
11572
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10966
11573
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11121,10 +11728,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11121
11728
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11122
11729
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11123
11730
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11731
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11124
11732
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11733
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11125
11734
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11126
11735
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11736
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11737
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11127
11738
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11739
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11128
11740
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11129
11741
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11130
11742
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11136,6 +11748,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11136
11748
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11137
11749
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11138
11750
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11751
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11752
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11753
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11139
11754
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11140
11755
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11141
11756
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11377,6 +11992,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
|
|
|
11377
11992
|
exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
|
|
11378
11993
|
exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
|
|
11379
11994
|
exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
|
|
11995
|
+
exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
|
|
11996
|
+
exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
|
|
11380
11997
|
exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
|
|
11381
11998
|
exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
|
|
11382
11999
|
exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
|
|
@@ -11410,10 +12027,12 @@ exports.importViews2dViewState = importViews2dViewState;
|
|
|
11410
12027
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11411
12028
|
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11412
12029
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12030
|
+
exports.importViews3dAnalysisElevationProfileAnalysisView3D = importViews3dAnalysisElevationProfileAnalysisView3D;
|
|
11413
12031
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11414
12032
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11415
12033
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11416
12034
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
12035
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11417
12036
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11418
12037
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11419
12038
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11427,6 +12046,7 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11427
12046
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11428
12047
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11429
12048
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
12049
|
+
exports.importViewsAnalysisElevationProfileResult = importViewsAnalysisElevationProfileResult;
|
|
11430
12050
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11431
12051
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11432
12052
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11448,21 +12068,14 @@ exports.importViewsInteractiveSnappingSnappingOptions = importViewsInteractiveSn
|
|
|
11448
12068
|
exports.importViewsInteractiveTooltip = importViewsInteractiveTooltip;
|
|
11449
12069
|
exports.importViewsLayersBuildingComponentSublayerView = importViewsLayersBuildingComponentSublayerView;
|
|
11450
12070
|
exports.importViewsLayersBuildingSceneLayerView = importViewsLayersBuildingSceneLayerView;
|
|
11451
|
-
exports.importViewsLayersCatalogDynamicGroupLayerView = importViewsLayersCatalogDynamicGroupLayerView;
|
|
11452
|
-
exports.importViewsLayersCatalogFootprintLayerView = importViewsLayersCatalogFootprintLayerView;
|
|
11453
|
-
exports.importViewsLayersCatalogLayerView = importViewsLayersCatalogLayerView;
|
|
11454
12071
|
exports.importViewsLayersDimensionLayerView = importViewsLayersDimensionLayerView;
|
|
11455
|
-
exports.importViewsLayersFeatureLayerView = importViewsLayersFeatureLayerView;
|
|
11456
12072
|
exports.importViewsLayersGroupLayerView = importViewsLayersGroupLayerView;
|
|
11457
12073
|
exports.importViewsLayersImageryLayerView = importViewsLayersImageryLayerView;
|
|
11458
12074
|
exports.importViewsLayersImageryTileLayerView = importViewsLayersImageryTileLayerView;
|
|
11459
12075
|
exports.importViewsLayersLayerView = importViewsLayersLayerView;
|
|
11460
12076
|
exports.importViewsLayersLineOfSightLayerView = importViewsLayersLineOfSightLayerView;
|
|
11461
12077
|
exports.importViewsLayersMediaLayerView = importViewsLayersMediaLayerView;
|
|
11462
|
-
exports.importViewsLayersOGCFeatureLayerView = importViewsLayersOGCFeatureLayerView;
|
|
11463
|
-
exports.importViewsLayersPointCloudLayerView = importViewsLayersPointCloudLayerView;
|
|
11464
12078
|
exports.importViewsLayersSceneLayerView = importViewsLayersSceneLayerView;
|
|
11465
|
-
exports.importViewsLayersStreamLayerView = importViewsLayersStreamLayerView;
|
|
11466
12079
|
exports.importViewsLayersViewshedLayerView = importViewsLayersViewshedLayerView;
|
|
11467
12080
|
exports.importViewsLinkChartView = importViewsLinkChartView;
|
|
11468
12081
|
exports.importViewsMagnifier = importViewsMagnifier;
|
|
@@ -11547,6 +12160,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11547
12160
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11548
12161
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11549
12162
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12163
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12164
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
12165
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11550
12166
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11551
12167
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11552
12168
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11743,6 +12359,15 @@ exports.newAnalysisAreaMeasurementAnalysis = newAnalysisAreaMeasurementAnalysis;
|
|
|
11743
12359
|
exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
11744
12360
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
11745
12361
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12362
|
+
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12363
|
+
exports.newAnalysisElevationProfileLine = newAnalysisElevationProfileLine;
|
|
12364
|
+
exports.newAnalysisElevationProfileLineChartOptions = newAnalysisElevationProfileLineChartOptions;
|
|
12365
|
+
exports.newAnalysisElevationProfileLineGround = newAnalysisElevationProfileLineGround;
|
|
12366
|
+
exports.newAnalysisElevationProfileLineInput = newAnalysisElevationProfileLineInput;
|
|
12367
|
+
exports.newAnalysisElevationProfileLineQuery = newAnalysisElevationProfileLineQuery;
|
|
12368
|
+
exports.newAnalysisElevationProfileLineScene = newAnalysisElevationProfileLineScene;
|
|
12369
|
+
exports.newAnalysisElevationProfileLineViewOptions = newAnalysisElevationProfileLineViewOptions;
|
|
12370
|
+
exports.newAnalysisElevationProfileUnits = newAnalysisElevationProfileUnits;
|
|
11746
12371
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
11747
12372
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
11748
12373
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|
|
@@ -11752,6 +12377,8 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11752
12377
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11753
12378
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11754
12379
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12380
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12381
|
+
exports.newAnalysisVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementCutFillOptions;
|
|
11755
12382
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11756
12383
|
exports.newBasemap = newBasemap;
|
|
11757
12384
|
exports.newCamera = newCamera;
|
|
@@ -11762,6 +12389,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11762
12389
|
exports.newCoreError = newCoreError;
|
|
11763
12390
|
exports.newCoreHandles = newCoreHandles;
|
|
11764
12391
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12392
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12393
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12394
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11765
12395
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11766
12396
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11767
12397
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11811,6 +12441,29 @@ exports.newGeometrySupportMeshTexture = newGeometrySupportMeshTexture;
|
|
|
11811
12441
|
exports.newGeometrySupportMeshTextureTransform = newGeometrySupportMeshTextureTransform;
|
|
11812
12442
|
exports.newGeometrySupportMeshTransform = newGeometrySupportMeshTransform;
|
|
11813
12443
|
exports.newGraphic = newGraphic;
|
|
12444
|
+
exports.newGraphicBuildingGraphicOrigin = newGraphicBuildingGraphicOrigin;
|
|
12445
|
+
exports.newGraphicCSVGraphicOrigin = newGraphicCSVGraphicOrigin;
|
|
12446
|
+
exports.newGraphicCatalogGraphicOrigin = newGraphicCatalogGraphicOrigin;
|
|
12447
|
+
exports.newGraphicFeatureGraphicOrigin = newGraphicFeatureGraphicOrigin;
|
|
12448
|
+
exports.newGraphicGeoJSONGraphicOrigin = newGraphicGeoJSONGraphicOrigin;
|
|
12449
|
+
exports.newGraphicGeoRSSGraphicOrigin = newGraphicGeoRSSGraphicOrigin;
|
|
12450
|
+
exports.newGraphicGraphicOrigin = newGraphicGraphicOrigin;
|
|
12451
|
+
exports.newGraphicIntegratedMesh3DTilesGraphicOrigin = newGraphicIntegratedMesh3DTilesGraphicOrigin;
|
|
12452
|
+
exports.newGraphicIntegratedMeshGraphicOrigin = newGraphicIntegratedMeshGraphicOrigin;
|
|
12453
|
+
exports.newGraphicKnowledgeGraphGraphicOrigin = newGraphicKnowledgeGraphGraphicOrigin;
|
|
12454
|
+
exports.newGraphicMapImageGraphicOrigin = newGraphicMapImageGraphicOrigin;
|
|
12455
|
+
exports.newGraphicMapNotesGraphicOrigin = newGraphicMapNotesGraphicOrigin;
|
|
12456
|
+
exports.newGraphicOGCFeatureGraphicOrigin = newGraphicOGCFeatureGraphicOrigin;
|
|
12457
|
+
exports.newGraphicOrientedImageryGraphicOrigin = newGraphicOrientedImageryGraphicOrigin;
|
|
12458
|
+
exports.newGraphicParquetGraphicOrigin = newGraphicParquetGraphicOrigin;
|
|
12459
|
+
exports.newGraphicPointCloudGraphicOrigin = newGraphicPointCloudGraphicOrigin;
|
|
12460
|
+
exports.newGraphicSceneGraphicOrigin = newGraphicSceneGraphicOrigin;
|
|
12461
|
+
exports.newGraphicStreamGraphicOrigin = newGraphicStreamGraphicOrigin;
|
|
12462
|
+
exports.newGraphicSubtypeGroupGraphicOrigin = newGraphicSubtypeGroupGraphicOrigin;
|
|
12463
|
+
exports.newGraphicTileGraphicOrigin = newGraphicTileGraphicOrigin;
|
|
12464
|
+
exports.newGraphicVectorTileGraphicOrigin = newGraphicVectorTileGraphicOrigin;
|
|
12465
|
+
exports.newGraphicVoxelGraphicOrigin = newGraphicVoxelGraphicOrigin;
|
|
12466
|
+
exports.newGraphicWFSGraphicOrigin = newGraphicWFSGraphicOrigin;
|
|
11814
12467
|
exports.newGround = newGround;
|
|
11815
12468
|
exports.newIdentityCredential = newIdentityCredential;
|
|
11816
12469
|
exports.newIdentityOAuthInfo = newIdentityOAuthInfo;
|
|
@@ -11899,6 +12552,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11899
12552
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11900
12553
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11901
12554
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12555
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11902
12556
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11903
12557
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11904
12558
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12039,10 +12693,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12039
12693
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12040
12694
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12041
12695
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12696
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12042
12697
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12698
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12043
12699
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12044
12700
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12701
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12702
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12045
12703
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12704
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12046
12705
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12047
12706
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12048
12707
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12054,6 +12713,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12054
12713
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12055
12714
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12056
12715
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12716
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12717
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12718
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12057
12719
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12058
12720
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12059
12721
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12227,6 +12889,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
|
|
|
12227
12889
|
exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
|
|
12228
12890
|
exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
|
|
12229
12891
|
exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
|
|
12892
|
+
exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
|
|
12893
|
+
exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
|
|
12230
12894
|
exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
|
|
12231
12895
|
exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
|
|
12232
12896
|
exports.newSymbolsSymbol = newSymbolsSymbol;
|
|
@@ -12255,10 +12919,12 @@ exports.newViews2dViewState = newViews2dViewState;
|
|
|
12255
12919
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12256
12920
|
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12257
12921
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12922
|
+
exports.newViews3dAnalysisElevationProfileAnalysisView3D = newViews3dAnalysisElevationProfileAnalysisView3D;
|
|
12258
12923
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12259
12924
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12260
12925
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12261
12926
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12927
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12262
12928
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12263
12929
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12264
12930
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12267,6 +12933,7 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12267
12933
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12268
12934
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12269
12935
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12936
|
+
exports.newViewsAnalysisElevationProfileResult = newViewsAnalysisElevationProfileResult;
|
|
12270
12937
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12271
12938
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12272
12939
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12287,21 +12954,14 @@ exports.newViewsInteractiveSnappingSnappingOptions = newViewsInteractiveSnapping
|
|
|
12287
12954
|
exports.newViewsInteractiveTooltip = newViewsInteractiveTooltip;
|
|
12288
12955
|
exports.newViewsLayersBuildingComponentSublayerView = newViewsLayersBuildingComponentSublayerView;
|
|
12289
12956
|
exports.newViewsLayersBuildingSceneLayerView = newViewsLayersBuildingSceneLayerView;
|
|
12290
|
-
exports.newViewsLayersCatalogDynamicGroupLayerView = newViewsLayersCatalogDynamicGroupLayerView;
|
|
12291
|
-
exports.newViewsLayersCatalogFootprintLayerView = newViewsLayersCatalogFootprintLayerView;
|
|
12292
|
-
exports.newViewsLayersCatalogLayerView = newViewsLayersCatalogLayerView;
|
|
12293
12957
|
exports.newViewsLayersDimensionLayerView = newViewsLayersDimensionLayerView;
|
|
12294
|
-
exports.newViewsLayersFeatureLayerView = newViewsLayersFeatureLayerView;
|
|
12295
12958
|
exports.newViewsLayersGroupLayerView = newViewsLayersGroupLayerView;
|
|
12296
12959
|
exports.newViewsLayersImageryLayerView = newViewsLayersImageryLayerView;
|
|
12297
12960
|
exports.newViewsLayersImageryTileLayerView = newViewsLayersImageryTileLayerView;
|
|
12298
12961
|
exports.newViewsLayersLayerView = newViewsLayersLayerView;
|
|
12299
12962
|
exports.newViewsLayersLineOfSightLayerView = newViewsLayersLineOfSightLayerView;
|
|
12300
12963
|
exports.newViewsLayersMediaLayerView = newViewsLayersMediaLayerView;
|
|
12301
|
-
exports.newViewsLayersOGCFeatureLayerView = newViewsLayersOGCFeatureLayerView;
|
|
12302
|
-
exports.newViewsLayersPointCloudLayerView = newViewsLayersPointCloudLayerView;
|
|
12303
12964
|
exports.newViewsLayersSceneLayerView = newViewsLayersSceneLayerView;
|
|
12304
|
-
exports.newViewsLayersStreamLayerView = newViewsLayersStreamLayerView;
|
|
12305
12965
|
exports.newViewsLayersViewshedLayerView = newViewsLayersViewshedLayerView;
|
|
12306
12966
|
exports.newViewsLinkChartView = newViewsLinkChartView;
|
|
12307
12967
|
exports.newViewsMagnifier = newViewsMagnifier;
|
|
@@ -12384,6 +13044,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12384
13044
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12385
13045
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12386
13046
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
13047
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
13048
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
13049
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
13050
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12387
13051
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12388
13052
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12389
13053
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|