@arcgis/core-adapter 4.34.0-next.75 → 4.34.0-next.77
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 +162 -149
- package/dist/index.d.cts +41 -39
- package/dist/index.d.ts +41 -39
- package/dist/index.js +162 -149
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -150,213 +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
|
+
return new ModConstructor(properties);
|
|
361
|
+
}
|
|
362
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
363
|
+
if (isAMD) {
|
|
364
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
365
|
+
}
|
|
366
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
367
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
368
|
+
}
|
|
369
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
370
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
360
371
|
return new ModConstructor(properties);
|
|
361
372
|
}
|
|
362
373
|
async function importCoreAccessor() {
|
|
@@ -6189,26 +6200,26 @@ async function newViewpoint(properties) {
|
|
|
6189
6200
|
const ModConstructor = await importViewpoint();
|
|
6190
6201
|
return new ModConstructor(properties);
|
|
6191
6202
|
}
|
|
6192
|
-
async function
|
|
6203
|
+
async function importViewsBasemapView() {
|
|
6193
6204
|
if (isAMD) {
|
|
6194
|
-
return await window.$arcgis.import("esri/views/
|
|
6205
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6195
6206
|
}
|
|
6196
|
-
const module2 = await import("@arcgis/core/views/
|
|
6207
|
+
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
6197
6208
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6198
6209
|
}
|
|
6199
|
-
async function
|
|
6200
|
-
const ModConstructor = await
|
|
6210
|
+
async function newViewsBasemapView(properties) {
|
|
6211
|
+
const ModConstructor = await importViewsBasemapView();
|
|
6201
6212
|
return new ModConstructor(properties);
|
|
6202
6213
|
}
|
|
6203
|
-
async function
|
|
6214
|
+
async function importViewsGroundView() {
|
|
6204
6215
|
if (isAMD) {
|
|
6205
|
-
return await window.$arcgis.import("esri/views/
|
|
6216
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
6206
6217
|
}
|
|
6207
|
-
const module2 = await import("@arcgis/core/views/
|
|
6218
|
+
const module2 = await import("@arcgis/core/views/GroundView.js");
|
|
6208
6219
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6209
6220
|
}
|
|
6210
|
-
async function
|
|
6211
|
-
const ModConstructor = await
|
|
6221
|
+
async function newViewsGroundView(properties) {
|
|
6222
|
+
const ModConstructor = await importViewsGroundView();
|
|
6212
6223
|
return new ModConstructor(properties);
|
|
6213
6224
|
}
|
|
6214
6225
|
async function importViews2dViewState() {
|
|
@@ -6222,6 +6233,28 @@ async function newViews2dViewState(properties) {
|
|
|
6222
6233
|
const ModConstructor = await importViews2dViewState();
|
|
6223
6234
|
return new ModConstructor(properties);
|
|
6224
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
|
+
}
|
|
6225
6258
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
6226
6259
|
if (isAMD) {
|
|
6227
6260
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -6411,26 +6444,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6411
6444
|
}
|
|
6412
6445
|
async function importViewsAnalysisElevationProfileResult() {
|
|
6413
6446
|
if (isAMD) {
|
|
6414
|
-
return await window.$arcgis.import("esri/views/analysis/
|
|
6447
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/Result");
|
|
6415
6448
|
}
|
|
6416
|
-
const module2 = await import("@arcgis/core/views/analysis/
|
|
6449
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/Result.js");
|
|
6417
6450
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6418
6451
|
}
|
|
6419
6452
|
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6420
6453
|
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
6421
6454
|
return new ModConstructor(properties);
|
|
6422
6455
|
}
|
|
6423
|
-
async function importViewsBasemapView() {
|
|
6424
|
-
if (isAMD) {
|
|
6425
|
-
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6426
|
-
}
|
|
6427
|
-
const module2 = await import("@arcgis/core/views/BasemapView.js");
|
|
6428
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6429
|
-
}
|
|
6430
|
-
async function newViewsBasemapView(properties) {
|
|
6431
|
-
const ModConstructor = await importViewsBasemapView();
|
|
6432
|
-
return new ModConstructor(properties);
|
|
6433
|
-
}
|
|
6434
6456
|
async function importViewsDrawDraw() {
|
|
6435
6457
|
if (isAMD) {
|
|
6436
6458
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -6508,15 +6530,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
6508
6530
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
6509
6531
|
return new ModConstructor(properties);
|
|
6510
6532
|
}
|
|
6511
|
-
async function
|
|
6533
|
+
async function importViewsInputInput() {
|
|
6512
6534
|
if (isAMD) {
|
|
6513
|
-
return await window.$arcgis.import("esri/views/
|
|
6535
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
6514
6536
|
}
|
|
6515
|
-
const module2 = await import("@arcgis/core/views/
|
|
6537
|
+
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6516
6538
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
6517
6539
|
}
|
|
6518
|
-
async function
|
|
6519
|
-
const ModConstructor = await
|
|
6540
|
+
async function newViewsInputInput(properties) {
|
|
6541
|
+
const ModConstructor = await importViewsInputInput();
|
|
6520
6542
|
return new ModConstructor(properties);
|
|
6521
6543
|
}
|
|
6522
6544
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6541,17 +6563,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6541
6563
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6542
6564
|
return new ModConstructor(properties);
|
|
6543
6565
|
}
|
|
6544
|
-
async function importViewsInputInput() {
|
|
6545
|
-
if (isAMD) {
|
|
6546
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6547
|
-
}
|
|
6548
|
-
const module2 = await import("@arcgis/core/views/input/Input.js");
|
|
6549
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6550
|
-
}
|
|
6551
|
-
async function newViewsInputInput(properties) {
|
|
6552
|
-
const ModConstructor = await importViewsInputInput();
|
|
6553
|
-
return new ModConstructor(properties);
|
|
6554
|
-
}
|
|
6555
6566
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6556
6567
|
if (isAMD) {
|
|
6557
6568
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -11016,6 +11027,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
11016
11027
|
const module2 = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
11017
11028
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11018
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
|
+
}
|
|
11019
11037
|
async function importViews3dWebglManagedFBO() {
|
|
11020
11038
|
if (isAMD) {
|
|
11021
11039
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -11030,13 +11048,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
11030
11048
|
const module2 = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
11031
11049
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11032
11050
|
}
|
|
11033
|
-
async function importViews3dWebgl() {
|
|
11034
|
-
if (isAMD) {
|
|
11035
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11036
|
-
}
|
|
11037
|
-
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
11038
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
11039
|
-
}
|
|
11040
11051
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
11041
11052
|
if (isAMD) {
|
|
11042
11053
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -11260,14 +11271,15 @@ exports.importAnalysisDimensionAnalysis = importAnalysisDimensionAnalysis;
|
|
|
11260
11271
|
exports.importAnalysisDimensionSimpleStyle = importAnalysisDimensionSimpleStyle;
|
|
11261
11272
|
exports.importAnalysisDirectLineMeasurementAnalysis = importAnalysisDirectLineMeasurementAnalysis;
|
|
11262
11273
|
exports.importAnalysisElevationProfileAnalysis = importAnalysisElevationProfileAnalysis;
|
|
11274
|
+
exports.importAnalysisElevationProfileGroundLine = importAnalysisElevationProfileGroundLine;
|
|
11275
|
+
exports.importAnalysisElevationProfileInputLine = importAnalysisElevationProfileInputLine;
|
|
11263
11276
|
exports.importAnalysisElevationProfileLine = importAnalysisElevationProfileLine;
|
|
11264
11277
|
exports.importAnalysisElevationProfileLineChartOptions = importAnalysisElevationProfileLineChartOptions;
|
|
11265
|
-
exports.importAnalysisElevationProfileLineGround = importAnalysisElevationProfileLineGround;
|
|
11266
|
-
exports.importAnalysisElevationProfileLineInput = importAnalysisElevationProfileLineInput;
|
|
11267
|
-
exports.importAnalysisElevationProfileLineQuery = importAnalysisElevationProfileLineQuery;
|
|
11268
|
-
exports.importAnalysisElevationProfileLineScene = importAnalysisElevationProfileLineScene;
|
|
11269
11278
|
exports.importAnalysisElevationProfileLineViewOptions = importAnalysisElevationProfileLineViewOptions;
|
|
11279
|
+
exports.importAnalysisElevationProfileQueryLine = importAnalysisElevationProfileQueryLine;
|
|
11280
|
+
exports.importAnalysisElevationProfileSceneLine = importAnalysisElevationProfileSceneLine;
|
|
11270
11281
|
exports.importAnalysisElevationProfileUnits = importAnalysisElevationProfileUnits;
|
|
11282
|
+
exports.importAnalysisElevationProfileViewOptions = importAnalysisElevationProfileViewOptions;
|
|
11271
11283
|
exports.importAnalysisLengthDimension = importAnalysisLengthDimension;
|
|
11272
11284
|
exports.importAnalysisLineOfSightAnalysis = importAnalysisLineOfSightAnalysis;
|
|
11273
11285
|
exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAnalysisObserver;
|
|
@@ -12360,14 +12372,15 @@ exports.newAnalysisDimensionAnalysis = newAnalysisDimensionAnalysis;
|
|
|
12360
12372
|
exports.newAnalysisDimensionSimpleStyle = newAnalysisDimensionSimpleStyle;
|
|
12361
12373
|
exports.newAnalysisDirectLineMeasurementAnalysis = newAnalysisDirectLineMeasurementAnalysis;
|
|
12362
12374
|
exports.newAnalysisElevationProfileAnalysis = newAnalysisElevationProfileAnalysis;
|
|
12375
|
+
exports.newAnalysisElevationProfileGroundLine = newAnalysisElevationProfileGroundLine;
|
|
12376
|
+
exports.newAnalysisElevationProfileInputLine = newAnalysisElevationProfileInputLine;
|
|
12363
12377
|
exports.newAnalysisElevationProfileLine = newAnalysisElevationProfileLine;
|
|
12364
12378
|
exports.newAnalysisElevationProfileLineChartOptions = newAnalysisElevationProfileLineChartOptions;
|
|
12365
|
-
exports.newAnalysisElevationProfileLineGround = newAnalysisElevationProfileLineGround;
|
|
12366
|
-
exports.newAnalysisElevationProfileLineInput = newAnalysisElevationProfileLineInput;
|
|
12367
|
-
exports.newAnalysisElevationProfileLineQuery = newAnalysisElevationProfileLineQuery;
|
|
12368
|
-
exports.newAnalysisElevationProfileLineScene = newAnalysisElevationProfileLineScene;
|
|
12369
12379
|
exports.newAnalysisElevationProfileLineViewOptions = newAnalysisElevationProfileLineViewOptions;
|
|
12380
|
+
exports.newAnalysisElevationProfileQueryLine = newAnalysisElevationProfileQueryLine;
|
|
12381
|
+
exports.newAnalysisElevationProfileSceneLine = newAnalysisElevationProfileSceneLine;
|
|
12370
12382
|
exports.newAnalysisElevationProfileUnits = newAnalysisElevationProfileUnits;
|
|
12383
|
+
exports.newAnalysisElevationProfileViewOptions = newAnalysisElevationProfileViewOptions;
|
|
12371
12384
|
exports.newAnalysisLengthDimension = newAnalysisLengthDimension;
|
|
12372
12385
|
exports.newAnalysisLineOfSightAnalysis = newAnalysisLineOfSightAnalysis;
|
|
12373
12386
|
exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisObserver;
|