@arcgis/core-adapter 4.34.0-next.76 → 4.34.0-next.78
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 +154 -154
- package/dist/index.d.cts +41 -41
- package/dist/index.d.ts +41 -41
- package/dist/index.js +154 -154
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -150,224 +150,224 @@ async function newAnalysisElevationProfileAnalysis(properties) {
|
|
|
150
150
|
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
151
151
|
return new ModConstructor(properties);
|
|
152
152
|
}
|
|
153
|
-
async function
|
|
153
|
+
async function importAnalysisLengthDimension() {
|
|
154
154
|
if (isAMD) {
|
|
155
|
-
return await window.$arcgis.import("esri/analysis/
|
|
155
|
+
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
156
156
|
}
|
|
157
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
157
|
+
const module2 = await import("@arcgis/core/analysis/LengthDimension.js");
|
|
158
158
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
159
159
|
}
|
|
160
|
-
async function
|
|
161
|
-
const ModConstructor = await
|
|
160
|
+
async function newAnalysisLengthDimension(properties) {
|
|
161
|
+
const ModConstructor = await importAnalysisLengthDimension();
|
|
162
162
|
return new ModConstructor(properties);
|
|
163
163
|
}
|
|
164
|
-
async function
|
|
164
|
+
async function importAnalysisLineOfSightAnalysis() {
|
|
165
165
|
if (isAMD) {
|
|
166
|
-
return await window.$arcgis.import("esri/analysis/
|
|
166
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysis");
|
|
167
167
|
}
|
|
168
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
168
|
+
const module2 = await import("@arcgis/core/analysis/LineOfSightAnalysis.js");
|
|
169
169
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
170
170
|
}
|
|
171
|
-
async function
|
|
172
|
-
const ModConstructor = await
|
|
171
|
+
async function newAnalysisLineOfSightAnalysis(properties) {
|
|
172
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysis();
|
|
173
173
|
return new ModConstructor(properties);
|
|
174
174
|
}
|
|
175
|
-
async function
|
|
175
|
+
async function importAnalysisLineOfSightAnalysisObserver() {
|
|
176
176
|
if (isAMD) {
|
|
177
|
-
return await window.$arcgis.import("esri/analysis/
|
|
177
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysisObserver");
|
|
178
178
|
}
|
|
179
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
179
|
+
const module2 = await import("@arcgis/core/analysis/LineOfSightAnalysisObserver.js");
|
|
180
180
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
181
181
|
}
|
|
182
|
-
async function
|
|
183
|
-
const ModConstructor = await
|
|
182
|
+
async function newAnalysisLineOfSightAnalysisObserver(properties) {
|
|
183
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysisObserver();
|
|
184
184
|
return new ModConstructor(properties);
|
|
185
185
|
}
|
|
186
|
-
async function
|
|
186
|
+
async function importAnalysisLineOfSightAnalysisTarget() {
|
|
187
187
|
if (isAMD) {
|
|
188
|
-
return await window.$arcgis.import("esri/analysis/
|
|
188
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysisTarget");
|
|
189
189
|
}
|
|
190
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
190
|
+
const module2 = await import("@arcgis/core/analysis/LineOfSightAnalysisTarget.js");
|
|
191
191
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
192
192
|
}
|
|
193
|
-
async function
|
|
194
|
-
const ModConstructor = await
|
|
193
|
+
async function newAnalysisLineOfSightAnalysisTarget(properties) {
|
|
194
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysisTarget();
|
|
195
195
|
return new ModConstructor(properties);
|
|
196
196
|
}
|
|
197
|
-
async function
|
|
197
|
+
async function importAnalysisSliceAnalysis() {
|
|
198
198
|
if (isAMD) {
|
|
199
|
-
return await window.$arcgis.import("esri/analysis/
|
|
199
|
+
return await window.$arcgis.import("esri/analysis/SliceAnalysis");
|
|
200
200
|
}
|
|
201
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
201
|
+
const module2 = await import("@arcgis/core/analysis/SliceAnalysis.js");
|
|
202
202
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
203
203
|
}
|
|
204
|
-
async function
|
|
205
|
-
const ModConstructor = await
|
|
204
|
+
async function newAnalysisSliceAnalysis(properties) {
|
|
205
|
+
const ModConstructor = await importAnalysisSliceAnalysis();
|
|
206
206
|
return new ModConstructor(properties);
|
|
207
207
|
}
|
|
208
|
-
async function
|
|
208
|
+
async function importAnalysisSlicePlane() {
|
|
209
209
|
if (isAMD) {
|
|
210
|
-
return await window.$arcgis.import("esri/analysis/
|
|
210
|
+
return await window.$arcgis.import("esri/analysis/SlicePlane");
|
|
211
211
|
}
|
|
212
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
212
|
+
const module2 = await import("@arcgis/core/analysis/SlicePlane.js");
|
|
213
213
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
214
214
|
}
|
|
215
|
-
async function
|
|
216
|
-
const ModConstructor = await
|
|
215
|
+
async function newAnalysisSlicePlane(properties) {
|
|
216
|
+
const ModConstructor = await importAnalysisSlicePlane();
|
|
217
217
|
return new ModConstructor(properties);
|
|
218
218
|
}
|
|
219
|
-
async function
|
|
219
|
+
async function importAnalysisViewshed() {
|
|
220
220
|
if (isAMD) {
|
|
221
|
-
return await window.$arcgis.import("esri/analysis/
|
|
221
|
+
return await window.$arcgis.import("esri/analysis/Viewshed");
|
|
222
222
|
}
|
|
223
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
223
|
+
const module2 = await import("@arcgis/core/analysis/Viewshed.js");
|
|
224
224
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
225
225
|
}
|
|
226
|
-
async function
|
|
227
|
-
const ModConstructor = await
|
|
226
|
+
async function newAnalysisViewshed(properties) {
|
|
227
|
+
const ModConstructor = await importAnalysisViewshed();
|
|
228
228
|
return new ModConstructor(properties);
|
|
229
229
|
}
|
|
230
|
-
async function
|
|
230
|
+
async function importAnalysisViewshedAnalysis() {
|
|
231
231
|
if (isAMD) {
|
|
232
|
-
return await window.$arcgis.import("esri/analysis/
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/ViewshedAnalysis");
|
|
233
233
|
}
|
|
234
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/ViewshedAnalysis.js");
|
|
235
235
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
236
|
}
|
|
237
|
-
async function
|
|
238
|
-
const ModConstructor = await
|
|
237
|
+
async function newAnalysisViewshedAnalysis(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
239
239
|
return new ModConstructor(properties);
|
|
240
240
|
}
|
|
241
|
-
async function
|
|
241
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
242
242
|
if (isAMD) {
|
|
243
|
-
return await window.$arcgis.import("esri/analysis/
|
|
243
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
244
244
|
}
|
|
245
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
245
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
246
246
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
247
247
|
}
|
|
248
|
-
async function
|
|
249
|
-
const ModConstructor = await
|
|
248
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
249
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
250
250
|
return new ModConstructor(properties);
|
|
251
251
|
}
|
|
252
|
-
async function
|
|
252
|
+
async function importAnalysisElevationProfileGroundLine() {
|
|
253
253
|
if (isAMD) {
|
|
254
|
-
return await window.$arcgis.import("esri/analysis/
|
|
254
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/GroundLine");
|
|
255
255
|
}
|
|
256
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
256
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/GroundLine.js");
|
|
257
257
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
258
258
|
}
|
|
259
|
-
async function
|
|
260
|
-
const ModConstructor = await
|
|
259
|
+
async function newAnalysisElevationProfileGroundLine(properties) {
|
|
260
|
+
const ModConstructor = await importAnalysisElevationProfileGroundLine();
|
|
261
261
|
return new ModConstructor(properties);
|
|
262
262
|
}
|
|
263
|
-
async function
|
|
263
|
+
async function importAnalysisElevationProfileInputLine() {
|
|
264
264
|
if (isAMD) {
|
|
265
|
-
return await window.$arcgis.import("esri/analysis/
|
|
265
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/InputLine");
|
|
266
266
|
}
|
|
267
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
267
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/InputLine.js");
|
|
268
268
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
269
269
|
}
|
|
270
|
-
async function
|
|
271
|
-
const ModConstructor = await
|
|
270
|
+
async function newAnalysisElevationProfileInputLine(properties) {
|
|
271
|
+
const ModConstructor = await importAnalysisElevationProfileInputLine();
|
|
272
272
|
return new ModConstructor(properties);
|
|
273
273
|
}
|
|
274
|
-
async function
|
|
274
|
+
async function importAnalysisElevationProfileLine() {
|
|
275
275
|
if (isAMD) {
|
|
276
|
-
return await window.$arcgis.import("esri/analysis/
|
|
276
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Line");
|
|
277
277
|
}
|
|
278
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
278
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/Line.js");
|
|
279
279
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
280
280
|
}
|
|
281
|
-
async function
|
|
282
|
-
const ModConstructor = await
|
|
281
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
282
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
283
283
|
return new ModConstructor(properties);
|
|
284
284
|
}
|
|
285
|
-
async function
|
|
285
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
286
286
|
if (isAMD) {
|
|
287
|
-
return await window.$arcgis.import("esri/analysis/
|
|
287
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineChartOptions");
|
|
288
288
|
}
|
|
289
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
289
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/LineChartOptions.js");
|
|
290
290
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
291
291
|
}
|
|
292
|
-
async function
|
|
293
|
-
const ModConstructor = await
|
|
292
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
293
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
294
294
|
return new ModConstructor(properties);
|
|
295
295
|
}
|
|
296
|
-
async function
|
|
296
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
297
297
|
if (isAMD) {
|
|
298
|
-
return await window.$arcgis.import("esri/analysis/
|
|
298
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineViewOptions");
|
|
299
299
|
}
|
|
300
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
300
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/LineViewOptions.js");
|
|
301
301
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
302
302
|
}
|
|
303
|
-
async function
|
|
304
|
-
const ModConstructor = await
|
|
303
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
304
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
305
305
|
return new ModConstructor(properties);
|
|
306
306
|
}
|
|
307
|
-
async function
|
|
307
|
+
async function importAnalysisElevationProfileQueryLine() {
|
|
308
308
|
if (isAMD) {
|
|
309
|
-
return await window.$arcgis.import("esri/analysis/
|
|
309
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/QueryLine");
|
|
310
310
|
}
|
|
311
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
311
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/QueryLine.js");
|
|
312
312
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
313
|
}
|
|
314
|
-
async function
|
|
315
|
-
const ModConstructor = await
|
|
314
|
+
async function newAnalysisElevationProfileQueryLine(properties) {
|
|
315
|
+
const ModConstructor = await importAnalysisElevationProfileQueryLine();
|
|
316
316
|
return new ModConstructor(properties);
|
|
317
317
|
}
|
|
318
|
-
async function
|
|
318
|
+
async function importAnalysisElevationProfileSceneLine() {
|
|
319
319
|
if (isAMD) {
|
|
320
|
-
return await window.$arcgis.import("esri/analysis/
|
|
320
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/SceneLine");
|
|
321
321
|
}
|
|
322
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
322
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/SceneLine.js");
|
|
323
323
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
324
|
}
|
|
325
|
-
async function
|
|
326
|
-
const ModConstructor = await
|
|
325
|
+
async function newAnalysisElevationProfileSceneLine(properties) {
|
|
326
|
+
const ModConstructor = await importAnalysisElevationProfileSceneLine();
|
|
327
327
|
return new ModConstructor(properties);
|
|
328
328
|
}
|
|
329
|
-
async function
|
|
329
|
+
async function importAnalysisElevationProfileUnits() {
|
|
330
330
|
if (isAMD) {
|
|
331
|
-
return await window.$arcgis.import("esri/analysis/
|
|
331
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Units");
|
|
332
332
|
}
|
|
333
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
333
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/Units.js");
|
|
334
334
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
335
|
}
|
|
336
|
-
async function
|
|
337
|
-
const ModConstructor = await
|
|
336
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
337
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
338
338
|
return new ModConstructor(properties);
|
|
339
339
|
}
|
|
340
|
-
async function
|
|
340
|
+
async function importAnalysisElevationProfileViewOptions() {
|
|
341
341
|
if (isAMD) {
|
|
342
|
-
return await window.$arcgis.import("esri/analysis/
|
|
342
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ViewOptions");
|
|
343
343
|
}
|
|
344
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
344
|
+
const module2 = await import("@arcgis/core/analysis/ElevationProfile/ViewOptions.js");
|
|
345
345
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
346
346
|
}
|
|
347
|
-
async function
|
|
348
|
-
const ModConstructor = await
|
|
347
|
+
async function newAnalysisElevationProfileViewOptions(properties) {
|
|
348
|
+
const ModConstructor = await importAnalysisElevationProfileViewOptions();
|
|
349
349
|
return new ModConstructor(properties);
|
|
350
350
|
}
|
|
351
|
-
async function
|
|
351
|
+
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
352
352
|
if (isAMD) {
|
|
353
|
-
return await window.$arcgis.import("esri/analysis/
|
|
353
|
+
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
354
354
|
}
|
|
355
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
355
|
+
const module2 = await import("@arcgis/core/analysis/support/AnalysisOriginWebScene.js");
|
|
356
356
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
357
357
|
}
|
|
358
|
-
async function
|
|
359
|
-
const ModConstructor = await
|
|
358
|
+
async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
359
|
+
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
360
360
|
return new ModConstructor(properties);
|
|
361
361
|
}
|
|
362
|
-
async function
|
|
362
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
363
363
|
if (isAMD) {
|
|
364
|
-
return await window.$arcgis.import("esri/analysis/
|
|
364
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
365
365
|
}
|
|
366
|
-
const module2 = await import("@arcgis/core/analysis/
|
|
366
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
367
367
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
368
368
|
}
|
|
369
|
-
async function
|
|
370
|
-
const ModConstructor = await
|
|
369
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
370
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
371
371
|
return new ModConstructor(properties);
|
|
372
372
|
}
|
|
373
373
|
async function importCoreAccessor() {
|
|
@@ -6200,26 +6200,26 @@ async function newViewpoint(properties) {
|
|
|
6200
6200
|
const ModConstructor = await importViewpoint();
|
|
6201
6201
|
return new ModConstructor(properties);
|
|
6202
6202
|
}
|
|
6203
|
-
async function
|
|
6203
|
+
async function importViewsBasemapView() {
|
|
6204
6204
|
if (isAMD) {
|
|
6205
|
-
return await window.$arcgis.import("esri/views/
|
|
6205
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6206
6206
|
}
|
|
6207
|
-
const module2 = await import("@arcgis/core/views/
|
|
6207
|
+
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
6208
6208
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6209
6209
|
}
|
|
6210
|
-
async function
|
|
6211
|
-
const ModConstructor = await
|
|
6210
|
+
async function newViewsBasemapView(properties) {
|
|
6211
|
+
const ModConstructor = await importViewsBasemapView();
|
|
6212
6212
|
return new ModConstructor(properties);
|
|
6213
6213
|
}
|
|
6214
|
-
async function
|
|
6214
|
+
async function importViewsGroundView() {
|
|
6215
6215
|
if (isAMD) {
|
|
6216
|
-
return await window.$arcgis.import("esri/views/
|
|
6216
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
6217
6217
|
}
|
|
6218
|
-
const module2 = await import("@arcgis/core/views/
|
|
6218
|
+
const module2 = await import("@arcgis/core/views/GroundView.js");
|
|
6219
6219
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6220
6220
|
}
|
|
6221
|
-
async function
|
|
6222
|
-
const ModConstructor = await
|
|
6221
|
+
async function newViewsGroundView(properties) {
|
|
6222
|
+
const ModConstructor = await importViewsGroundView();
|
|
6223
6223
|
return new ModConstructor(properties);
|
|
6224
6224
|
}
|
|
6225
6225
|
async function importViews2dViewState() {
|
|
@@ -6233,6 +6233,28 @@ async function newViews2dViewState(properties) {
|
|
|
6233
6233
|
const ModConstructor = await importViews2dViewState();
|
|
6234
6234
|
return new ModConstructor(properties);
|
|
6235
6235
|
}
|
|
6236
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6237
|
+
if (isAMD) {
|
|
6238
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6239
|
+
}
|
|
6240
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6241
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6242
|
+
}
|
|
6243
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6244
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6245
|
+
return new ModConstructor(properties);
|
|
6246
|
+
}
|
|
6247
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6248
|
+
if (isAMD) {
|
|
6249
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6250
|
+
}
|
|
6251
|
+
const module2 = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6252
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6253
|
+
}
|
|
6254
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6255
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6256
|
+
return new ModConstructor(properties);
|
|
6257
|
+
}
|
|
6236
6258
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
6237
6259
|
if (isAMD) {
|
|
6238
6260
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -6422,26 +6444,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6422
6444
|
}
|
|
6423
6445
|
async function importViewsAnalysisElevationProfileResult() {
|
|
6424
6446
|
if (isAMD) {
|
|
6425
|
-
return await window.$arcgis.import("esri/views/analysis/
|
|
6447
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/Result");
|
|
6426
6448
|
}
|
|
6427
|
-
const module2 = await import("@arcgis/core/views/analysis/
|
|
6449
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/Result.js");
|
|
6428
6450
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6429
6451
|
}
|
|
6430
6452
|
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6431
6453
|
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
6432
6454
|
return new ModConstructor(properties);
|
|
6433
6455
|
}
|
|
6434
|
-
async function importViewsBasemapView() {
|
|
6435
|
-
if (isAMD) {
|
|
6436
|
-
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6437
|
-
}
|
|
6438
|
-
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
6439
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6440
|
-
}
|
|
6441
|
-
async function newViewsBasemapView(properties) {
|
|
6442
|
-
const ModConstructor = await importViewsBasemapView();
|
|
6443
|
-
return new ModConstructor(properties);
|
|
6444
|
-
}
|
|
6445
6456
|
async function importViewsDrawDraw() {
|
|
6446
6457
|
if (isAMD) {
|
|
6447
6458
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -6519,15 +6530,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
6519
6530
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
6520
6531
|
return new ModConstructor(properties);
|
|
6521
6532
|
}
|
|
6522
|
-
async function
|
|
6533
|
+
async function importViewsInputInput() {
|
|
6523
6534
|
if (isAMD) {
|
|
6524
|
-
return await window.$arcgis.import("esri/views/
|
|
6535
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
6525
6536
|
}
|
|
6526
|
-
const module2 = await import("@arcgis/core/views/
|
|
6537
|
+
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6527
6538
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6528
6539
|
}
|
|
6529
|
-
async function
|
|
6530
|
-
const ModConstructor = await
|
|
6540
|
+
async function newViewsInputInput(properties) {
|
|
6541
|
+
const ModConstructor = await importViewsInputInput();
|
|
6531
6542
|
return new ModConstructor(properties);
|
|
6532
6543
|
}
|
|
6533
6544
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6552,17 +6563,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6552
6563
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6553
6564
|
return new ModConstructor(properties);
|
|
6554
6565
|
}
|
|
6555
|
-
async function importViewsInputInput() {
|
|
6556
|
-
if (isAMD) {
|
|
6557
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6558
|
-
}
|
|
6559
|
-
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6560
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6561
|
-
}
|
|
6562
|
-
async function newViewsInputInput(properties) {
|
|
6563
|
-
const ModConstructor = await importViewsInputInput();
|
|
6564
|
-
return new ModConstructor(properties);
|
|
6565
|
-
}
|
|
6566
6566
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6567
6567
|
if (isAMD) {
|
|
6568
6568
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -11027,6 +11027,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
11027
11027
|
const module2 = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
11028
11028
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11029
11029
|
}
|
|
11030
|
+
async function importViews3dWebgl() {
|
|
11031
|
+
if (isAMD) {
|
|
11032
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11033
|
+
}
|
|
11034
|
+
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
11035
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11036
|
+
}
|
|
11030
11037
|
async function importViews3dWebglManagedFBO() {
|
|
11031
11038
|
if (isAMD) {
|
|
11032
11039
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -11041,13 +11048,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
11041
11048
|
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
11042
11049
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11043
11050
|
}
|
|
11044
|
-
async function importViews3dWebgl() {
|
|
11045
|
-
if (isAMD) {
|
|
11046
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11047
|
-
}
|
|
11048
|
-
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
11049
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
11050
|
-
}
|
|
11051
11051
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
11052
11052
|
if (isAMD) {
|
|
11053
11053
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -11271,13 +11271,13 @@ exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
|
11271
11271
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
11272
11272
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11273
11273
|
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11274
|
+
exports.importAnalysisElevationProfileGroundLine = importAnalysisElevationProfileGroundLine;
|
|
11275
|
+
exports.importAnalysisElevationProfileInputLine = importAnalysisElevationProfileInputLine;
|
|
11274
11276
|
exports.importAnalysisElevationProfileLine = importAnalysisElevationProfileLine;
|
|
11275
11277
|
exports.importAnalysisElevationProfileLineChartOptions = importAnalysisElevationProfileLineChartOptions;
|
|
11276
|
-
exports.importAnalysisElevationProfileLineGround = importAnalysisElevationProfileLineGround;
|
|
11277
|
-
exports.importAnalysisElevationProfileLineInput = importAnalysisElevationProfileLineInput;
|
|
11278
|
-
exports.importAnalysisElevationProfileLineQuery = importAnalysisElevationProfileLineQuery;
|
|
11279
|
-
exports.importAnalysisElevationProfileLineScene = importAnalysisElevationProfileLineScene;
|
|
11280
11278
|
exports.importAnalysisElevationProfileLineViewOptions = importAnalysisElevationProfileLineViewOptions;
|
|
11279
|
+
exports.importAnalysisElevationProfileQueryLine = importAnalysisElevationProfileQueryLine;
|
|
11280
|
+
exports.importAnalysisElevationProfileSceneLine = importAnalysisElevationProfileSceneLine;
|
|
11281
11281
|
exports.importAnalysisElevationProfileUnits = importAnalysisElevationProfileUnits;
|
|
11282
11282
|
exports.importAnalysisElevationProfileViewOptions = importAnalysisElevationProfileViewOptions;
|
|
11283
11283
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
@@ -12372,13 +12372,13 @@ exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
|
12372
12372
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
12373
12373
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12374
12374
|
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12375
|
+
exports.newAnalysisElevationProfileGroundLine = newAnalysisElevationProfileGroundLine;
|
|
12376
|
+
exports.newAnalysisElevationProfileInputLine = newAnalysisElevationProfileInputLine;
|
|
12375
12377
|
exports.newAnalysisElevationProfileLine = newAnalysisElevationProfileLine;
|
|
12376
12378
|
exports.newAnalysisElevationProfileLineChartOptions = newAnalysisElevationProfileLineChartOptions;
|
|
12377
|
-
exports.newAnalysisElevationProfileLineGround = newAnalysisElevationProfileLineGround;
|
|
12378
|
-
exports.newAnalysisElevationProfileLineInput = newAnalysisElevationProfileLineInput;
|
|
12379
|
-
exports.newAnalysisElevationProfileLineQuery = newAnalysisElevationProfileLineQuery;
|
|
12380
|
-
exports.newAnalysisElevationProfileLineScene = newAnalysisElevationProfileLineScene;
|
|
12381
12379
|
exports.newAnalysisElevationProfileLineViewOptions = newAnalysisElevationProfileLineViewOptions;
|
|
12380
|
+
exports.newAnalysisElevationProfileQueryLine = newAnalysisElevationProfileQueryLine;
|
|
12381
|
+
exports.newAnalysisElevationProfileSceneLine = newAnalysisElevationProfileSceneLine;
|
|
12382
12382
|
exports.newAnalysisElevationProfileUnits = newAnalysisElevationProfileUnits;
|
|
12383
12383
|
exports.newAnalysisElevationProfileViewOptions = newAnalysisElevationProfileViewOptions;
|
|
12384
12384
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|