@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.js
CHANGED
|
@@ -126,213 +126,224 @@ async function newAnalysisElevationProfileAnalysis(properties) {
|
|
|
126
126
|
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
127
127
|
return new ModConstructor(properties);
|
|
128
128
|
}
|
|
129
|
-
async function
|
|
129
|
+
async function importAnalysisLengthDimension() {
|
|
130
130
|
if (isAMD) {
|
|
131
|
-
return await window.$arcgis.import("esri/analysis/
|
|
131
|
+
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
132
132
|
}
|
|
133
|
-
const module = await import("@arcgis/core/analysis/
|
|
133
|
+
const module = await import("@arcgis/core/analysis/LengthDimension.js");
|
|
134
134
|
return isDefaultModule(module) ? module.default : module;
|
|
135
135
|
}
|
|
136
|
-
async function
|
|
137
|
-
const ModConstructor = await
|
|
136
|
+
async function newAnalysisLengthDimension(properties) {
|
|
137
|
+
const ModConstructor = await importAnalysisLengthDimension();
|
|
138
138
|
return new ModConstructor(properties);
|
|
139
139
|
}
|
|
140
|
-
async function
|
|
140
|
+
async function importAnalysisLineOfSightAnalysis() {
|
|
141
141
|
if (isAMD) {
|
|
142
|
-
return await window.$arcgis.import("esri/analysis/
|
|
142
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysis");
|
|
143
143
|
}
|
|
144
|
-
const module = await import("@arcgis/core/analysis/
|
|
144
|
+
const module = await import("@arcgis/core/analysis/LineOfSightAnalysis.js");
|
|
145
145
|
return isDefaultModule(module) ? module.default : module;
|
|
146
146
|
}
|
|
147
|
-
async function
|
|
148
|
-
const ModConstructor = await
|
|
147
|
+
async function newAnalysisLineOfSightAnalysis(properties) {
|
|
148
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysis();
|
|
149
149
|
return new ModConstructor(properties);
|
|
150
150
|
}
|
|
151
|
-
async function
|
|
151
|
+
async function importAnalysisLineOfSightAnalysisObserver() {
|
|
152
152
|
if (isAMD) {
|
|
153
|
-
return await window.$arcgis.import("esri/analysis/
|
|
153
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysisObserver");
|
|
154
154
|
}
|
|
155
|
-
const module = await import("@arcgis/core/analysis/
|
|
155
|
+
const module = await import("@arcgis/core/analysis/LineOfSightAnalysisObserver.js");
|
|
156
156
|
return isDefaultModule(module) ? module.default : module;
|
|
157
157
|
}
|
|
158
|
-
async function
|
|
159
|
-
const ModConstructor = await
|
|
158
|
+
async function newAnalysisLineOfSightAnalysisObserver(properties) {
|
|
159
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysisObserver();
|
|
160
160
|
return new ModConstructor(properties);
|
|
161
161
|
}
|
|
162
|
-
async function
|
|
162
|
+
async function importAnalysisLineOfSightAnalysisTarget() {
|
|
163
163
|
if (isAMD) {
|
|
164
|
-
return await window.$arcgis.import("esri/analysis/
|
|
164
|
+
return await window.$arcgis.import("esri/analysis/LineOfSightAnalysisTarget");
|
|
165
165
|
}
|
|
166
|
-
const module = await import("@arcgis/core/analysis/
|
|
166
|
+
const module = await import("@arcgis/core/analysis/LineOfSightAnalysisTarget.js");
|
|
167
167
|
return isDefaultModule(module) ? module.default : module;
|
|
168
168
|
}
|
|
169
|
-
async function
|
|
170
|
-
const ModConstructor = await
|
|
169
|
+
async function newAnalysisLineOfSightAnalysisTarget(properties) {
|
|
170
|
+
const ModConstructor = await importAnalysisLineOfSightAnalysisTarget();
|
|
171
171
|
return new ModConstructor(properties);
|
|
172
172
|
}
|
|
173
|
-
async function
|
|
173
|
+
async function importAnalysisSliceAnalysis() {
|
|
174
174
|
if (isAMD) {
|
|
175
|
-
return await window.$arcgis.import("esri/analysis/
|
|
175
|
+
return await window.$arcgis.import("esri/analysis/SliceAnalysis");
|
|
176
176
|
}
|
|
177
|
-
const module = await import("@arcgis/core/analysis/
|
|
177
|
+
const module = await import("@arcgis/core/analysis/SliceAnalysis.js");
|
|
178
178
|
return isDefaultModule(module) ? module.default : module;
|
|
179
179
|
}
|
|
180
|
-
async function
|
|
181
|
-
const ModConstructor = await
|
|
180
|
+
async function newAnalysisSliceAnalysis(properties) {
|
|
181
|
+
const ModConstructor = await importAnalysisSliceAnalysis();
|
|
182
182
|
return new ModConstructor(properties);
|
|
183
183
|
}
|
|
184
|
-
async function
|
|
184
|
+
async function importAnalysisSlicePlane() {
|
|
185
185
|
if (isAMD) {
|
|
186
|
-
return await window.$arcgis.import("esri/analysis/
|
|
186
|
+
return await window.$arcgis.import("esri/analysis/SlicePlane");
|
|
187
187
|
}
|
|
188
|
-
const module = await import("@arcgis/core/analysis/
|
|
188
|
+
const module = await import("@arcgis/core/analysis/SlicePlane.js");
|
|
189
189
|
return isDefaultModule(module) ? module.default : module;
|
|
190
190
|
}
|
|
191
|
-
async function
|
|
192
|
-
const ModConstructor = await
|
|
191
|
+
async function newAnalysisSlicePlane(properties) {
|
|
192
|
+
const ModConstructor = await importAnalysisSlicePlane();
|
|
193
193
|
return new ModConstructor(properties);
|
|
194
194
|
}
|
|
195
|
-
async function
|
|
195
|
+
async function importAnalysisViewshed() {
|
|
196
196
|
if (isAMD) {
|
|
197
|
-
return await window.$arcgis.import("esri/analysis/
|
|
197
|
+
return await window.$arcgis.import("esri/analysis/Viewshed");
|
|
198
198
|
}
|
|
199
|
-
const module = await import("@arcgis/core/analysis/
|
|
199
|
+
const module = await import("@arcgis/core/analysis/Viewshed.js");
|
|
200
200
|
return isDefaultModule(module) ? module.default : module;
|
|
201
201
|
}
|
|
202
|
-
async function
|
|
203
|
-
const ModConstructor = await
|
|
202
|
+
async function newAnalysisViewshed(properties) {
|
|
203
|
+
const ModConstructor = await importAnalysisViewshed();
|
|
204
204
|
return new ModConstructor(properties);
|
|
205
205
|
}
|
|
206
|
-
async function
|
|
206
|
+
async function importAnalysisViewshedAnalysis() {
|
|
207
207
|
if (isAMD) {
|
|
208
|
-
return await window.$arcgis.import("esri/analysis/
|
|
208
|
+
return await window.$arcgis.import("esri/analysis/ViewshedAnalysis");
|
|
209
209
|
}
|
|
210
|
-
const module = await import("@arcgis/core/analysis/
|
|
210
|
+
const module = await import("@arcgis/core/analysis/ViewshedAnalysis.js");
|
|
211
211
|
return isDefaultModule(module) ? module.default : module;
|
|
212
212
|
}
|
|
213
|
-
async function
|
|
214
|
-
const ModConstructor = await
|
|
213
|
+
async function newAnalysisViewshedAnalysis(properties) {
|
|
214
|
+
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
215
215
|
return new ModConstructor(properties);
|
|
216
216
|
}
|
|
217
|
-
async function
|
|
217
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
218
218
|
if (isAMD) {
|
|
219
|
-
return await window.$arcgis.import("esri/analysis/
|
|
219
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
220
220
|
}
|
|
221
|
-
const module = await import("@arcgis/core/analysis/
|
|
221
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
222
222
|
return isDefaultModule(module) ? module.default : module;
|
|
223
223
|
}
|
|
224
|
-
async function
|
|
225
|
-
const ModConstructor = await
|
|
224
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
225
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
226
|
return new ModConstructor(properties);
|
|
227
227
|
}
|
|
228
|
-
async function
|
|
228
|
+
async function importAnalysisElevationProfileGroundLine() {
|
|
229
229
|
if (isAMD) {
|
|
230
|
-
return await window.$arcgis.import("esri/analysis/
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/GroundLine");
|
|
231
231
|
}
|
|
232
|
-
const module = await import("@arcgis/core/analysis/
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/GroundLine.js");
|
|
233
233
|
return isDefaultModule(module) ? module.default : module;
|
|
234
234
|
}
|
|
235
|
-
async function
|
|
236
|
-
const ModConstructor = await
|
|
235
|
+
async function newAnalysisElevationProfileGroundLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileGroundLine();
|
|
237
237
|
return new ModConstructor(properties);
|
|
238
238
|
}
|
|
239
|
-
async function
|
|
239
|
+
async function importAnalysisElevationProfileInputLine() {
|
|
240
240
|
if (isAMD) {
|
|
241
|
-
return await window.$arcgis.import("esri/analysis/
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/InputLine");
|
|
242
242
|
}
|
|
243
|
-
const module = await import("@arcgis/core/analysis/
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/InputLine.js");
|
|
244
244
|
return isDefaultModule(module) ? module.default : module;
|
|
245
245
|
}
|
|
246
|
-
async function
|
|
247
|
-
const ModConstructor = await
|
|
246
|
+
async function newAnalysisElevationProfileInputLine(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileInputLine();
|
|
248
248
|
return new ModConstructor(properties);
|
|
249
249
|
}
|
|
250
|
-
async function
|
|
250
|
+
async function importAnalysisElevationProfileLine() {
|
|
251
251
|
if (isAMD) {
|
|
252
|
-
return await window.$arcgis.import("esri/analysis/
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Line");
|
|
253
253
|
}
|
|
254
|
-
const module = await import("@arcgis/core/analysis/
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/Line.js");
|
|
255
255
|
return isDefaultModule(module) ? module.default : module;
|
|
256
256
|
}
|
|
257
|
-
async function
|
|
258
|
-
const ModConstructor = await
|
|
257
|
+
async function newAnalysisElevationProfileLine(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileLine();
|
|
259
259
|
return new ModConstructor(properties);
|
|
260
260
|
}
|
|
261
|
-
async function
|
|
261
|
+
async function importAnalysisElevationProfileLineChartOptions() {
|
|
262
262
|
if (isAMD) {
|
|
263
|
-
return await window.$arcgis.import("esri/analysis/
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineChartOptions");
|
|
264
264
|
}
|
|
265
|
-
const module = await import("@arcgis/core/analysis/
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/LineChartOptions.js");
|
|
266
266
|
return isDefaultModule(module) ? module.default : module;
|
|
267
267
|
}
|
|
268
|
-
async function
|
|
269
|
-
const ModConstructor = await
|
|
268
|
+
async function newAnalysisElevationProfileLineChartOptions(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileLineChartOptions();
|
|
270
270
|
return new ModConstructor(properties);
|
|
271
271
|
}
|
|
272
|
-
async function
|
|
272
|
+
async function importAnalysisElevationProfileLineViewOptions() {
|
|
273
273
|
if (isAMD) {
|
|
274
|
-
return await window.$arcgis.import("esri/analysis/
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/LineViewOptions");
|
|
275
275
|
}
|
|
276
|
-
const module = await import("@arcgis/core/analysis/
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/LineViewOptions.js");
|
|
277
277
|
return isDefaultModule(module) ? module.default : module;
|
|
278
278
|
}
|
|
279
|
-
async function
|
|
280
|
-
const ModConstructor = await
|
|
279
|
+
async function newAnalysisElevationProfileLineViewOptions(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileLineViewOptions();
|
|
281
281
|
return new ModConstructor(properties);
|
|
282
282
|
}
|
|
283
|
-
async function
|
|
283
|
+
async function importAnalysisElevationProfileQueryLine() {
|
|
284
284
|
if (isAMD) {
|
|
285
|
-
return await window.$arcgis.import("esri/analysis/
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/QueryLine");
|
|
286
286
|
}
|
|
287
|
-
const module = await import("@arcgis/core/analysis/
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/QueryLine.js");
|
|
288
288
|
return isDefaultModule(module) ? module.default : module;
|
|
289
289
|
}
|
|
290
|
-
async function
|
|
291
|
-
const ModConstructor = await
|
|
290
|
+
async function newAnalysisElevationProfileQueryLine(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileQueryLine();
|
|
292
292
|
return new ModConstructor(properties);
|
|
293
293
|
}
|
|
294
|
-
async function
|
|
294
|
+
async function importAnalysisElevationProfileSceneLine() {
|
|
295
295
|
if (isAMD) {
|
|
296
|
-
return await window.$arcgis.import("esri/analysis/
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/SceneLine");
|
|
297
297
|
}
|
|
298
|
-
const module = await import("@arcgis/core/analysis/
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/SceneLine.js");
|
|
299
299
|
return isDefaultModule(module) ? module.default : module;
|
|
300
300
|
}
|
|
301
|
-
async function
|
|
302
|
-
const ModConstructor = await
|
|
301
|
+
async function newAnalysisElevationProfileSceneLine(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileSceneLine();
|
|
303
303
|
return new ModConstructor(properties);
|
|
304
304
|
}
|
|
305
|
-
async function
|
|
305
|
+
async function importAnalysisElevationProfileUnits() {
|
|
306
306
|
if (isAMD) {
|
|
307
|
-
return await window.$arcgis.import("esri/analysis/
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/Units");
|
|
308
308
|
}
|
|
309
|
-
const module = await import("@arcgis/core/analysis/
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/Units.js");
|
|
310
310
|
return isDefaultModule(module) ? module.default : module;
|
|
311
311
|
}
|
|
312
|
-
async function
|
|
313
|
-
const ModConstructor = await
|
|
312
|
+
async function newAnalysisElevationProfileUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileUnits();
|
|
314
314
|
return new ModConstructor(properties);
|
|
315
315
|
}
|
|
316
|
-
async function
|
|
316
|
+
async function importAnalysisElevationProfileViewOptions() {
|
|
317
317
|
if (isAMD) {
|
|
318
|
-
return await window.$arcgis.import("esri/analysis/
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ViewOptions");
|
|
319
319
|
}
|
|
320
|
-
const module = await import("@arcgis/core/analysis/
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ViewOptions.js");
|
|
321
321
|
return isDefaultModule(module) ? module.default : module;
|
|
322
322
|
}
|
|
323
|
-
async function
|
|
324
|
-
const ModConstructor = await
|
|
323
|
+
async function newAnalysisElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileViewOptions();
|
|
325
325
|
return new ModConstructor(properties);
|
|
326
326
|
}
|
|
327
|
-
async function
|
|
327
|
+
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
328
328
|
if (isAMD) {
|
|
329
|
-
return await window.$arcgis.import("esri/analysis/
|
|
329
|
+
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
330
330
|
}
|
|
331
|
-
const module = await import("@arcgis/core/analysis/
|
|
331
|
+
const module = await import("@arcgis/core/analysis/support/AnalysisOriginWebScene.js");
|
|
332
332
|
return isDefaultModule(module) ? module.default : module;
|
|
333
333
|
}
|
|
334
|
-
async function
|
|
335
|
-
const ModConstructor = await
|
|
334
|
+
async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
335
|
+
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
336
|
+
return new ModConstructor(properties);
|
|
337
|
+
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
336
347
|
return new ModConstructor(properties);
|
|
337
348
|
}
|
|
338
349
|
async function importCoreAccessor() {
|
|
@@ -6165,26 +6176,26 @@ async function newViewpoint(properties) {
|
|
|
6165
6176
|
const ModConstructor = await importViewpoint();
|
|
6166
6177
|
return new ModConstructor(properties);
|
|
6167
6178
|
}
|
|
6168
|
-
async function
|
|
6179
|
+
async function importViewsBasemapView() {
|
|
6169
6180
|
if (isAMD) {
|
|
6170
|
-
return await window.$arcgis.import("esri/views/
|
|
6181
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6171
6182
|
}
|
|
6172
|
-
const module = await import("@arcgis/core/views/
|
|
6183
|
+
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
6173
6184
|
return isDefaultModule(module) ? module.default : module;
|
|
6174
6185
|
}
|
|
6175
|
-
async function
|
|
6176
|
-
const ModConstructor = await
|
|
6186
|
+
async function newViewsBasemapView(properties) {
|
|
6187
|
+
const ModConstructor = await importViewsBasemapView();
|
|
6177
6188
|
return new ModConstructor(properties);
|
|
6178
6189
|
}
|
|
6179
|
-
async function
|
|
6190
|
+
async function importViewsGroundView() {
|
|
6180
6191
|
if (isAMD) {
|
|
6181
|
-
return await window.$arcgis.import("esri/views/
|
|
6192
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
6182
6193
|
}
|
|
6183
|
-
const module = await import("@arcgis/core/views/
|
|
6194
|
+
const module = await import("@arcgis/core/views/GroundView.js");
|
|
6184
6195
|
return isDefaultModule(module) ? module.default : module;
|
|
6185
6196
|
}
|
|
6186
|
-
async function
|
|
6187
|
-
const ModConstructor = await
|
|
6197
|
+
async function newViewsGroundView(properties) {
|
|
6198
|
+
const ModConstructor = await importViewsGroundView();
|
|
6188
6199
|
return new ModConstructor(properties);
|
|
6189
6200
|
}
|
|
6190
6201
|
async function importViews2dViewState() {
|
|
@@ -6198,6 +6209,28 @@ async function newViews2dViewState(properties) {
|
|
|
6198
6209
|
const ModConstructor = await importViews2dViewState();
|
|
6199
6210
|
return new ModConstructor(properties);
|
|
6200
6211
|
}
|
|
6212
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6213
|
+
if (isAMD) {
|
|
6214
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6215
|
+
}
|
|
6216
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6217
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6218
|
+
}
|
|
6219
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6220
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6221
|
+
return new ModConstructor(properties);
|
|
6222
|
+
}
|
|
6223
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6224
|
+
if (isAMD) {
|
|
6225
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6226
|
+
}
|
|
6227
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6228
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6229
|
+
}
|
|
6230
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6231
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6232
|
+
return new ModConstructor(properties);
|
|
6233
|
+
}
|
|
6201
6234
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
6202
6235
|
if (isAMD) {
|
|
6203
6236
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -6387,26 +6420,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6387
6420
|
}
|
|
6388
6421
|
async function importViewsAnalysisElevationProfileResult() {
|
|
6389
6422
|
if (isAMD) {
|
|
6390
|
-
return await window.$arcgis.import("esri/views/analysis/
|
|
6423
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/Result");
|
|
6391
6424
|
}
|
|
6392
|
-
const module = await import("@arcgis/core/views/analysis/
|
|
6425
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/Result.js");
|
|
6393
6426
|
return isDefaultModule(module) ? module.default : module;
|
|
6394
6427
|
}
|
|
6395
6428
|
async function newViewsAnalysisElevationProfileResult(properties) {
|
|
6396
6429
|
const ModConstructor = await importViewsAnalysisElevationProfileResult();
|
|
6397
6430
|
return new ModConstructor(properties);
|
|
6398
6431
|
}
|
|
6399
|
-
async function importViewsBasemapView() {
|
|
6400
|
-
if (isAMD) {
|
|
6401
|
-
return await window.$arcgis.import("esri/views/BasemapView");
|
|
6402
|
-
}
|
|
6403
|
-
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
6404
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6405
|
-
}
|
|
6406
|
-
async function newViewsBasemapView(properties) {
|
|
6407
|
-
const ModConstructor = await importViewsBasemapView();
|
|
6408
|
-
return new ModConstructor(properties);
|
|
6409
|
-
}
|
|
6410
6432
|
async function importViewsDrawDraw() {
|
|
6411
6433
|
if (isAMD) {
|
|
6412
6434
|
return await window.$arcgis.import("esri/views/draw/Draw");
|
|
@@ -6484,15 +6506,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
6484
6506
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
6485
6507
|
return new ModConstructor(properties);
|
|
6486
6508
|
}
|
|
6487
|
-
async function
|
|
6509
|
+
async function importViewsInputInput() {
|
|
6488
6510
|
if (isAMD) {
|
|
6489
|
-
return await window.$arcgis.import("esri/views/
|
|
6511
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
6490
6512
|
}
|
|
6491
|
-
const module = await import("@arcgis/core/views/
|
|
6513
|
+
const module = await import("@arcgis/core/views/input/Input.js");
|
|
6492
6514
|
return isDefaultModule(module) ? module.default : module;
|
|
6493
6515
|
}
|
|
6494
|
-
async function
|
|
6495
|
-
const ModConstructor = await
|
|
6516
|
+
async function newViewsInputInput(properties) {
|
|
6517
|
+
const ModConstructor = await importViewsInputInput();
|
|
6496
6518
|
return new ModConstructor(properties);
|
|
6497
6519
|
}
|
|
6498
6520
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6517,17 +6539,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6517
6539
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6518
6540
|
return new ModConstructor(properties);
|
|
6519
6541
|
}
|
|
6520
|
-
async function importViewsInputInput() {
|
|
6521
|
-
if (isAMD) {
|
|
6522
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6523
|
-
}
|
|
6524
|
-
const module = await import("@arcgis/core/views/input/Input.js");
|
|
6525
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6526
|
-
}
|
|
6527
|
-
async function newViewsInputInput(properties) {
|
|
6528
|
-
const ModConstructor = await importViewsInputInput();
|
|
6529
|
-
return new ModConstructor(properties);
|
|
6530
|
-
}
|
|
6531
6542
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6532
6543
|
if (isAMD) {
|
|
6533
6544
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -10992,6 +11003,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10992
11003
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10993
11004
|
return isDefaultModule(module) ? module.default : module;
|
|
10994
11005
|
}
|
|
11006
|
+
async function importViews3dWebgl() {
|
|
11007
|
+
if (isAMD) {
|
|
11008
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11009
|
+
}
|
|
11010
|
+
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
11011
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11012
|
+
}
|
|
10995
11013
|
async function importViews3dWebglManagedFBO() {
|
|
10996
11014
|
if (isAMD) {
|
|
10997
11015
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -11006,13 +11024,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
11006
11024
|
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
11007
11025
|
return isDefaultModule(module) ? module.default : module;
|
|
11008
11026
|
}
|
|
11009
|
-
async function importViews3dWebgl() {
|
|
11010
|
-
if (isAMD) {
|
|
11011
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
11012
|
-
}
|
|
11013
|
-
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
11014
|
-
return isDefaultModule(module) ? module.default : module;
|
|
11015
|
-
}
|
|
11016
11027
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
11017
11028
|
if (isAMD) {
|
|
11018
11029
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -11237,14 +11248,15 @@ export {
|
|
|
11237
11248
|
importAnalysisDimensionSimpleStyle,
|
|
11238
11249
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11239
11250
|
importAnalysisElevationProfileAnalysis,
|
|
11251
|
+
importAnalysisElevationProfileGroundLine,
|
|
11252
|
+
importAnalysisElevationProfileInputLine,
|
|
11240
11253
|
importAnalysisElevationProfileLine,
|
|
11241
11254
|
importAnalysisElevationProfileLineChartOptions,
|
|
11242
|
-
importAnalysisElevationProfileLineGround,
|
|
11243
|
-
importAnalysisElevationProfileLineInput,
|
|
11244
|
-
importAnalysisElevationProfileLineQuery,
|
|
11245
|
-
importAnalysisElevationProfileLineScene,
|
|
11246
11255
|
importAnalysisElevationProfileLineViewOptions,
|
|
11256
|
+
importAnalysisElevationProfileQueryLine,
|
|
11257
|
+
importAnalysisElevationProfileSceneLine,
|
|
11247
11258
|
importAnalysisElevationProfileUnits,
|
|
11259
|
+
importAnalysisElevationProfileViewOptions,
|
|
11248
11260
|
importAnalysisLengthDimension,
|
|
11249
11261
|
importAnalysisLineOfSightAnalysis,
|
|
11250
11262
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -12337,14 +12349,15 @@ export {
|
|
|
12337
12349
|
newAnalysisDimensionSimpleStyle,
|
|
12338
12350
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12339
12351
|
newAnalysisElevationProfileAnalysis,
|
|
12352
|
+
newAnalysisElevationProfileGroundLine,
|
|
12353
|
+
newAnalysisElevationProfileInputLine,
|
|
12340
12354
|
newAnalysisElevationProfileLine,
|
|
12341
12355
|
newAnalysisElevationProfileLineChartOptions,
|
|
12342
|
-
newAnalysisElevationProfileLineGround,
|
|
12343
|
-
newAnalysisElevationProfileLineInput,
|
|
12344
|
-
newAnalysisElevationProfileLineQuery,
|
|
12345
|
-
newAnalysisElevationProfileLineScene,
|
|
12346
12356
|
newAnalysisElevationProfileLineViewOptions,
|
|
12357
|
+
newAnalysisElevationProfileQueryLine,
|
|
12358
|
+
newAnalysisElevationProfileSceneLine,
|
|
12347
12359
|
newAnalysisElevationProfileUnits,
|
|
12360
|
+
newAnalysisElevationProfileViewOptions,
|
|
12348
12361
|
newAnalysisLengthDimension,
|
|
12349
12362
|
newAnalysisLineOfSightAnalysis,
|
|
12350
12363
|
newAnalysisLineOfSightAnalysisObserver,
|