@arcgis/core-adapter 4.32.0-next.30 → 4.32.0-next.32
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/arcgis.d.ts +202 -153
package/support/arcgis.d.ts
CHANGED
|
@@ -93606,7 +93606,7 @@ declare namespace __esri {
|
|
|
93606
93606
|
export interface KMLLayerViewMapImage {
|
|
93607
93607
|
id: number;
|
|
93608
93608
|
href: string;
|
|
93609
|
-
|
|
93609
|
+
extent: Extent;
|
|
93610
93610
|
rotation: number;
|
|
93611
93611
|
}
|
|
93612
93612
|
|
|
@@ -95248,7 +95248,7 @@ declare namespace __esri {
|
|
|
95248
95248
|
shouldFocus?: boolean;
|
|
95249
95249
|
}
|
|
95250
95250
|
|
|
95251
|
-
export interface SceneView extends View, BreakpointsOwner, PopupView {}
|
|
95251
|
+
export interface SceneView extends View, BreakpointsOwner, PopupView, DOMContainer {}
|
|
95252
95252
|
|
|
95253
95253
|
export class SceneView {
|
|
95254
95254
|
/**
|
|
@@ -95315,6 +95315,12 @@ declare namespace __esri {
|
|
|
95315
95315
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#constraints Read more...}
|
|
95316
95316
|
*/
|
|
95317
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"];
|
|
95318
95324
|
/**
|
|
95319
95325
|
* Specifies various properties of the environment's visualization in the view.
|
|
95320
95326
|
*
|
|
@@ -95336,12 +95342,26 @@ declare namespace __esri {
|
|
|
95336
95342
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#floors Read more...}
|
|
95337
95343
|
*/
|
|
95338
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"];
|
|
95339
95351
|
/**
|
|
95340
95352
|
* The view for the ground of the map.
|
|
95341
95353
|
*
|
|
95342
95354
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#groundView Read more...}
|
|
95343
95355
|
*/
|
|
95344
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"];
|
|
95345
95365
|
/**
|
|
95346
95366
|
* A convenience property indicating the general size of the view's height.
|
|
95347
95367
|
*
|
|
@@ -95388,12 +95408,34 @@ declare namespace __esri {
|
|
|
95388
95408
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#qualityProfile Read more...}
|
|
95389
95409
|
*/
|
|
95390
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"];
|
|
95391
95419
|
/**
|
|
95392
95420
|
* Represents an approximation of the map scale.
|
|
95393
95421
|
*
|
|
95394
95422
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale Read more...}
|
|
95395
95423
|
*/
|
|
95396
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"];
|
|
95397
95439
|
/**
|
|
95398
95440
|
* The tiling scheme information of the view.
|
|
95399
95441
|
*
|
|
@@ -95406,6 +95448,13 @@ declare namespace __esri {
|
|
|
95406
95448
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#type Read more...}
|
|
95407
95449
|
*/
|
|
95408
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"];
|
|
95409
95458
|
/**
|
|
95410
95459
|
* The viewing mode (`local` or `global`).
|
|
95411
95460
|
*
|
|
@@ -95428,6 +95477,14 @@ declare namespace __esri {
|
|
|
95428
95477
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#visibleArea Read more...}
|
|
95429
95478
|
*/
|
|
95430
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"];
|
|
95431
95488
|
/**
|
|
95432
95489
|
* A convenience property indicating the general size of the view's width.
|
|
95433
95490
|
*
|
|
@@ -95548,7 +95605,11 @@ declare namespace __esri {
|
|
|
95548
95605
|
>;
|
|
95549
95606
|
}
|
|
95550
95607
|
|
|
95551
|
-
interface SceneViewProperties
|
|
95608
|
+
interface SceneViewProperties
|
|
95609
|
+
extends ViewProperties,
|
|
95610
|
+
BreakpointsOwnerProperties,
|
|
95611
|
+
PopupViewProperties,
|
|
95612
|
+
DOMContainerProperties {
|
|
95552
95613
|
/**
|
|
95553
95614
|
* Allows the view to be partially or fully transparent when composited with the webpage elements behind it.
|
|
95554
95615
|
*
|
|
@@ -95602,6 +95663,12 @@ declare namespace __esri {
|
|
|
95602
95663
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#constraints Read more...}
|
|
95603
95664
|
*/
|
|
95604
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"];
|
|
95605
95672
|
/**
|
|
95606
95673
|
* Specifies various properties of the environment's visualization in the view.
|
|
95607
95674
|
*
|
|
@@ -95658,6 +95725,13 @@ declare namespace __esri {
|
|
|
95658
95725
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale Read more...}
|
|
95659
95726
|
*/
|
|
95660
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"];
|
|
95661
95735
|
/**
|
|
95662
95736
|
* The viewing mode (`local` or `global`).
|
|
95663
95737
|
*
|
|
@@ -96230,7 +96304,7 @@ declare namespace __esri {
|
|
|
96230
96304
|
| "top-trailing"
|
|
96231
96305
|
| "manual";
|
|
96232
96306
|
|
|
96233
|
-
export interface View extends Accessor, corePromise, Evented
|
|
96307
|
+
export interface View extends Accessor, corePromise, Evented {}
|
|
96234
96308
|
|
|
96235
96309
|
export class View {
|
|
96236
96310
|
/**
|
|
@@ -96260,12 +96334,6 @@ declare namespace __esri {
|
|
|
96260
96334
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#basemapView Read more...}
|
|
96261
96335
|
*/
|
|
96262
96336
|
basemapView: BasemapView;
|
|
96263
|
-
/**
|
|
96264
|
-
* The `id` or node representing the DOM element containing the view.
|
|
96265
|
-
*
|
|
96266
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#container Read more...}
|
|
96267
|
-
*/
|
|
96268
|
-
declare container: DOMContainer["container"];
|
|
96269
96337
|
/**
|
|
96270
96338
|
* A fatal {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html error} returned
|
|
96271
96339
|
* when the view loses its WebGL context.
|
|
@@ -96273,26 +96341,12 @@ declare namespace __esri {
|
|
|
96273
96341
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#fatalError Read more...}
|
|
96274
96342
|
*/
|
|
96275
96343
|
fatalError: Error;
|
|
96276
|
-
/**
|
|
96277
|
-
* Indicates if the browser focus is on the view.
|
|
96278
|
-
*
|
|
96279
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#focused Read more...}
|
|
96280
|
-
*/
|
|
96281
|
-
declare readonly focused: DOMContainer["focused"];
|
|
96282
96344
|
/**
|
|
96283
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.
|
|
96284
96346
|
*
|
|
96285
96347
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#graphics Read more...}
|
|
96286
96348
|
*/
|
|
96287
96349
|
graphics: Collection<Graphic>;
|
|
96288
|
-
/**
|
|
96289
|
-
* The height of the view in pixels read from the view container element.
|
|
96290
|
-
*
|
|
96291
|
-
* @default 0
|
|
96292
|
-
*
|
|
96293
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#height Read more...}
|
|
96294
|
-
*/
|
|
96295
|
-
declare readonly height: DOMContainer["height"];
|
|
96296
96350
|
/**
|
|
96297
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.
|
|
96298
96352
|
*
|
|
@@ -96356,21 +96410,6 @@ declare namespace __esri {
|
|
|
96356
96410
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#padding Read more...}
|
|
96357
96411
|
*/
|
|
96358
96412
|
padding: ViewPadding;
|
|
96359
|
-
/**
|
|
96360
|
-
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html Popup} object that displays general content or attributes from
|
|
96361
|
-
* {@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}.
|
|
96362
|
-
*
|
|
96363
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popup Read more...}
|
|
96364
|
-
*/
|
|
96365
|
-
declare popup: PopupView["popup"];
|
|
96366
|
-
/**
|
|
96367
|
-
* Controls whether the popup opens when users click on the view.
|
|
96368
|
-
*
|
|
96369
|
-
* @default true
|
|
96370
|
-
*
|
|
96371
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popupEnabled Read more...}
|
|
96372
|
-
*/
|
|
96373
|
-
declare popupEnabled: PopupView["popupEnabled"];
|
|
96374
96413
|
/**
|
|
96375
96414
|
* When `true`, this property indicates whether the view successfully satisfied all dependencies,
|
|
96376
96415
|
* signaling that the following conditions are met.
|
|
@@ -96380,26 +96419,12 @@ declare namespace __esri {
|
|
|
96380
96419
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ready Read more...}
|
|
96381
96420
|
*/
|
|
96382
96421
|
readonly ready: boolean;
|
|
96383
|
-
/**
|
|
96384
|
-
* Indicates if the view is being resized.
|
|
96385
|
-
*
|
|
96386
|
-
* @default false
|
|
96387
|
-
*
|
|
96388
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#resizing Read more...}
|
|
96389
|
-
*/
|
|
96390
|
-
declare readonly resizing: DOMContainer["resizing"];
|
|
96391
96422
|
/**
|
|
96392
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}.
|
|
96393
96424
|
*
|
|
96394
96425
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#resolution Read more...}
|
|
96395
96426
|
*/
|
|
96396
96427
|
readonly resolution: number;
|
|
96397
|
-
/**
|
|
96398
|
-
* An array containing the width and height of the view in pixels, e.g.
|
|
96399
|
-
*
|
|
96400
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#size Read more...}
|
|
96401
|
-
*/
|
|
96402
|
-
declare readonly size: DOMContainer["size"];
|
|
96403
96428
|
/**
|
|
96404
96429
|
* The spatial reference of the view.
|
|
96405
96430
|
*
|
|
@@ -96414,14 +96439,6 @@ declare namespace __esri {
|
|
|
96414
96439
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#stationary Read more...}
|
|
96415
96440
|
*/
|
|
96416
96441
|
readonly stationary: boolean;
|
|
96417
|
-
/**
|
|
96418
|
-
* Indicates if the view is visible on the page.
|
|
96419
|
-
*
|
|
96420
|
-
* @default true
|
|
96421
|
-
*
|
|
96422
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#suspended Read more...}
|
|
96423
|
-
*/
|
|
96424
|
-
declare readonly suspended: DOMContainer["suspended"];
|
|
96425
96442
|
/**
|
|
96426
96443
|
* This property specifies the base colors used by some widgets and components to render graphics and labels.
|
|
96427
96444
|
*
|
|
@@ -96446,13 +96463,6 @@ declare namespace __esri {
|
|
|
96446
96463
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#type Read more...}
|
|
96447
96464
|
*/
|
|
96448
96465
|
readonly type: string;
|
|
96449
|
-
/**
|
|
96450
|
-
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
96451
|
-
* and off.
|
|
96452
|
-
*
|
|
96453
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ui Read more...}
|
|
96454
|
-
*/
|
|
96455
|
-
declare ui: DOMContainer["ui"];
|
|
96456
96466
|
/**
|
|
96457
96467
|
* Indicates whether the view is being updated by additional data requests to the network,
|
|
96458
96468
|
* or by processing received data.
|
|
@@ -96462,21 +96472,7 @@ declare namespace __esri {
|
|
|
96462
96472
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#updating Read more...}
|
|
96463
96473
|
*/
|
|
96464
96474
|
readonly updating: boolean;
|
|
96465
|
-
/**
|
|
96466
|
-
* The width of the view in pixels read from the view container element.
|
|
96467
|
-
*
|
|
96468
|
-
* @default 0
|
|
96469
|
-
*
|
|
96470
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#width Read more...}
|
|
96471
|
-
*/
|
|
96472
|
-
declare readonly width: DOMContainer["width"];
|
|
96473
96475
|
|
|
96474
|
-
/**
|
|
96475
|
-
* Closes the popup.
|
|
96476
|
-
*
|
|
96477
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#closePopup Read more...}
|
|
96478
|
-
*/
|
|
96479
|
-
closePopup(): void;
|
|
96480
96476
|
/**
|
|
96481
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.
|
|
96482
96478
|
*
|
|
@@ -96525,25 +96521,6 @@ declare namespace __esri {
|
|
|
96525
96521
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#isResolved Read more...}
|
|
96526
96522
|
*/
|
|
96527
96523
|
isResolved(): boolean;
|
|
96528
|
-
/**
|
|
96529
|
-
* Opens the popup at the given location with content defined either explicitly with `content`
|
|
96530
|
-
* or driven from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html PopupTemplate} of input features.
|
|
96531
|
-
*
|
|
96532
|
-
* @param options Defines the location and content of the popup when opened.
|
|
96533
|
-
* @param options.title Sets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#title title} of the popup.
|
|
96534
|
-
* @param options.content Sets the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#content content} of the popup.
|
|
96535
|
-
* @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.
|
|
96536
|
-
* @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.
|
|
96537
|
-
* @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}.
|
|
96538
|
-
* @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}.
|
|
96539
|
-
* @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.
|
|
96540
|
-
* @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.
|
|
96541
|
-
* @param options.collapsed When `true`, indicates that only the popup header will display.
|
|
96542
|
-
* @param options.shouldFocus When `true`, indicates that the focus should be on the popup after it has been opened.
|
|
96543
|
-
*
|
|
96544
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#openPopup Read more...}
|
|
96545
|
-
*/
|
|
96546
|
-
openPopup(options?: PopupViewOpenPopupOptions): Promise<any>;
|
|
96547
96524
|
/**
|
|
96548
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.
|
|
96549
96526
|
*
|
|
@@ -96649,7 +96626,7 @@ declare namespace __esri {
|
|
|
96649
96626
|
static readonly views: Collection<View>;
|
|
96650
96627
|
}
|
|
96651
96628
|
|
|
96652
|
-
interface ViewProperties
|
|
96629
|
+
interface ViewProperties {
|
|
96653
96630
|
/**
|
|
96654
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}
|
|
96655
96632
|
* related to the basemap, operational layers, and group layers in this view.
|
|
@@ -96669,12 +96646,6 @@ declare namespace __esri {
|
|
|
96669
96646
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#basemapView Read more...}
|
|
96670
96647
|
*/
|
|
96671
96648
|
basemapView?: BasemapViewProperties;
|
|
96672
|
-
/**
|
|
96673
|
-
* The `id` or node representing the DOM element containing the view.
|
|
96674
|
-
*
|
|
96675
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#container Read more...}
|
|
96676
|
-
*/
|
|
96677
|
-
container?: DOMContainerProperties["container"];
|
|
96678
96649
|
/**
|
|
96679
96650
|
* A fatal {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html error} returned
|
|
96680
96651
|
* when the view loses its WebGL context.
|
|
@@ -96721,19 +96692,6 @@ declare namespace __esri {
|
|
|
96721
96692
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#padding Read more...}
|
|
96722
96693
|
*/
|
|
96723
96694
|
padding?: ViewPadding;
|
|
96724
|
-
/**
|
|
96725
|
-
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html Popup} object that displays general content or attributes from
|
|
96726
|
-
* {@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}.
|
|
96727
|
-
*
|
|
96728
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popup Read more...}
|
|
96729
|
-
*/
|
|
96730
|
-
popup?: PopupViewProperties["popup"];
|
|
96731
|
-
/**
|
|
96732
|
-
* Controls whether the popup opens when users click on the view.
|
|
96733
|
-
*
|
|
96734
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#popupEnabled Read more...}
|
|
96735
|
-
*/
|
|
96736
|
-
popupEnabled?: PopupViewProperties["popupEnabled"];
|
|
96737
96695
|
/**
|
|
96738
96696
|
* The spatial reference of the view.
|
|
96739
96697
|
*
|
|
@@ -96752,13 +96710,6 @@ declare namespace __esri {
|
|
|
96752
96710
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#timeExtent Read more...}
|
|
96753
96711
|
*/
|
|
96754
96712
|
timeExtent?: TimeExtentProperties;
|
|
96755
|
-
/**
|
|
96756
|
-
* Exposes the default widgets available in the view and allows you to toggle them on
|
|
96757
|
-
* and off.
|
|
96758
|
-
*
|
|
96759
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#ui Read more...}
|
|
96760
|
-
*/
|
|
96761
|
-
ui?: DOMContainerProperties["ui"];
|
|
96762
96713
|
}
|
|
96763
96714
|
|
|
96764
96715
|
export interface ViewBlurEvent {
|
|
@@ -96997,7 +96948,7 @@ declare namespace __esri {
|
|
|
96997
96948
|
bottom?: number;
|
|
96998
96949
|
}
|
|
96999
96950
|
|
|
97000
|
-
export interface View2D extends View, BreakpointsOwner, PopupView {}
|
|
96951
|
+
export interface View2D extends View, BreakpointsOwner, PopupView, DOMContainer {}
|
|
97001
96952
|
|
|
97002
96953
|
export class View2D {
|
|
97003
96954
|
/**
|
|
@@ -97037,6 +96988,12 @@ declare namespace __esri {
|
|
|
97037
96988
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#constraints Read more...}
|
|
97038
96989
|
*/
|
|
97039
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"];
|
|
97040
96997
|
/**
|
|
97041
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}.
|
|
97042
96999
|
*
|
|
@@ -97051,6 +97008,20 @@ declare namespace __esri {
|
|
|
97051
97008
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#floors Read more...}
|
|
97052
97009
|
*/
|
|
97053
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"];
|
|
97054
97025
|
/**
|
|
97055
97026
|
* A convenience property indicating the general size of the view's height.
|
|
97056
97027
|
*
|
|
@@ -97103,6 +97074,14 @@ declare namespace __esri {
|
|
|
97103
97074
|
| "top-right"
|
|
97104
97075
|
| "bottom-left"
|
|
97105
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"];
|
|
97106
97085
|
/**
|
|
97107
97086
|
* The clockwise rotation of due north in relation to the top of the view in degrees.
|
|
97108
97087
|
*
|
|
@@ -97117,6 +97096,12 @@ declare namespace __esri {
|
|
|
97117
97096
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#scale Read more...}
|
|
97118
97097
|
*/
|
|
97119
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"];
|
|
97120
97105
|
/**
|
|
97121
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.
|
|
97122
97107
|
*
|
|
@@ -97125,6 +97110,14 @@ declare namespace __esri {
|
|
|
97125
97110
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#spatialReferenceLocked Read more...}
|
|
97126
97111
|
*/
|
|
97127
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"];
|
|
97128
97121
|
/**
|
|
97129
97122
|
* The tiling scheme information of the view.
|
|
97130
97123
|
*
|
|
@@ -97145,6 +97138,13 @@ declare namespace __esri {
|
|
|
97145
97138
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#type Read more...}
|
|
97146
97139
|
*/
|
|
97147
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"];
|
|
97148
97148
|
/**
|
|
97149
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.
|
|
97150
97150
|
*
|
|
@@ -97158,6 +97158,14 @@ declare namespace __esri {
|
|
|
97158
97158
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#visibleArea Read more...}
|
|
97159
97159
|
*/
|
|
97160
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"];
|
|
97161
97169
|
/**
|
|
97162
97170
|
* A convenience property indicating the general size of the view's width.
|
|
97163
97171
|
*
|
|
@@ -97224,7 +97232,11 @@ declare namespace __esri {
|
|
|
97224
97232
|
toScreen(point: Point, options?: ToScreenOptions2D): MapViewScreenPoint;
|
|
97225
97233
|
}
|
|
97226
97234
|
|
|
97227
|
-
interface View2DProperties
|
|
97235
|
+
interface View2DProperties
|
|
97236
|
+
extends ViewProperties,
|
|
97237
|
+
BreakpointsOwnerProperties,
|
|
97238
|
+
PopupViewProperties,
|
|
97239
|
+
DOMContainerProperties {
|
|
97228
97240
|
/**
|
|
97229
97241
|
* The background color of the MapView.
|
|
97230
97242
|
*
|
|
@@ -97252,6 +97264,12 @@ declare namespace __esri {
|
|
|
97252
97264
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#constraints Read more...}
|
|
97253
97265
|
*/
|
|
97254
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"];
|
|
97255
97273
|
/**
|
|
97256
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}.
|
|
97257
97275
|
*
|
|
@@ -97330,6 +97348,13 @@ declare namespace __esri {
|
|
|
97330
97348
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#timeZone Read more...}
|
|
97331
97349
|
*/
|
|
97332
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"];
|
|
97333
97358
|
/**
|
|
97334
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.
|
|
97335
97360
|
*
|
|
@@ -97627,7 +97652,11 @@ declare namespace __esri {
|
|
|
97627
97652
|
| "raster"
|
|
97628
97653
|
| "guid"
|
|
97629
97654
|
| "global-id"
|
|
97630
|
-
| "xml"
|
|
97655
|
+
| "xml"
|
|
97656
|
+
| "big-integer"
|
|
97657
|
+
| "date-only"
|
|
97658
|
+
| "time-only"
|
|
97659
|
+
| "timestamp-offset";
|
|
97631
97660
|
|
|
97632
97661
|
/**
|
|
97633
97662
|
* Creates a deep clone of this object.
|
|
@@ -97669,7 +97698,11 @@ declare namespace __esri {
|
|
|
97669
97698
|
| "raster"
|
|
97670
97699
|
| "guid"
|
|
97671
97700
|
| "global-id"
|
|
97672
|
-
| "xml"
|
|
97701
|
+
| "xml"
|
|
97702
|
+
| "big-integer"
|
|
97703
|
+
| "date-only"
|
|
97704
|
+
| "time-only"
|
|
97705
|
+
| "timestamp-offset";
|
|
97673
97706
|
}
|
|
97674
97707
|
|
|
97675
97708
|
export class SearchTable extends Accessor {
|
|
@@ -97757,7 +97790,11 @@ declare namespace __esri {
|
|
|
97757
97790
|
| "raster"
|
|
97758
97791
|
| "guid"
|
|
97759
97792
|
| "global-id"
|
|
97760
|
-
| "xml"
|
|
97793
|
+
| "xml"
|
|
97794
|
+
| "big-integer"
|
|
97795
|
+
| "date-only"
|
|
97796
|
+
| "time-only"
|
|
97797
|
+
| "timestamp-offset";
|
|
97761
97798
|
|
|
97762
97799
|
/**
|
|
97763
97800
|
* Creates a deep clone of this object.
|
|
@@ -97799,7 +97836,11 @@ declare namespace __esri {
|
|
|
97799
97836
|
| "raster"
|
|
97800
97837
|
| "guid"
|
|
97801
97838
|
| "global-id"
|
|
97802
|
-
| "xml"
|
|
97839
|
+
| "xml"
|
|
97840
|
+
| "big-integer"
|
|
97841
|
+
| "date-only"
|
|
97842
|
+
| "time-only"
|
|
97843
|
+
| "timestamp-offset";
|
|
97803
97844
|
}
|
|
97804
97845
|
|
|
97805
97846
|
export class Viewing extends Accessor {
|
|
@@ -98586,9 +98627,9 @@ declare namespace __esri {
|
|
|
98586
98627
|
*
|
|
98587
98628
|
* @default null
|
|
98588
98629
|
*
|
|
98589
|
-
* {@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...}
|
|
98590
98631
|
*/
|
|
98591
|
-
|
|
98632
|
+
positioningService: PositioningService;
|
|
98592
98633
|
|
|
98593
98634
|
/**
|
|
98594
98635
|
* Creates a deep clone of this object.
|
|
@@ -98619,9 +98660,9 @@ declare namespace __esri {
|
|
|
98619
98660
|
/**
|
|
98620
98661
|
* Defines the portal item for the positioning data service.
|
|
98621
98662
|
*
|
|
98622
|
-
* {@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...}
|
|
98623
98664
|
*/
|
|
98624
|
-
|
|
98665
|
+
positioningService?: PositioningServiceProperties;
|
|
98625
98666
|
}
|
|
98626
98667
|
|
|
98627
98668
|
export interface TimeSlider extends Accessor, JSONSupport {}
|
|
@@ -99925,11 +99966,9 @@ declare namespace __esri {
|
|
|
99925
99966
|
/**
|
|
99926
99967
|
* Settings for defining the lighting of the scene.
|
|
99927
99968
|
*
|
|
99928
|
-
* @default SunLighting
|
|
99929
|
-
*
|
|
99930
99969
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webscene-Environment.html#lighting Read more...}
|
|
99931
99970
|
*/
|
|
99932
|
-
lighting:
|
|
99971
|
+
lighting: websceneSunLighting | websceneVirtualLighting;
|
|
99933
99972
|
/**
|
|
99934
99973
|
* Specifies whether stars should be displayed in the sky.
|
|
99935
99974
|
*
|
|
@@ -99973,7 +100012,9 @@ declare namespace __esri {
|
|
|
99973
100012
|
*
|
|
99974
100013
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-webscene-Environment.html#lighting Read more...}
|
|
99975
100014
|
*/
|
|
99976
|
-
lighting?:
|
|
100015
|
+
lighting?:
|
|
100016
|
+
| (websceneSunLightingProperties & { type?: "sun" })
|
|
100017
|
+
| (websceneVirtualLightingProperties & { type: "virtual" });
|
|
99977
100018
|
/**
|
|
99978
100019
|
* Specifies whether stars should be displayed in the sky.
|
|
99979
100020
|
*
|
|
@@ -100671,8 +100712,8 @@ declare namespace __esri {
|
|
|
100671
100712
|
}
|
|
100672
100713
|
|
|
100673
100714
|
export interface AreaMeasurement2DViewModelMeasurementLabel {
|
|
100674
|
-
area:
|
|
100675
|
-
perimeter:
|
|
100715
|
+
area: string;
|
|
100716
|
+
perimeter: string;
|
|
100676
100717
|
}
|
|
100677
100718
|
|
|
100678
100719
|
export class AreaMeasurement3D extends Widget {
|
|
@@ -100959,7 +101000,7 @@ declare namespace __esri {
|
|
|
100959
101000
|
*
|
|
100960
101001
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html#attachmentInfos Read more...}
|
|
100961
101002
|
*/
|
|
100962
|
-
readonly attachmentInfos: AttachmentInfo
|
|
101003
|
+
readonly attachmentInfos: Collection<AttachmentInfo>;
|
|
100963
101004
|
/**
|
|
100964
101005
|
* Configures the attachment editing functionality that can be performed by the user.
|
|
100965
101006
|
*
|
|
@@ -101043,7 +101084,7 @@ declare namespace __esri {
|
|
|
101043
101084
|
*/
|
|
101044
101085
|
export interface AttachmentsCapabilities {
|
|
101045
101086
|
editing?: boolean;
|
|
101046
|
-
operations?: AttachmentsCapabilitiesOperations
|
|
101087
|
+
operations?: AttachmentsCapabilitiesOperations;
|
|
101047
101088
|
}
|
|
101048
101089
|
|
|
101049
101090
|
export interface AttachmentsCapabilitiesOperations {
|
|
@@ -101173,7 +101214,7 @@ declare namespace __esri {
|
|
|
101173
101214
|
*/
|
|
101174
101215
|
export interface AttributionItem {
|
|
101175
101216
|
text: string;
|
|
101176
|
-
|
|
101217
|
+
layerView: LayerView;
|
|
101177
101218
|
}
|
|
101178
101219
|
|
|
101179
101220
|
export class BasemapGallery extends Widget {
|
|
@@ -102236,9 +102277,9 @@ declare namespace __esri {
|
|
|
102236
102277
|
*
|
|
102237
102278
|
* @param elementId The elementId of the input field to find.
|
|
102238
102279
|
*
|
|
102239
|
-
* {@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...}
|
|
102240
102281
|
*/
|
|
102241
|
-
|
|
102282
|
+
findFieldInput(elementId: string): any;
|
|
102242
102283
|
/**
|
|
102243
102284
|
* The method used to get the updated field value.
|
|
102244
102285
|
*
|
|
@@ -115095,7 +115136,7 @@ declare namespace __esri {
|
|
|
115095
115136
|
*
|
|
115096
115137
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer Read more...}
|
|
115097
115138
|
*/
|
|
115098
|
-
layer: Layer;
|
|
115139
|
+
layer: Layer | Sublayer | SubtypeSublayer;
|
|
115099
115140
|
/**
|
|
115100
115141
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html LayerView} displaying data for the
|
|
115101
115142
|
* associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer layer}.
|
|
@@ -115251,7 +115292,10 @@ declare namespace __esri {
|
|
|
115251
115292
|
*
|
|
115252
115293
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#layer Read more...}
|
|
115253
115294
|
*/
|
|
115254
|
-
layer?:
|
|
115295
|
+
layer?:
|
|
115296
|
+
| LayerProperties
|
|
115297
|
+
| (SublayerProperties & { type: "sublayer" })
|
|
115298
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
115255
115299
|
/**
|
|
115256
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.
|
|
115257
115301
|
*
|
|
@@ -115387,7 +115431,12 @@ declare namespace __esri {
|
|
|
115387
115431
|
*
|
|
115388
115432
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItemPanel.html#content Read more...}
|
|
115389
115433
|
*/
|
|
115390
|
-
content?:
|
|
115434
|
+
content?:
|
|
115435
|
+
| WidgetProperties
|
|
115436
|
+
| HTMLElement
|
|
115437
|
+
| string
|
|
115438
|
+
| "legend"
|
|
115439
|
+
| (WidgetProperties | HTMLElement | string | "legend")[];
|
|
115391
115440
|
/**
|
|
115392
115441
|
* If `true`, disables the ListItem's panel so the user cannot open or interact with it.
|
|
115393
115442
|
*
|
|
@@ -115431,7 +115480,7 @@ declare namespace __esri {
|
|
|
115431
115480
|
*
|
|
115432
115481
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItemPanel.html#LayerListItemPanelContent Read more...}
|
|
115433
115482
|
*/
|
|
115434
|
-
export type LayerListItemPanelContent = Widget | HTMLElement | string;
|
|
115483
|
+
export type LayerListItemPanelContent = Widget | HTMLElement | string | "legend";
|
|
115435
115484
|
|
|
115436
115485
|
export interface LayerListCatalogOptions {
|
|
115437
115486
|
filterPlaceholder?: string;
|