@arcgis/core-adapter 4.32.0-next.29 → 4.32.0-next.31
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/.turbo/turbo-build.log +7 -7
- package/dist/index.cjs +9 -0
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -0
- package/package.json +1 -1
- package/src/index.ts +8 -0
- package/support/api-reference-esm-imports.json +0 -1
- package/support/arcgis.d.ts +224 -237
package/support/arcgis.d.ts
CHANGED
|
@@ -203,6 +203,17 @@ declare namespace __esri {
|
|
|
203
203
|
|
|
204
204
|
export const reactiveUtils: reactiveUtils;
|
|
205
205
|
|
|
206
|
+
export interface Signal<T> {
|
|
207
|
+
value: T;
|
|
208
|
+
mutate(mutateFn: (value: T) => void): void;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface ComponentsReactiveUtils {
|
|
212
|
+
signal<T>(initialValue: T, equalityFunction?: (a: T, b: T) => boolean): Signal<T>;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export const ComponentsReactiveUtils: ComponentsReactiveUtils;
|
|
216
|
+
|
|
206
217
|
export type BaseDynamicLayerLayerviewCreateErrorEventHandler = (
|
|
207
218
|
event: BaseDynamicLayerLayerviewCreateErrorEvent,
|
|
208
219
|
) => void;
|
|
@@ -3605,19 +3616,6 @@ declare namespace __esri {
|
|
|
3605
3616
|
elapsedFrameTime: number;
|
|
3606
3617
|
}
|
|
3607
3618
|
|
|
3608
|
-
export type MutateFunction = (value: any) => void;
|
|
3609
|
-
|
|
3610
|
-
/**
|
|
3611
|
-
* Signal which contains a single reactive value and methods to modify it and notify any other
|
|
3612
|
-
* signals, Accessor properties or reactive contexts (i.e.
|
|
3613
|
-
*
|
|
3614
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-signal.html#Signal Read more...}
|
|
3615
|
-
*/
|
|
3616
|
-
export interface Signal {
|
|
3617
|
-
value?: boolean;
|
|
3618
|
-
mutate?: MutateFunction;
|
|
3619
|
-
}
|
|
3620
|
-
|
|
3621
3619
|
/**
|
|
3622
3620
|
* Creates a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-sql-WhereClause.html WhereClause} expression that adheres to standardized SQL expressions.
|
|
3623
3621
|
*
|
|
@@ -93608,7 +93606,7 @@ declare namespace __esri {
|
|
|
93608
93606
|
export interface KMLLayerViewMapImage {
|
|
93609
93607
|
id: number;
|
|
93610
93608
|
href: string;
|
|
93611
|
-
|
|
93609
|
+
extent: Extent;
|
|
93612
93610
|
rotation: number;
|
|
93613
93611
|
}
|
|
93614
93612
|
|
|
@@ -95250,7 +95248,7 @@ declare namespace __esri {
|
|
|
95250
95248
|
shouldFocus?: boolean;
|
|
95251
95249
|
}
|
|
95252
95250
|
|
|
95253
|
-
export interface SceneView extends View, BreakpointsOwner, PopupView {}
|
|
95251
|
+
export interface SceneView extends View, BreakpointsOwner, PopupView, DOMContainer {}
|
|
95254
95252
|
|
|
95255
95253
|
export class SceneView {
|
|
95256
95254
|
/**
|
|
@@ -95317,6 +95315,12 @@ declare namespace __esri {
|
|
|
95317
95315
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#constraints Read more...}
|
|
95318
95316
|
*/
|
|
95319
95317
|
constraints: SceneViewConstraints;
|
|
95318
|
+
/**
|
|
95319
|
+
* The `id` or node representing the DOM element containing the view.
|
|
95320
|
+
*
|
|
95321
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#container Read more...}
|
|
95322
|
+
*/
|
|
95323
|
+
declare container: DOMContainer["container"];
|
|
95320
95324
|
/**
|
|
95321
95325
|
* Specifies various properties of the environment's visualization in the view.
|
|
95322
95326
|
*
|
|
@@ -95338,12 +95342,26 @@ declare namespace __esri {
|
|
|
95338
95342
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#floors Read more...}
|
|
95339
95343
|
*/
|
|
95340
95344
|
floors: Collection<string>;
|
|
95345
|
+
/**
|
|
95346
|
+
* Indicates if the browser focus is on the view.
|
|
95347
|
+
*
|
|
95348
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#focused Read more...}
|
|
95349
|
+
*/
|
|
95350
|
+
declare readonly focused: DOMContainer["focused"];
|
|
95341
95351
|
/**
|
|
95342
95352
|
* The view for the ground of the map.
|
|
95343
95353
|
*
|
|
95344
95354
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#groundView Read more...}
|
|
95345
95355
|
*/
|
|
95346
95356
|
readonly groundView: GroundView;
|
|
95357
|
+
/**
|
|
95358
|
+
* The height of the view in pixels read from the view container element.
|
|
95359
|
+
*
|
|
95360
|
+
* @default 0
|
|
95361
|
+
*
|
|
95362
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#height Read more...}
|
|
95363
|
+
*/
|
|
95364
|
+
declare readonly height: DOMContainer["height"];
|
|
95347
95365
|
/**
|
|
95348
95366
|
* A convenience property indicating the general size of the view's height.
|
|
95349
95367
|
*
|
|
@@ -95390,12 +95408,34 @@ declare namespace __esri {
|
|
|
95390
95408
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#qualityProfile Read more...}
|
|
95391
95409
|
*/
|
|
95392
95410
|
qualityProfile: "low" | "medium" | "high";
|
|
95411
|
+
/**
|
|
95412
|
+
* Indicates if the view is being resized.
|
|
95413
|
+
*
|
|
95414
|
+
* @default false
|
|
95415
|
+
*
|
|
95416
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#resizing Read more...}
|
|
95417
|
+
*/
|
|
95418
|
+
declare readonly resizing: DOMContainer["resizing"];
|
|
95393
95419
|
/**
|
|
95394
95420
|
* Represents an approximation of the map scale.
|
|
95395
95421
|
*
|
|
95396
95422
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale Read more...}
|
|
95397
95423
|
*/
|
|
95398
95424
|
scale: number;
|
|
95425
|
+
/**
|
|
95426
|
+
* An array containing the width and height of the view in pixels, e.g.
|
|
95427
|
+
*
|
|
95428
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#size Read more...}
|
|
95429
|
+
*/
|
|
95430
|
+
declare readonly size: DOMContainer["size"];
|
|
95431
|
+
/**
|
|
95432
|
+
* Indicates if the view is visible on the page.
|
|
95433
|
+
*
|
|
95434
|
+
* @default true
|
|
95435
|
+
*
|
|
95436
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#suspended Read more...}
|
|
95437
|
+
*/
|
|
95438
|
+
declare readonly suspended: DOMContainer["suspended"];
|
|
95399
95439
|
/**
|
|
95400
95440
|
* The tiling scheme information of the view.
|
|
95401
95441
|
*
|
|
@@ -95408,6 +95448,13 @@ declare namespace __esri {
|
|
|
95408
95448
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#type Read more...}
|
|
95409
95449
|
*/
|
|
95410
95450
|
readonly type: "3d";
|
|
95451
|
+
/**
|
|
95452
|
+
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
95453
|
+
* and off.
|
|
95454
|
+
*
|
|
95455
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#ui Read more...}
|
|
95456
|
+
*/
|
|
95457
|
+
declare ui: DOMContainer["ui"];
|
|
95411
95458
|
/**
|
|
95412
95459
|
* The viewing mode (`local` or `global`).
|
|
95413
95460
|
*
|
|
@@ -95430,6 +95477,14 @@ declare namespace __esri {
|
|
|
95430
95477
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#visibleArea Read more...}
|
|
95431
95478
|
*/
|
|
95432
95479
|
readonly visibleArea: Polygon;
|
|
95480
|
+
/**
|
|
95481
|
+
* The width of the view in pixels read from the view container element.
|
|
95482
|
+
*
|
|
95483
|
+
* @default 0
|
|
95484
|
+
*
|
|
95485
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#width Read more...}
|
|
95486
|
+
*/
|
|
95487
|
+
declare readonly width: DOMContainer["width"];
|
|
95433
95488
|
/**
|
|
95434
95489
|
* A convenience property indicating the general size of the view's width.
|
|
95435
95490
|
*
|
|
@@ -95550,7 +95605,11 @@ declare namespace __esri {
|
|
|
95550
95605
|
>;
|
|
95551
95606
|
}
|
|
95552
95607
|
|
|
95553
|
-
interface SceneViewProperties
|
|
95608
|
+
interface SceneViewProperties
|
|
95609
|
+
extends ViewProperties,
|
|
95610
|
+
BreakpointsOwnerProperties,
|
|
95611
|
+
PopupViewProperties,
|
|
95612
|
+
DOMContainerProperties {
|
|
95554
95613
|
/**
|
|
95555
95614
|
* Allows the view to be partially or fully transparent when composited with the webpage elements behind it.
|
|
95556
95615
|
*
|
|
@@ -95604,6 +95663,12 @@ declare namespace __esri {
|
|
|
95604
95663
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#constraints Read more...}
|
|
95605
95664
|
*/
|
|
95606
95665
|
constraints?: SceneViewConstraintsProperties;
|
|
95666
|
+
/**
|
|
95667
|
+
* The `id` or node representing the DOM element containing the view.
|
|
95668
|
+
*
|
|
95669
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#container Read more...}
|
|
95670
|
+
*/
|
|
95671
|
+
container?: DOMContainerProperties["container"];
|
|
95607
95672
|
/**
|
|
95608
95673
|
* Specifies various properties of the environment's visualization in the view.
|
|
95609
95674
|
*
|
|
@@ -95660,6 +95725,13 @@ declare namespace __esri {
|
|
|
95660
95725
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale Read more...}
|
|
95661
95726
|
*/
|
|
95662
95727
|
scale?: number;
|
|
95728
|
+
/**
|
|
95729
|
+
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
95730
|
+
* and off.
|
|
95731
|
+
*
|
|
95732
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#ui Read more...}
|
|
95733
|
+
*/
|
|
95734
|
+
ui?: DOMContainerProperties["ui"];
|
|
95663
95735
|
/**
|
|
95664
95736
|
* The viewing mode (`local` or `global`).
|
|
95665
95737
|
*
|
|
@@ -96232,7 +96304,7 @@ declare namespace __esri {
|
|
|
96232
96304
|
| "top-trailing"
|
|
96233
96305
|
| "manual";
|
|
96234
96306
|
|
|
96235
|
-
export interface View extends Accessor, corePromise, Evented
|
|
96307
|
+
export interface View extends Accessor, corePromise, Evented {}
|
|
96236
96308
|
|
|
96237
96309
|
export class View {
|
|
96238
96310
|
/**
|
|
@@ -96262,12 +96334,6 @@ declare namespace __esri {
|
|
|
96262
96334
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#basemapView Read more...}
|
|
96263
96335
|
*/
|
|
96264
96336
|
basemapView: BasemapView;
|
|
96265
|
-
/**
|
|
96266
|
-
* The `id` or node representing the DOM element containing the view.
|
|
96267
|
-
*
|
|
96268
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#container Read more...}
|
|
96269
|
-
*/
|
|
96270
|
-
declare container: DOMContainer["container"];
|
|
96271
96337
|
/**
|
|
96272
96338
|
* A fatal {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html error} returned
|
|
96273
96339
|
* when the view loses its WebGL context.
|
|
@@ -96275,26 +96341,12 @@ declare namespace __esri {
|
|
|
96275
96341
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#fatalError Read more...}
|
|
96276
96342
|
*/
|
|
96277
96343
|
fatalError: Error;
|
|
96278
|
-
/**
|
|
96279
|
-
* Indicates if the browser focus is on the view.
|
|
96280
|
-
*
|
|
96281
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#focused Read more...}
|
|
96282
|
-
*/
|
|
96283
|
-
declare readonly focused: DOMContainer["focused"];
|
|
96284
96344
|
/**
|
|
96285
96345
|
* Allows for adding {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html graphics} directly to the default graphics in the View.
|
|
96286
96346
|
*
|
|
96287
96347
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#graphics Read more...}
|
|
96288
96348
|
*/
|
|
96289
96349
|
graphics: Collection<Graphic>;
|
|
96290
|
-
/**
|
|
96291
|
-
* The height of the view in pixels read from the view container element.
|
|
96292
|
-
*
|
|
96293
|
-
* @default 0
|
|
96294
|
-
*
|
|
96295
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#height Read more...}
|
|
96296
|
-
*/
|
|
96297
|
-
declare readonly height: DOMContainer["height"];
|
|
96298
96350
|
/**
|
|
96299
96351
|
* The highlights property is a collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html HighlightGroup} objects that allow you to visually emphasize specific features on the map.
|
|
96300
96352
|
*
|
|
@@ -96358,21 +96410,6 @@ declare namespace __esri {
|
|
|
96358
96410
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#padding Read more...}
|
|
96359
96411
|
*/
|
|
96360
96412
|
padding: ViewPadding;
|
|
96361
|
-
/**
|
|
96362
|
-
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html Popup} object that displays general content or attributes from
|
|
96363
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#layers layers} in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#map map}.
|
|
96364
|
-
*
|
|
96365
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popup Read more...}
|
|
96366
|
-
*/
|
|
96367
|
-
declare popup: PopupView["popup"];
|
|
96368
|
-
/**
|
|
96369
|
-
* Controls whether the popup opens when users click on the view.
|
|
96370
|
-
*
|
|
96371
|
-
* @default true
|
|
96372
|
-
*
|
|
96373
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popupEnabled Read more...}
|
|
96374
|
-
*/
|
|
96375
|
-
declare popupEnabled: PopupView["popupEnabled"];
|
|
96376
96413
|
/**
|
|
96377
96414
|
* When `true`, this property indicates whether the view successfully satisfied all dependencies,
|
|
96378
96415
|
* signaling that the following conditions are met.
|
|
@@ -96382,26 +96419,12 @@ declare namespace __esri {
|
|
|
96382
96419
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ready Read more...}
|
|
96383
96420
|
*/
|
|
96384
96421
|
readonly ready: boolean;
|
|
96385
|
-
/**
|
|
96386
|
-
* Indicates if the view is being resized.
|
|
96387
|
-
*
|
|
96388
|
-
* @default false
|
|
96389
|
-
*
|
|
96390
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#resizing Read more...}
|
|
96391
|
-
*/
|
|
96392
|
-
declare readonly resizing: DOMContainer["resizing"];
|
|
96393
96422
|
/**
|
|
96394
96423
|
* Represents the current value of one pixel in the unit of the view's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#spatialReference spatialReference}.
|
|
96395
96424
|
*
|
|
96396
96425
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#resolution Read more...}
|
|
96397
96426
|
*/
|
|
96398
96427
|
readonly resolution: number;
|
|
96399
|
-
/**
|
|
96400
|
-
* An array containing the width and height of the view in pixels, e.g.
|
|
96401
|
-
*
|
|
96402
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#size Read more...}
|
|
96403
|
-
*/
|
|
96404
|
-
declare readonly size: DOMContainer["size"];
|
|
96405
96428
|
/**
|
|
96406
96429
|
* The spatial reference of the view.
|
|
96407
96430
|
*
|
|
@@ -96416,14 +96439,6 @@ declare namespace __esri {
|
|
|
96416
96439
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#stationary Read more...}
|
|
96417
96440
|
*/
|
|
96418
96441
|
readonly stationary: boolean;
|
|
96419
|
-
/**
|
|
96420
|
-
* Indicates if the view is visible on the page.
|
|
96421
|
-
*
|
|
96422
|
-
* @default true
|
|
96423
|
-
*
|
|
96424
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#suspended Read more...}
|
|
96425
|
-
*/
|
|
96426
|
-
declare readonly suspended: DOMContainer["suspended"];
|
|
96427
96442
|
/**
|
|
96428
96443
|
* This property specifies the base colors used by some widgets and components to render graphics and labels.
|
|
96429
96444
|
*
|
|
@@ -96448,13 +96463,6 @@ declare namespace __esri {
|
|
|
96448
96463
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#type Read more...}
|
|
96449
96464
|
*/
|
|
96450
96465
|
readonly type: string;
|
|
96451
|
-
/**
|
|
96452
|
-
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
96453
|
-
* and off.
|
|
96454
|
-
*
|
|
96455
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ui Read more...}
|
|
96456
|
-
*/
|
|
96457
|
-
declare ui: DOMContainer["ui"];
|
|
96458
96466
|
/**
|
|
96459
96467
|
* Indicates whether the view is being updated by additional data requests to the network,
|
|
96460
96468
|
* or by processing received data.
|
|
@@ -96464,21 +96472,7 @@ declare namespace __esri {
|
|
|
96464
96472
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#updating Read more...}
|
|
96465
96473
|
*/
|
|
96466
96474
|
readonly updating: boolean;
|
|
96467
|
-
/**
|
|
96468
|
-
* The width of the view in pixels read from the view container element.
|
|
96469
|
-
*
|
|
96470
|
-
* @default 0
|
|
96471
|
-
*
|
|
96472
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#width Read more...}
|
|
96473
|
-
*/
|
|
96474
|
-
declare readonly width: DOMContainer["width"];
|
|
96475
96475
|
|
|
96476
|
-
/**
|
|
96477
|
-
* Closes the popup.
|
|
96478
|
-
*
|
|
96479
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#closePopup Read more...}
|
|
96480
|
-
*/
|
|
96481
|
-
closePopup(): void;
|
|
96482
96476
|
/**
|
|
96483
96477
|
* Destroys the view, and any associated resources, including its {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#map map}, {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popup popup}, and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ui UI} elements.
|
|
96484
96478
|
*
|
|
@@ -96527,25 +96521,6 @@ declare namespace __esri {
|
|
|
96527
96521
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#isResolved Read more...}
|
|
96528
96522
|
*/
|
|
96529
96523
|
isResolved(): boolean;
|
|
96530
|
-
/**
|
|
96531
|
-
* Opens the popup at the given location with content defined either explicitly with `content`
|
|
96532
|
-
* or driven from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html PopupTemplate} of input features.
|
|
96533
|
-
*
|
|
96534
|
-
* @param options Defines the location and content of the popup when opened.
|
|
96535
|
-
* @param options.title Sets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#title title} of the popup.
|
|
96536
|
-
* @param options.content Sets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#content content} of the popup.
|
|
96537
|
-
* @param options.location Sets the popup's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#location location}, which is the geometry used to position the popup.
|
|
96538
|
-
* @param options.fetchFeatures When `true`, indicates the popup should fetch the content of this feature and display it. If no {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html PopupTemplate} exists, a default template is created for the layer if {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#defaultPopupTemplateEnabled defaultPopupTemplateEnabled} = `true`. In order for this option to work, there must be a valid `view` and `location` set.
|
|
96539
|
-
* @param options.features Sets the popup's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#features features}, which populate the title and content of the popup based on each graphic's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html PopupTemplate}.
|
|
96540
|
-
* @param options.promises Sets pending {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#promises promises} on the popup. The popup will display once the promises resolve. Each promise must resolve to an array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html Graphics}.
|
|
96541
|
-
* @param options.featureMenuOpen This property enables multiple features in a popup to display in a list rather than displaying the first selected feature. Setting this to `true` allows the user to scroll through the list of features returned from the query and choose the selection they want to display within the popup.
|
|
96542
|
-
* @param options.updateLocationEnabled When `true`, indicates the popup should update its {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#location location} for each paginated feature based on the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#selectedFeature selectedFeature's} geometry.
|
|
96543
|
-
* @param options.collapsed When `true`, indicates that only the popup header will display.
|
|
96544
|
-
* @param options.shouldFocus When `true`, indicates that the focus should be on the popup after it has been opened.
|
|
96545
|
-
*
|
|
96546
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#openPopup Read more...}
|
|
96547
|
-
*/
|
|
96548
|
-
openPopup(options?: PopupViewOpenPopupOptions): Promise<any>;
|
|
96549
96524
|
/**
|
|
96550
96525
|
* Call this method to clear any {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#fatalError fatal errors} resulting from a lost WebGL context.
|
|
96551
96526
|
*
|
|
@@ -96651,7 +96626,7 @@ declare namespace __esri {
|
|
|
96651
96626
|
static readonly views: Collection<View>;
|
|
96652
96627
|
}
|
|
96653
96628
|
|
|
96654
|
-
interface ViewProperties
|
|
96629
|
+
interface ViewProperties {
|
|
96655
96630
|
/**
|
|
96656
96631
|
* Collection containing a flat list of all the created {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerViews}
|
|
96657
96632
|
* related to the basemap, operational layers, and group layers in this view.
|
|
@@ -96671,12 +96646,6 @@ declare namespace __esri {
|
|
|
96671
96646
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#basemapView Read more...}
|
|
96672
96647
|
*/
|
|
96673
96648
|
basemapView?: BasemapViewProperties;
|
|
96674
|
-
/**
|
|
96675
|
-
* The `id` or node representing the DOM element containing the view.
|
|
96676
|
-
*
|
|
96677
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#container Read more...}
|
|
96678
|
-
*/
|
|
96679
|
-
container?: DOMContainerProperties["container"];
|
|
96680
96649
|
/**
|
|
96681
96650
|
* A fatal {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html error} returned
|
|
96682
96651
|
* when the view loses its WebGL context.
|
|
@@ -96723,19 +96692,6 @@ declare namespace __esri {
|
|
|
96723
96692
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#padding Read more...}
|
|
96724
96693
|
*/
|
|
96725
96694
|
padding?: ViewPadding;
|
|
96726
|
-
/**
|
|
96727
|
-
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html Popup} object that displays general content or attributes from
|
|
96728
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#layers layers} in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#map map}.
|
|
96729
|
-
*
|
|
96730
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popup Read more...}
|
|
96731
|
-
*/
|
|
96732
|
-
popup?: PopupViewProperties["popup"];
|
|
96733
|
-
/**
|
|
96734
|
-
* Controls whether the popup opens when users click on the view.
|
|
96735
|
-
*
|
|
96736
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popupEnabled Read more...}
|
|
96737
|
-
*/
|
|
96738
|
-
popupEnabled?: PopupViewProperties["popupEnabled"];
|
|
96739
96695
|
/**
|
|
96740
96696
|
* The spatial reference of the view.
|
|
96741
96697
|
*
|
|
@@ -96754,13 +96710,6 @@ declare namespace __esri {
|
|
|
96754
96710
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#timeExtent Read more...}
|
|
96755
96711
|
*/
|
|
96756
96712
|
timeExtent?: TimeExtentProperties;
|
|
96757
|
-
/**
|
|
96758
|
-
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
96759
|
-
* and off.
|
|
96760
|
-
*
|
|
96761
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ui Read more...}
|
|
96762
|
-
*/
|
|
96763
|
-
ui?: DOMContainerProperties["ui"];
|
|
96764
96713
|
}
|
|
96765
96714
|
|
|
96766
96715
|
export interface ViewBlurEvent {
|
|
@@ -96999,7 +96948,7 @@ declare namespace __esri {
|
|
|
96999
96948
|
bottom?: number;
|
|
97000
96949
|
}
|
|
97001
96950
|
|
|
97002
|
-
export interface View2D extends View, BreakpointsOwner, PopupView {}
|
|
96951
|
+
export interface View2D extends View, BreakpointsOwner, PopupView, DOMContainer {}
|
|
97003
96952
|
|
|
97004
96953
|
export class View2D {
|
|
97005
96954
|
/**
|
|
@@ -97039,6 +96988,12 @@ declare namespace __esri {
|
|
|
97039
96988
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#constraints Read more...}
|
|
97040
96989
|
*/
|
|
97041
96990
|
constraints: View2DConstraints;
|
|
96991
|
+
/**
|
|
96992
|
+
* The `id` or node representing the DOM element containing the view.
|
|
96993
|
+
*
|
|
96994
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#container Read more...}
|
|
96995
|
+
*/
|
|
96996
|
+
declare container: DOMContainer["container"];
|
|
97042
96997
|
/**
|
|
97043
96998
|
* The extent represents the visible portion of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html map} within the view as an instance of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent}.
|
|
97044
96999
|
*
|
|
@@ -97053,6 +97008,20 @@ declare namespace __esri {
|
|
|
97053
97008
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#floors Read more...}
|
|
97054
97009
|
*/
|
|
97055
97010
|
floors: Collection<string>;
|
|
97011
|
+
/**
|
|
97012
|
+
* Indicates if the browser focus is on the view.
|
|
97013
|
+
*
|
|
97014
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#focused Read more...}
|
|
97015
|
+
*/
|
|
97016
|
+
declare readonly focused: DOMContainer["focused"];
|
|
97017
|
+
/**
|
|
97018
|
+
* The height of the view in pixels read from the view container element.
|
|
97019
|
+
*
|
|
97020
|
+
* @default 0
|
|
97021
|
+
*
|
|
97022
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#height Read more...}
|
|
97023
|
+
*/
|
|
97024
|
+
declare readonly height: DOMContainer["height"];
|
|
97056
97025
|
/**
|
|
97057
97026
|
* A convenience property indicating the general size of the view's height.
|
|
97058
97027
|
*
|
|
@@ -97105,6 +97074,14 @@ declare namespace __esri {
|
|
|
97105
97074
|
| "top-right"
|
|
97106
97075
|
| "bottom-left"
|
|
97107
97076
|
| "bottom-right";
|
|
97077
|
+
/**
|
|
97078
|
+
* Indicates if the view is being resized.
|
|
97079
|
+
*
|
|
97080
|
+
* @default false
|
|
97081
|
+
*
|
|
97082
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#resizing Read more...}
|
|
97083
|
+
*/
|
|
97084
|
+
declare readonly resizing: DOMContainer["resizing"];
|
|
97108
97085
|
/**
|
|
97109
97086
|
* The clockwise rotation of due north in relation to the top of the view in degrees.
|
|
97110
97087
|
*
|
|
@@ -97119,6 +97096,12 @@ declare namespace __esri {
|
|
|
97119
97096
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#scale Read more...}
|
|
97120
97097
|
*/
|
|
97121
97098
|
scale: number;
|
|
97099
|
+
/**
|
|
97100
|
+
* An array containing the width and height of the view in pixels, e.g.
|
|
97101
|
+
*
|
|
97102
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#size Read more...}
|
|
97103
|
+
*/
|
|
97104
|
+
declare readonly size: DOMContainer["size"];
|
|
97122
97105
|
/**
|
|
97123
97106
|
* Indicates if the MapView's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#spatialReference spatialReference} can be changed after it is initialized.
|
|
97124
97107
|
*
|
|
@@ -97127,6 +97110,14 @@ declare namespace __esri {
|
|
|
97127
97110
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#spatialReferenceLocked Read more...}
|
|
97128
97111
|
*/
|
|
97129
97112
|
spatialReferenceLocked: boolean;
|
|
97113
|
+
/**
|
|
97114
|
+
* Indicates if the view is visible on the page.
|
|
97115
|
+
*
|
|
97116
|
+
* @default true
|
|
97117
|
+
*
|
|
97118
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#suspended Read more...}
|
|
97119
|
+
*/
|
|
97120
|
+
declare readonly suspended: DOMContainer["suspended"];
|
|
97130
97121
|
/**
|
|
97131
97122
|
* The tiling scheme information of the view.
|
|
97132
97123
|
*
|
|
@@ -97147,6 +97138,13 @@ declare namespace __esri {
|
|
|
97147
97138
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#type Read more...}
|
|
97148
97139
|
*/
|
|
97149
97140
|
readonly type: "2d";
|
|
97141
|
+
/**
|
|
97142
|
+
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
97143
|
+
* and off.
|
|
97144
|
+
*
|
|
97145
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#ui Read more...}
|
|
97146
|
+
*/
|
|
97147
|
+
declare ui: DOMContainer["ui"];
|
|
97150
97148
|
/**
|
|
97151
97149
|
* Represents the current view as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} or point of observation on the view.
|
|
97152
97150
|
*
|
|
@@ -97160,6 +97158,14 @@ declare namespace __esri {
|
|
|
97160
97158
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#visibleArea Read more...}
|
|
97161
97159
|
*/
|
|
97162
97160
|
readonly visibleArea: Polygon;
|
|
97161
|
+
/**
|
|
97162
|
+
* The width of the view in pixels read from the view container element.
|
|
97163
|
+
*
|
|
97164
|
+
* @default 0
|
|
97165
|
+
*
|
|
97166
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#width Read more...}
|
|
97167
|
+
*/
|
|
97168
|
+
declare readonly width: DOMContainer["width"];
|
|
97163
97169
|
/**
|
|
97164
97170
|
* A convenience property indicating the general size of the view's width.
|
|
97165
97171
|
*
|
|
@@ -97226,7 +97232,11 @@ declare namespace __esri {
|
|
|
97226
97232
|
toScreen(point: Point, options?: ToScreenOptions2D): MapViewScreenPoint;
|
|
97227
97233
|
}
|
|
97228
97234
|
|
|
97229
|
-
interface View2DProperties
|
|
97235
|
+
interface View2DProperties
|
|
97236
|
+
extends ViewProperties,
|
|
97237
|
+
BreakpointsOwnerProperties,
|
|
97238
|
+
PopupViewProperties,
|
|
97239
|
+
DOMContainerProperties {
|
|
97230
97240
|
/**
|
|
97231
97241
|
* The background color of the MapView.
|
|
97232
97242
|
*
|
|
@@ -97254,6 +97264,12 @@ declare namespace __esri {
|
|
|
97254
97264
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#constraints Read more...}
|
|
97255
97265
|
*/
|
|
97256
97266
|
constraints?: View2DConstraints;
|
|
97267
|
+
/**
|
|
97268
|
+
* The `id` or node representing the DOM element containing the view.
|
|
97269
|
+
*
|
|
97270
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#container Read more...}
|
|
97271
|
+
*/
|
|
97272
|
+
container?: DOMContainerProperties["container"];
|
|
97257
97273
|
/**
|
|
97258
97274
|
* The extent represents the visible portion of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html map} within the view as an instance of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent}.
|
|
97259
97275
|
*
|
|
@@ -97332,6 +97348,13 @@ declare namespace __esri {
|
|
|
97332
97348
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#timeZone Read more...}
|
|
97333
97349
|
*/
|
|
97334
97350
|
timeZone?: string;
|
|
97351
|
+
/**
|
|
97352
|
+
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
97353
|
+
* and off.
|
|
97354
|
+
*
|
|
97355
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#ui Read more...}
|
|
97356
|
+
*/
|
|
97357
|
+
ui?: DOMContainerProperties["ui"];
|
|
97335
97358
|
/**
|
|
97336
97359
|
* Represents the current view as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} or point of observation on the view.
|
|
97337
97360
|
*
|
|
@@ -97629,7 +97652,11 @@ declare namespace __esri {
|
|
|
97629
97652
|
| "raster"
|
|
97630
97653
|
| "guid"
|
|
97631
97654
|
| "global-id"
|
|
97632
|
-
| "xml"
|
|
97655
|
+
| "xml"
|
|
97656
|
+
| "big-integer"
|
|
97657
|
+
| "date-only"
|
|
97658
|
+
| "time-only"
|
|
97659
|
+
| "timestamp-offset";
|
|
97633
97660
|
|
|
97634
97661
|
/**
|
|
97635
97662
|
* Creates a deep clone of this object.
|
|
@@ -97671,7 +97698,11 @@ declare namespace __esri {
|
|
|
97671
97698
|
| "raster"
|
|
97672
97699
|
| "guid"
|
|
97673
97700
|
| "global-id"
|
|
97674
|
-
| "xml"
|
|
97701
|
+
| "xml"
|
|
97702
|
+
| "big-integer"
|
|
97703
|
+
| "date-only"
|
|
97704
|
+
| "time-only"
|
|
97705
|
+
| "timestamp-offset";
|
|
97675
97706
|
}
|
|
97676
97707
|
|
|
97677
97708
|
export class SearchTable extends Accessor {
|
|
@@ -97759,7 +97790,11 @@ declare namespace __esri {
|
|
|
97759
97790
|
| "raster"
|
|
97760
97791
|
| "guid"
|
|
97761
97792
|
| "global-id"
|
|
97762
|
-
| "xml"
|
|
97793
|
+
| "xml"
|
|
97794
|
+
| "big-integer"
|
|
97795
|
+
| "date-only"
|
|
97796
|
+
| "time-only"
|
|
97797
|
+
| "timestamp-offset";
|
|
97763
97798
|
|
|
97764
97799
|
/**
|
|
97765
97800
|
* Creates a deep clone of this object.
|
|
@@ -97801,7 +97836,11 @@ declare namespace __esri {
|
|
|
97801
97836
|
| "raster"
|
|
97802
97837
|
| "guid"
|
|
97803
97838
|
| "global-id"
|
|
97804
|
-
| "xml"
|
|
97839
|
+
| "xml"
|
|
97840
|
+
| "big-integer"
|
|
97841
|
+
| "date-only"
|
|
97842
|
+
| "time-only"
|
|
97843
|
+
| "timestamp-offset";
|
|
97805
97844
|
}
|
|
97806
97845
|
|
|
97807
97846
|
export class Viewing extends Accessor {
|
|
@@ -98588,9 +98627,9 @@ declare namespace __esri {
|
|
|
98588
98627
|
*
|
|
98589
98628
|
* @default null
|
|
98590
98629
|
*
|
|
98591
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webdoc-IPSInfo.html#
|
|
98630
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webdoc-IPSInfo.html#positioningService Read more...}
|
|
98592
98631
|
*/
|
|
98593
|
-
|
|
98632
|
+
positioningService: PositioningService;
|
|
98594
98633
|
|
|
98595
98634
|
/**
|
|
98596
98635
|
* Creates a deep clone of this object.
|
|
@@ -98621,9 +98660,9 @@ declare namespace __esri {
|
|
|
98621
98660
|
/**
|
|
98622
98661
|
* Defines the portal item for the positioning data service.
|
|
98623
98662
|
*
|
|
98624
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webdoc-IPSInfo.html#
|
|
98663
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webdoc-IPSInfo.html#positioningService Read more...}
|
|
98625
98664
|
*/
|
|
98626
|
-
|
|
98665
|
+
positioningService?: PositioningServiceProperties;
|
|
98627
98666
|
}
|
|
98628
98667
|
|
|
98629
98668
|
export interface TimeSlider extends Accessor, JSONSupport {}
|
|
@@ -99927,11 +99966,9 @@ declare namespace __esri {
|
|
|
99927
99966
|
/**
|
|
99928
99967
|
* Settings for defining the lighting of the scene.
|
|
99929
99968
|
*
|
|
99930
|
-
* @default SunLighting
|
|
99931
|
-
*
|
|
99932
99969
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webscene-Environment.html#lighting Read more...}
|
|
99933
99970
|
*/
|
|
99934
|
-
lighting:
|
|
99971
|
+
lighting: websceneSunLighting | websceneVirtualLighting;
|
|
99935
99972
|
/**
|
|
99936
99973
|
* Specifies whether stars should be displayed in the sky.
|
|
99937
99974
|
*
|
|
@@ -99975,7 +100012,9 @@ declare namespace __esri {
|
|
|
99975
100012
|
*
|
|
99976
100013
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webscene-Environment.html#lighting Read more...}
|
|
99977
100014
|
*/
|
|
99978
|
-
lighting?:
|
|
100015
|
+
lighting?:
|
|
100016
|
+
| (websceneSunLightingProperties & { type?: "sun" })
|
|
100017
|
+
| (websceneVirtualLightingProperties & { type: "virtual" });
|
|
99979
100018
|
/**
|
|
99980
100019
|
* Specifies whether stars should be displayed in the sky.
|
|
99981
100020
|
*
|
|
@@ -100611,17 +100650,6 @@ declare namespace __esri {
|
|
|
100611
100650
|
}
|
|
100612
100651
|
|
|
100613
100652
|
export class AreaMeasurement2DViewModel {
|
|
100614
|
-
/**
|
|
100615
|
-
* Threshold (in meters) which determines the method for computing and displaying areas and
|
|
100616
|
-
* perimeters in non-Web Mercator projected coordinate systems (PCS).
|
|
100617
|
-
*
|
|
100618
|
-
* @default null
|
|
100619
|
-
*
|
|
100620
|
-
* @deprecated since version 4.29.
|
|
100621
|
-
*
|
|
100622
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-AreaMeasurement2D-AreaMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
|
|
100623
|
-
*/
|
|
100624
|
-
geodesicDistanceThreshold: number;
|
|
100625
100653
|
/**
|
|
100626
100654
|
* The area and perimeter of the measurement polygon in square meters and meters respectively.
|
|
100627
100655
|
*
|
|
@@ -100684,8 +100712,8 @@ declare namespace __esri {
|
|
|
100684
100712
|
}
|
|
100685
100713
|
|
|
100686
100714
|
export interface AreaMeasurement2DViewModelMeasurementLabel {
|
|
100687
|
-
area:
|
|
100688
|
-
perimeter:
|
|
100715
|
+
area: string;
|
|
100716
|
+
perimeter: string;
|
|
100689
100717
|
}
|
|
100690
100718
|
|
|
100691
100719
|
export class AreaMeasurement3D extends Widget {
|
|
@@ -100972,7 +101000,7 @@ declare namespace __esri {
|
|
|
100972
101000
|
*
|
|
100973
101001
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html#attachmentInfos Read more...}
|
|
100974
101002
|
*/
|
|
100975
|
-
readonly attachmentInfos: AttachmentInfo
|
|
101003
|
+
readonly attachmentInfos: Collection<AttachmentInfo>;
|
|
100976
101004
|
/**
|
|
100977
101005
|
* Configures the attachment editing functionality that can be performed by the user.
|
|
100978
101006
|
*
|
|
@@ -101056,7 +101084,7 @@ declare namespace __esri {
|
|
|
101056
101084
|
*/
|
|
101057
101085
|
export interface AttachmentsCapabilities {
|
|
101058
101086
|
editing?: boolean;
|
|
101059
|
-
operations?: AttachmentsCapabilitiesOperations
|
|
101087
|
+
operations?: AttachmentsCapabilitiesOperations;
|
|
101060
101088
|
}
|
|
101061
101089
|
|
|
101062
101090
|
export interface AttachmentsCapabilitiesOperations {
|
|
@@ -101186,7 +101214,7 @@ declare namespace __esri {
|
|
|
101186
101214
|
*/
|
|
101187
101215
|
export interface AttributionItem {
|
|
101188
101216
|
text: string;
|
|
101189
|
-
|
|
101217
|
+
layerView: LayerView;
|
|
101190
101218
|
}
|
|
101191
101219
|
|
|
101192
101220
|
export class BasemapGallery extends Widget {
|
|
@@ -102249,9 +102277,9 @@ declare namespace __esri {
|
|
|
102249
102277
|
*
|
|
102250
102278
|
* @param elementId The elementId of the input field to find.
|
|
102251
102279
|
*
|
|
102252
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#
|
|
102280
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#findFieldInput Read more...}
|
|
102253
102281
|
*/
|
|
102254
|
-
|
|
102282
|
+
findFieldInput(elementId: string): any;
|
|
102255
102283
|
/**
|
|
102256
102284
|
* The method used to get the updated field value.
|
|
102257
102285
|
*
|
|
@@ -102260,6 +102288,12 @@ declare namespace __esri {
|
|
|
102260
102288
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#getFieldInputValue Read more...}
|
|
102261
102289
|
*/
|
|
102262
102290
|
getFieldInputValue(elementId: string): any;
|
|
102291
|
+
/**
|
|
102292
|
+
* Fires the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#event-submit submit} event.
|
|
102293
|
+
*
|
|
102294
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#submit Read more...}
|
|
102295
|
+
*/
|
|
102296
|
+
submit(): void;
|
|
102263
102297
|
}
|
|
102264
102298
|
|
|
102265
102299
|
export const BatchAttributeFormViewModel: BatchAttributeFormViewModel;
|
|
@@ -105350,17 +105384,6 @@ declare namespace __esri {
|
|
|
105350
105384
|
|
|
105351
105385
|
constructor(properties?: DistanceMeasurement2DViewModelProperties);
|
|
105352
105386
|
|
|
105353
|
-
/**
|
|
105354
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
105355
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
105356
|
-
*
|
|
105357
|
-
* @default null
|
|
105358
|
-
*
|
|
105359
|
-
* @deprecated since version 4.29.
|
|
105360
|
-
*
|
|
105361
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D-DistanceMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
|
|
105362
|
-
*/
|
|
105363
|
-
geodesicDistanceThreshold: number;
|
|
105364
105387
|
/**
|
|
105365
105388
|
* The length and geometry of the measurement polyline in meters.
|
|
105366
105389
|
*
|
|
@@ -105415,15 +105438,6 @@ declare namespace __esri {
|
|
|
105415
105438
|
}
|
|
105416
105439
|
|
|
105417
105440
|
interface DistanceMeasurement2DViewModelProperties {
|
|
105418
|
-
/**
|
|
105419
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
105420
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
105421
|
-
*
|
|
105422
|
-
* @deprecated since version 4.29.
|
|
105423
|
-
*
|
|
105424
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D-DistanceMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
|
|
105425
|
-
*/
|
|
105426
|
-
geodesicDistanceThreshold?: number;
|
|
105427
105441
|
/**
|
|
105428
105442
|
* Unit system (imperial, metric) or specific unit used for displaying the distance values.
|
|
105429
105443
|
*
|
|
@@ -106665,17 +106679,6 @@ declare namespace __esri {
|
|
|
106665
106679
|
|
|
106666
106680
|
constructor(properties?: ElevationProfileProperties);
|
|
106667
106681
|
|
|
106668
|
-
/**
|
|
106669
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
106670
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
106671
|
-
*
|
|
106672
|
-
* @default null
|
|
106673
|
-
*
|
|
106674
|
-
* @deprecated since version 4.29.
|
|
106675
|
-
*
|
|
106676
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#geodesicDistanceThreshold Read more...}
|
|
106677
|
-
*/
|
|
106678
|
-
geodesicDistanceThreshold: number;
|
|
106679
106682
|
/**
|
|
106680
106683
|
* The input line graphic along which elevation will be queried in order to generate an elevation profile.
|
|
106681
106684
|
*
|
|
@@ -106726,15 +106729,6 @@ declare namespace __esri {
|
|
|
106726
106729
|
}
|
|
106727
106730
|
|
|
106728
106731
|
interface ElevationProfileProperties extends WidgetProperties {
|
|
106729
|
-
/**
|
|
106730
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
106731
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
106732
|
-
*
|
|
106733
|
-
* @deprecated since version 4.29.
|
|
106734
|
-
*
|
|
106735
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#geodesicDistanceThreshold Read more...}
|
|
106736
|
-
*/
|
|
106737
|
-
geodesicDistanceThreshold?: number;
|
|
106738
106732
|
/**
|
|
106739
106733
|
* The input line graphic along which elevation will be queried in order to generate an elevation profile.
|
|
106740
106734
|
*
|
|
@@ -107100,17 +107094,6 @@ declare namespace __esri {
|
|
|
107100
107094
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#effectiveUnits Read more...}
|
|
107101
107095
|
*/
|
|
107102
107096
|
readonly effectiveUnits: EffectiveUnits;
|
|
107103
|
-
/**
|
|
107104
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
107105
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
107106
|
-
*
|
|
107107
|
-
* @default null
|
|
107108
|
-
*
|
|
107109
|
-
* @deprecated since version 4.29.
|
|
107110
|
-
*
|
|
107111
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#geodesicDistanceThreshold Read more...}
|
|
107112
|
-
*/
|
|
107113
|
-
geodesicDistanceThreshold: number;
|
|
107114
107097
|
/**
|
|
107115
107098
|
* Whether the graphic used as {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#input input}
|
|
107116
107099
|
* is highlighted.
|
|
@@ -107214,15 +107197,6 @@ declare namespace __esri {
|
|
|
107214
107197
|
}
|
|
107215
107198
|
|
|
107216
107199
|
interface ElevationProfileViewModelProperties {
|
|
107217
|
-
/**
|
|
107218
|
-
* Threshold (in meters) which determines the method for computing and displaying distances in
|
|
107219
|
-
* non-Web Mercator projected coordinate systems (PCS).
|
|
107220
|
-
*
|
|
107221
|
-
* @deprecated since version 4.29.
|
|
107222
|
-
*
|
|
107223
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#geodesicDistanceThreshold Read more...}
|
|
107224
|
-
*/
|
|
107225
|
-
geodesicDistanceThreshold?: number;
|
|
107226
107200
|
/**
|
|
107227
107201
|
* Whether the graphic used as {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#input input}
|
|
107228
107202
|
* is highlighted.
|
|
@@ -115162,7 +115136,7 @@ declare namespace __esri {
|
|
|
115162
115136
|
*
|
|
115163
115137
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer Read more...}
|
|
115164
115138
|
*/
|
|
115165
|
-
layer: Layer;
|
|
115139
|
+
layer: Layer | Sublayer | SubtypeSublayer;
|
|
115166
115140
|
/**
|
|
115167
115141
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} displaying data for the
|
|
115168
115142
|
* associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer layer}.
|
|
@@ -115318,7 +115292,10 @@ declare namespace __esri {
|
|
|
115318
115292
|
*
|
|
115319
115293
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer Read more...}
|
|
115320
115294
|
*/
|
|
115321
|
-
layer?:
|
|
115295
|
+
layer?:
|
|
115296
|
+
| LayerProperties
|
|
115297
|
+
| (SublayerProperties & { type: "sublayer" })
|
|
115298
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
115322
115299
|
/**
|
|
115323
115300
|
* Specifies whether to ignore the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html#listMode listMode} property of the child layers in the list item.
|
|
115324
115301
|
*
|
|
@@ -115454,7 +115431,12 @@ declare namespace __esri {
|
|
|
115454
115431
|
*
|
|
115455
115432
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItemPanel.html#content Read more...}
|
|
115456
115433
|
*/
|
|
115457
|
-
content?:
|
|
115434
|
+
content?:
|
|
115435
|
+
| WidgetProperties
|
|
115436
|
+
| HTMLElement
|
|
115437
|
+
| string
|
|
115438
|
+
| "legend"
|
|
115439
|
+
| (WidgetProperties | HTMLElement | string | "legend")[];
|
|
115458
115440
|
/**
|
|
115459
115441
|
* If `true`, disables the ListItem's panel so the user cannot open or interact with it.
|
|
115460
115442
|
*
|
|
@@ -115498,7 +115480,7 @@ declare namespace __esri {
|
|
|
115498
115480
|
*
|
|
115499
115481
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItemPanel.html#LayerListItemPanelContent Read more...}
|
|
115500
115482
|
*/
|
|
115501
|
-
export type LayerListItemPanelContent = Widget | HTMLElement | string;
|
|
115483
|
+
export type LayerListItemPanelContent = Widget | HTMLElement | string | "legend";
|
|
115502
115484
|
|
|
115503
115485
|
export interface LayerListCatalogOptions {
|
|
115504
115486
|
filterPlaceholder?: string;
|
|
@@ -138529,6 +138511,11 @@ declare module "esri/applications/Components/previewSymbol2D" {
|
|
|
138529
138511
|
export = previewSymbol2D;
|
|
138530
138512
|
}
|
|
138531
138513
|
|
|
138514
|
+
declare module "esri/applications/Components/reactiveUtils" {
|
|
138515
|
+
import ComponentsReactiveUtils = __esri.ComponentsReactiveUtils;
|
|
138516
|
+
export = ComponentsReactiveUtils;
|
|
138517
|
+
}
|
|
138518
|
+
|
|
138532
138519
|
declare module "esri/applications/Components/SelectionOperation" {
|
|
138533
138520
|
import SelectionOperation = __esri.SelectionOperation;
|
|
138534
138521
|
export = SelectionOperation;
|