@arcgis/core-adapter 4.32.0-next.7 → 4.32.0-next.9
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 +1 -1
- package/dist/index.cjs +33 -0
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +29 -0
- package/package.json +2 -2
- package/src/index.ts +30 -1
- package/support/api-reference-esm-imports.json +2 -0
- package/support/arcgis.d.ts +1604 -192
package/support/arcgis.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for ArcGIS Maps SDK for JavaScript 4.
|
|
1
|
+
// Type definitions for ArcGIS Maps SDK for JavaScript 4.32
|
|
2
2
|
// Project: http://js.arcgis.com
|
|
3
3
|
// Definitions by: Esri <https://github.com/Esri>
|
|
4
4
|
// Andy Gup <https://github.com/andygup>
|
|
@@ -301,6 +301,8 @@ declare namespace __esri {
|
|
|
301
301
|
|
|
302
302
|
export type FeatureTableCellPointeroverEventHandler = (event: FeatureTableCellPointeroverEvent) => void;
|
|
303
303
|
|
|
304
|
+
export type FeatureTableColumnReorderEventHandler = (event: FeatureTableColumnReorderEvent) => void;
|
|
305
|
+
|
|
304
306
|
export type FeatureTableViewModelCellClickEventHandler = (event: FeatureTableViewModelCellClickEvent) => void;
|
|
305
307
|
|
|
306
308
|
export type FeatureTableViewModelCellDblclickEventHandler = (event: FeatureTableViewModelCellDblclickEvent) => void;
|
|
@@ -1357,6 +1359,22 @@ declare namespace __esri {
|
|
|
1357
1359
|
|
|
1358
1360
|
export const layerOriginUtils: layerOriginUtils;
|
|
1359
1361
|
|
|
1362
|
+
/**
|
|
1363
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1364
|
+
*
|
|
1365
|
+
* Layers Effects json utils for Components.
|
|
1366
|
+
*/
|
|
1367
|
+
interface layersEffectsJsonUtils {
|
|
1368
|
+
/**
|
|
1369
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1370
|
+
*
|
|
1371
|
+
* Converts the effect property to its JSON value.
|
|
1372
|
+
*/
|
|
1373
|
+
toJSON(input: string | any): any;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
export const layersEffectsJsonUtils: layersEffectsJsonUtils;
|
|
1377
|
+
|
|
1360
1378
|
/**
|
|
1361
1379
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1362
1380
|
*
|
|
@@ -1548,6 +1566,73 @@ declare namespace __esri {
|
|
|
1548
1566
|
layer: VideoLayer;
|
|
1549
1567
|
}
|
|
1550
1568
|
|
|
1569
|
+
/**
|
|
1570
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1571
|
+
*
|
|
1572
|
+
* Sketch utilities for the experience builder application.
|
|
1573
|
+
*/
|
|
1574
|
+
interface sketchUtils {
|
|
1575
|
+
/**
|
|
1576
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1577
|
+
*
|
|
1578
|
+
* Configures a Sketch widget to display custom tools.
|
|
1579
|
+
*/
|
|
1580
|
+
setCustomTools(
|
|
1581
|
+
sketch: Sketch,
|
|
1582
|
+
toolOptions?: sketchUtilsSetCustomToolsToolOptions
|
|
1583
|
+
): Promise<ControlPointsGeoreference>;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
export const sketchUtils: sketchUtils;
|
|
1587
|
+
|
|
1588
|
+
export interface sketchUtilsSetCustomToolsToolOptions {
|
|
1589
|
+
/**
|
|
1590
|
+
* The text displayed in the tooltip for the custom tool.
|
|
1591
|
+
*
|
|
1592
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1593
|
+
*/
|
|
1594
|
+
label?: string;
|
|
1595
|
+
/**
|
|
1596
|
+
* The string value indicating the [Calcite icon](https://developers.arcgis.com/calcite-design-system/icons/) displayed for custom tool.
|
|
1597
|
+
*
|
|
1598
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1599
|
+
*/
|
|
1600
|
+
icon?: string;
|
|
1601
|
+
/**
|
|
1602
|
+
* The unique identifier string for this custom tool.
|
|
1603
|
+
*
|
|
1604
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1605
|
+
*/
|
|
1606
|
+
toolKey?: string;
|
|
1607
|
+
/**
|
|
1608
|
+
* The specific sketch create tool to use for the custom tool.
|
|
1609
|
+
*
|
|
1610
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1611
|
+
*/
|
|
1612
|
+
toolName?: "point" | "polyline" | "polygon" | "rectangle" | "circle";
|
|
1613
|
+
/**
|
|
1614
|
+
* Specific options for the create tool being used by the custom tool.
|
|
1615
|
+
*
|
|
1616
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1617
|
+
*/
|
|
1618
|
+
createOptions?: sketchUtilsSetCustomToolsToolOptionsCreateOptions;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
export interface sketchUtilsSetCustomToolsToolOptionsCreateOptions {
|
|
1622
|
+
/**
|
|
1623
|
+
* Specifies how the graphic can be created.
|
|
1624
|
+
*
|
|
1625
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1626
|
+
*/
|
|
1627
|
+
mode?: "hybrid" | "freehand" | "click";
|
|
1628
|
+
/**
|
|
1629
|
+
* Controls whether or not the width and height of the drawn geometry are kept equal.
|
|
1630
|
+
*
|
|
1631
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-ExperienceBuilder-sketchUtils.html#setCustomTools)
|
|
1632
|
+
*/
|
|
1633
|
+
preserveAspectRatio?: boolean;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1551
1636
|
/**
|
|
1552
1637
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1553
1638
|
*
|
|
@@ -1834,7 +1919,7 @@ declare namespace __esri {
|
|
|
1834
1919
|
*
|
|
1835
1920
|
* Sketch utilities for the WebEditor application.
|
|
1836
1921
|
*/
|
|
1837
|
-
interface
|
|
1922
|
+
interface WebEditorSketchUtils {
|
|
1838
1923
|
/**
|
|
1839
1924
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1840
1925
|
*
|
|
@@ -1864,7 +1949,7 @@ declare namespace __esri {
|
|
|
1864
1949
|
): Promise<void>;
|
|
1865
1950
|
}
|
|
1866
1951
|
|
|
1867
|
-
export const
|
|
1952
|
+
export const WebEditorSketchUtils: WebEditorSketchUtils;
|
|
1868
1953
|
|
|
1869
1954
|
/**
|
|
1870
1955
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
@@ -2850,7 +2935,7 @@ declare namespace __esri {
|
|
|
2850
2935
|
*
|
|
2851
2936
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#workers)
|
|
2852
2937
|
*/
|
|
2853
|
-
loaderUrl?:
|
|
2938
|
+
loaderUrl?: string;
|
|
2854
2939
|
/**
|
|
2855
2940
|
* This is used by the `@arcgis/core` npm package to control where to load a custom build of the `RemoteClient` from.
|
|
2856
2941
|
*
|
|
@@ -8278,11 +8363,20 @@ declare namespace __esri {
|
|
|
8278
8363
|
*
|
|
8279
8364
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-areaOperator.html#execute)
|
|
8280
8365
|
*/
|
|
8281
|
-
execute(geometry: Geometry): number;
|
|
8366
|
+
execute(geometry: Geometry, options?: areaOperatorExecuteOptions): number;
|
|
8282
8367
|
}
|
|
8283
8368
|
|
|
8284
8369
|
export const areaOperator: areaOperator;
|
|
8285
8370
|
|
|
8371
|
+
export interface areaOperatorExecuteOptions {
|
|
8372
|
+
/**
|
|
8373
|
+
* todoc
|
|
8374
|
+
*
|
|
8375
|
+
* [Read more...](global.html#unit)
|
|
8376
|
+
*/
|
|
8377
|
+
unit?: AreaUnit;
|
|
8378
|
+
}
|
|
8379
|
+
|
|
8286
8380
|
/**
|
|
8287
8381
|
* Creates planar buffers around 2D geometries.
|
|
8288
8382
|
*
|
|
@@ -8294,24 +8388,55 @@ declare namespace __esri {
|
|
|
8294
8388
|
*
|
|
8295
8389
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#execute)
|
|
8296
8390
|
*/
|
|
8297
|
-
execute(geometry: Geometry, distance: number,
|
|
8391
|
+
execute(geometry: Geometry, distance: number, options?: bufferOperatorExecuteOptions): Geometry;
|
|
8298
8392
|
/**
|
|
8299
8393
|
* Creates a buffer around the input geometries.
|
|
8300
8394
|
*
|
|
8301
8395
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany)
|
|
8302
8396
|
*/
|
|
8303
|
-
executeMany(
|
|
8304
|
-
geometries: Geometry[],
|
|
8305
|
-
distances: number[],
|
|
8306
|
-
unit?: LengthUnit,
|
|
8307
|
-
maxDeviation?: number,
|
|
8308
|
-
maxVerticesInFullCircle?: number,
|
|
8309
|
-
union?: boolean
|
|
8310
|
-
): Geometry[];
|
|
8397
|
+
executeMany(geometries: Geometry[], distances: number[], options?: bufferOperatorExecuteManyOptions): Geometry[];
|
|
8311
8398
|
}
|
|
8312
8399
|
|
|
8313
8400
|
export const bufferOperator: bufferOperator;
|
|
8314
8401
|
|
|
8402
|
+
export interface bufferOperatorExecuteManyOptions {
|
|
8403
|
+
/**
|
|
8404
|
+
* The max deviation of the result buffer from the true buffer.
|
|
8405
|
+
*
|
|
8406
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany)
|
|
8407
|
+
*/
|
|
8408
|
+
maxDeviation?: number;
|
|
8409
|
+
/**
|
|
8410
|
+
* The maximum number of vertices in the polygon produced from a buffered point.
|
|
8411
|
+
*
|
|
8412
|
+
* @default 96
|
|
8413
|
+
*
|
|
8414
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany)
|
|
8415
|
+
*/
|
|
8416
|
+
maxVerticesInFullCircle?: number;
|
|
8417
|
+
/**
|
|
8418
|
+
* Indicates if the buffer geometries should be unioned.
|
|
8419
|
+
*
|
|
8420
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany)
|
|
8421
|
+
*/
|
|
8422
|
+
union?: boolean;
|
|
8423
|
+
/**
|
|
8424
|
+
* The length unit of the buffer distances and max deviation.
|
|
8425
|
+
*
|
|
8426
|
+
* [Read more...](global.html#unit)
|
|
8427
|
+
*/
|
|
8428
|
+
unit?: LengthUnit;
|
|
8429
|
+
}
|
|
8430
|
+
|
|
8431
|
+
export interface bufferOperatorExecuteOptions {
|
|
8432
|
+
/**
|
|
8433
|
+
* The length unit of the buffer distance.
|
|
8434
|
+
*
|
|
8435
|
+
* [Read more...](global.html#unit)
|
|
8436
|
+
*/
|
|
8437
|
+
unit?: LengthUnit;
|
|
8438
|
+
}
|
|
8439
|
+
|
|
8315
8440
|
/**
|
|
8316
8441
|
* Calculates the centroid for a 2D geometry.
|
|
8317
8442
|
*
|
|
@@ -8383,7 +8508,7 @@ declare namespace __esri {
|
|
|
8383
8508
|
*
|
|
8384
8509
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#executeMany)
|
|
8385
8510
|
*/
|
|
8386
|
-
executeMany(geometries: Geometry[],
|
|
8511
|
+
executeMany(geometries: Geometry[], options?: convexHullOperatorExecuteManyOptions): Geometry[];
|
|
8387
8512
|
/**
|
|
8388
8513
|
* Checks if a geometry is convex.
|
|
8389
8514
|
*
|
|
@@ -8394,6 +8519,15 @@ declare namespace __esri {
|
|
|
8394
8519
|
|
|
8395
8520
|
export const convexHullOperator: convexHullOperator;
|
|
8396
8521
|
|
|
8522
|
+
export interface convexHullOperatorExecuteManyOptions {
|
|
8523
|
+
/**
|
|
8524
|
+
* Indicates if the convex hull geometries should be merged.
|
|
8525
|
+
*
|
|
8526
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#executeMany)
|
|
8527
|
+
*/
|
|
8528
|
+
merge?: boolean;
|
|
8529
|
+
}
|
|
8530
|
+
|
|
8397
8531
|
/**
|
|
8398
8532
|
* Performs a relational operation to determine if one 2D geometry crosses another 2D geometry.
|
|
8399
8533
|
*
|
|
@@ -8437,7 +8571,7 @@ declare namespace __esri {
|
|
|
8437
8571
|
*
|
|
8438
8572
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute)
|
|
8439
8573
|
*/
|
|
8440
|
-
execute(geometry: Geometry, maxSegmentLength: number,
|
|
8574
|
+
execute(geometry: Geometry, maxSegmentLength: number, options?: densifyOperatorExecuteOptions): Geometry;
|
|
8441
8575
|
/**
|
|
8442
8576
|
* Performs the Densify operation on the geometry set.
|
|
8443
8577
|
*
|
|
@@ -8446,13 +8580,54 @@ declare namespace __esri {
|
|
|
8446
8580
|
executeMany(
|
|
8447
8581
|
geometries: Geometry[],
|
|
8448
8582
|
maxSegmentLength: number,
|
|
8449
|
-
|
|
8450
|
-
maxAngleInDegrees?: number
|
|
8583
|
+
options?: densifyOperatorExecuteManyOptions
|
|
8451
8584
|
): Geometry[];
|
|
8452
8585
|
}
|
|
8453
8586
|
|
|
8454
8587
|
export const densifyOperator: densifyOperator;
|
|
8455
8588
|
|
|
8589
|
+
export interface densifyOperatorExecuteManyOptions {
|
|
8590
|
+
/**
|
|
8591
|
+
* The maximum angle allowed.
|
|
8592
|
+
*
|
|
8593
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#executeMany)
|
|
8594
|
+
*/
|
|
8595
|
+
maxAngleInDegrees?: number;
|
|
8596
|
+
/**
|
|
8597
|
+
* The maximum deviation allowed.
|
|
8598
|
+
*
|
|
8599
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#executeMany)
|
|
8600
|
+
*/
|
|
8601
|
+
maxDeviation?: number;
|
|
8602
|
+
/**
|
|
8603
|
+
* The length unit of `maxSegmentLength` and `maxDeviation`.
|
|
8604
|
+
*
|
|
8605
|
+
* [Read more...](global.html#unit)
|
|
8606
|
+
*/
|
|
8607
|
+
unit?: LengthUnit;
|
|
8608
|
+
}
|
|
8609
|
+
|
|
8610
|
+
export interface densifyOperatorExecuteOptions {
|
|
8611
|
+
/**
|
|
8612
|
+
* The maximum angle allowed.
|
|
8613
|
+
*
|
|
8614
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute)
|
|
8615
|
+
*/
|
|
8616
|
+
maxAngleInDegrees?: number;
|
|
8617
|
+
/**
|
|
8618
|
+
* The maximum deviation allowed.
|
|
8619
|
+
*
|
|
8620
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute)
|
|
8621
|
+
*/
|
|
8622
|
+
maxDeviation?: number;
|
|
8623
|
+
/**
|
|
8624
|
+
* The length unit of `maxSegmentLength` and `maxDeviation`.
|
|
8625
|
+
*
|
|
8626
|
+
* [Read more...](global.html#unit)
|
|
8627
|
+
*/
|
|
8628
|
+
unit?: LengthUnit;
|
|
8629
|
+
}
|
|
8630
|
+
|
|
8456
8631
|
/**
|
|
8457
8632
|
* Performs a topological difference operation on 2D geometries.
|
|
8458
8633
|
*
|
|
@@ -8464,13 +8639,13 @@ declare namespace __esri {
|
|
|
8464
8639
|
*
|
|
8465
8640
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#execute)
|
|
8466
8641
|
*/
|
|
8467
|
-
execute(
|
|
8642
|
+
execute(geometry: Geometry, subtractor: Geometry): Geometry;
|
|
8468
8643
|
/**
|
|
8469
8644
|
* Performs the Topological difference operation on the geometry set.
|
|
8470
8645
|
*
|
|
8471
8646
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#executeMany)
|
|
8472
8647
|
*/
|
|
8473
|
-
executeMany(
|
|
8648
|
+
executeMany(geometries: Geometry, subtractor: Geometry): Geometry[];
|
|
8474
8649
|
}
|
|
8475
8650
|
|
|
8476
8651
|
export const differenceOperator: differenceOperator;
|
|
@@ -8498,15 +8673,24 @@ declare namespace __esri {
|
|
|
8498
8673
|
*/
|
|
8499
8674
|
interface distanceOperator {
|
|
8500
8675
|
/**
|
|
8501
|
-
* Returns the planar distance between two geometries
|
|
8676
|
+
* Returns the planar distance between two geometries.
|
|
8502
8677
|
*
|
|
8503
8678
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-distanceOperator.html#execute)
|
|
8504
8679
|
*/
|
|
8505
|
-
execute(geometry1: Geometry, geometry2: Geometry,
|
|
8680
|
+
execute(geometry1: Geometry, geometry2: Geometry, options?: distanceOperatorExecuteOptions): number;
|
|
8506
8681
|
}
|
|
8507
8682
|
|
|
8508
8683
|
export const distanceOperator: distanceOperator;
|
|
8509
8684
|
|
|
8685
|
+
export interface distanceOperatorExecuteOptions {
|
|
8686
|
+
/**
|
|
8687
|
+
* The length unit of the distance.
|
|
8688
|
+
*
|
|
8689
|
+
* [Read more...](global.html#unit)
|
|
8690
|
+
*/
|
|
8691
|
+
unit?: LengthUnit;
|
|
8692
|
+
}
|
|
8693
|
+
|
|
8510
8694
|
/**
|
|
8511
8695
|
* Performs a relational operation to determine if two 2D geometries are topologically equal.
|
|
8512
8696
|
*
|
|
@@ -8523,6 +8707,55 @@ declare namespace __esri {
|
|
|
8523
8707
|
|
|
8524
8708
|
export const equalsOperator: equalsOperator;
|
|
8525
8709
|
|
|
8710
|
+
/**
|
|
8711
|
+
* Extend 2D polylines with a polyline.
|
|
8712
|
+
*
|
|
8713
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html)
|
|
8714
|
+
*/
|
|
8715
|
+
interface extendOperator {
|
|
8716
|
+
/**
|
|
8717
|
+
* Performs the extend operation on a polyline using a polyline as the extender.
|
|
8718
|
+
*
|
|
8719
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8720
|
+
*/
|
|
8721
|
+
execute(polyline1: Polyline, polyline2: Polyline, options?: extendOperatorExecuteOptions): Polyline;
|
|
8722
|
+
}
|
|
8723
|
+
|
|
8724
|
+
export const extendOperator: extendOperator;
|
|
8725
|
+
|
|
8726
|
+
export interface extendOperatorExecuteOptions {
|
|
8727
|
+
/**
|
|
8728
|
+
* If an extension is performed at an end, relocate the end point to the new position instead of leaving the old point and adding a new point at the new position.
|
|
8729
|
+
*
|
|
8730
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8731
|
+
*/
|
|
8732
|
+
relocateEnds?: boolean;
|
|
8733
|
+
/**
|
|
8734
|
+
* If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point.
|
|
8735
|
+
*
|
|
8736
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8737
|
+
*/
|
|
8738
|
+
keepEndAttributes?: boolean;
|
|
8739
|
+
/**
|
|
8740
|
+
* If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point.
|
|
8741
|
+
*
|
|
8742
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8743
|
+
*/
|
|
8744
|
+
noEndAttributes?: boolean;
|
|
8745
|
+
/**
|
|
8746
|
+
* Do not extend the 'from' end of any part.
|
|
8747
|
+
*
|
|
8748
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8749
|
+
*/
|
|
8750
|
+
noExtendAtFrom?: boolean;
|
|
8751
|
+
/**
|
|
8752
|
+
* Do not extend the 'to' end of any part.
|
|
8753
|
+
*
|
|
8754
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-extendOperator.html#execute)
|
|
8755
|
+
*/
|
|
8756
|
+
noExtendAtTo?: boolean;
|
|
8757
|
+
}
|
|
8758
|
+
|
|
8526
8759
|
/**
|
|
8527
8760
|
* Generalizes 2D geometries using Douglas-Peucker algorithm.
|
|
8528
8761
|
*
|
|
@@ -8534,17 +8767,51 @@ declare namespace __esri {
|
|
|
8534
8767
|
*
|
|
8535
8768
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#execute)
|
|
8536
8769
|
*/
|
|
8537
|
-
execute(geometry: Geometry, maxDeviation: number,
|
|
8770
|
+
execute(geometry: Geometry, maxDeviation: number, options?: generalizeOperatorExecuteOptions): Geometry;
|
|
8538
8771
|
/**
|
|
8539
8772
|
* Performs the generalize operation on the input geometries.
|
|
8540
8773
|
*
|
|
8541
8774
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#executeMany)
|
|
8542
8775
|
*/
|
|
8543
|
-
executeMany(
|
|
8776
|
+
executeMany(
|
|
8777
|
+
geometries: Geometry[],
|
|
8778
|
+
maxDeviation: number,
|
|
8779
|
+
options?: generalizeOperatorExecuteManyOptions
|
|
8780
|
+
): Geometry[];
|
|
8544
8781
|
}
|
|
8545
8782
|
|
|
8546
8783
|
export const generalizeOperator: generalizeOperator;
|
|
8547
8784
|
|
|
8785
|
+
export interface generalizeOperatorExecuteManyOptions {
|
|
8786
|
+
/**
|
|
8787
|
+
* Preserves degenerate parts.
|
|
8788
|
+
*
|
|
8789
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#executeMany)
|
|
8790
|
+
*/
|
|
8791
|
+
removeDegenerateParts?: boolean;
|
|
8792
|
+
/**
|
|
8793
|
+
* The length unit of `maxDeviation`.
|
|
8794
|
+
*
|
|
8795
|
+
* [Read more...](global.html#unit)
|
|
8796
|
+
*/
|
|
8797
|
+
unit?: LengthUnit;
|
|
8798
|
+
}
|
|
8799
|
+
|
|
8800
|
+
export interface generalizeOperatorExecuteOptions {
|
|
8801
|
+
/**
|
|
8802
|
+
* Preserves degenerate parts.
|
|
8803
|
+
*
|
|
8804
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#execute)
|
|
8805
|
+
*/
|
|
8806
|
+
removeDegenerateParts?: boolean;
|
|
8807
|
+
/**
|
|
8808
|
+
* The length unit of `maxDeviation`.
|
|
8809
|
+
*
|
|
8810
|
+
* [Read more...](global.html#unit)
|
|
8811
|
+
*/
|
|
8812
|
+
unit?: LengthUnit;
|
|
8813
|
+
}
|
|
8814
|
+
|
|
8548
8815
|
/**
|
|
8549
8816
|
* Geodesically buffer 2D geometries.
|
|
8550
8817
|
*
|
|
@@ -8556,12 +8823,7 @@ declare namespace __esri {
|
|
|
8556
8823
|
*
|
|
8557
8824
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute)
|
|
8558
8825
|
*/
|
|
8559
|
-
execute(
|
|
8560
|
-
geometry: Geometry,
|
|
8561
|
-
distanceMeters: number,
|
|
8562
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving",
|
|
8563
|
-
maxDeviationMeters?: number
|
|
8564
|
-
): Geometry;
|
|
8826
|
+
execute(geometry: Geometry, distance: number, options?: geodesicBufferOperatorExecuteOptions): Geometry;
|
|
8565
8827
|
/**
|
|
8566
8828
|
* Creates a geodesic buffer around the input geometries.
|
|
8567
8829
|
*
|
|
@@ -8569,10 +8831,8 @@ declare namespace __esri {
|
|
|
8569
8831
|
*/
|
|
8570
8832
|
executeMany(
|
|
8571
8833
|
geometries: Geometry[],
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
maxDeviationMeters?: number,
|
|
8575
|
-
union?: boolean
|
|
8834
|
+
distances: number[],
|
|
8835
|
+
options?: geodesicBufferOperatorExecuteManyOptions
|
|
8576
8836
|
): Geometry[];
|
|
8577
8837
|
/**
|
|
8578
8838
|
* Indicates if all dependencies of this module have been loaded.
|
|
@@ -8590,6 +8850,58 @@ declare namespace __esri {
|
|
|
8590
8850
|
|
|
8591
8851
|
export const geodesicBufferOperator: geodesicBufferOperator;
|
|
8592
8852
|
|
|
8853
|
+
export interface geodesicBufferOperatorExecuteManyOptions {
|
|
8854
|
+
/**
|
|
8855
|
+
* The type of geodetic curve used to determine the buffer.
|
|
8856
|
+
*
|
|
8857
|
+
* @default "geodesic"
|
|
8858
|
+
*
|
|
8859
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#executeMany)
|
|
8860
|
+
*/
|
|
8861
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
8862
|
+
/**
|
|
8863
|
+
* The deviation offset to use for convergence.
|
|
8864
|
+
*
|
|
8865
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#executeMany)
|
|
8866
|
+
*/
|
|
8867
|
+
maxDeviation?: number;
|
|
8868
|
+
/**
|
|
8869
|
+
* If true, the resulting buffer geometries will be unioned.
|
|
8870
|
+
*
|
|
8871
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#executeMany)
|
|
8872
|
+
*/
|
|
8873
|
+
union?: boolean;
|
|
8874
|
+
/**
|
|
8875
|
+
* The length unit of the buffer distances and max deviation.
|
|
8876
|
+
*
|
|
8877
|
+
* [Read more...](global.html#unit)
|
|
8878
|
+
*/
|
|
8879
|
+
unit?: LengthUnit;
|
|
8880
|
+
}
|
|
8881
|
+
|
|
8882
|
+
export interface geodesicBufferOperatorExecuteOptions {
|
|
8883
|
+
/**
|
|
8884
|
+
* The type of geodetic curve used to determine the buffer.
|
|
8885
|
+
*
|
|
8886
|
+
* @default "geodesic"
|
|
8887
|
+
*
|
|
8888
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute)
|
|
8889
|
+
*/
|
|
8890
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
8891
|
+
/**
|
|
8892
|
+
* The deviation offset to use for convergence.
|
|
8893
|
+
*
|
|
8894
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute)
|
|
8895
|
+
*/
|
|
8896
|
+
maxDeviation?: number;
|
|
8897
|
+
/**
|
|
8898
|
+
* The length unit of the buffer distance and max deviation.
|
|
8899
|
+
*
|
|
8900
|
+
* [Read more...](global.html#unit)
|
|
8901
|
+
*/
|
|
8902
|
+
unit?: LengthUnit;
|
|
8903
|
+
}
|
|
8904
|
+
|
|
8593
8905
|
/**
|
|
8594
8906
|
* Returns the geodetic area of a 2D geometry.
|
|
8595
8907
|
*
|
|
@@ -8601,10 +8913,7 @@ declare namespace __esri {
|
|
|
8601
8913
|
*
|
|
8602
8914
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#execute)
|
|
8603
8915
|
*/
|
|
8604
|
-
execute(
|
|
8605
|
-
geometry: Geometry,
|
|
8606
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
|
|
8607
|
-
): number;
|
|
8916
|
+
execute(geometry: Geometry, options?: geodeticAreaOperatorExecuteOptions): number;
|
|
8608
8917
|
/**
|
|
8609
8918
|
* Indicates if all dependencies of this module have been loaded.
|
|
8610
8919
|
*
|
|
@@ -8621,6 +8930,23 @@ declare namespace __esri {
|
|
|
8621
8930
|
|
|
8622
8931
|
export const geodeticAreaOperator: geodeticAreaOperator;
|
|
8623
8932
|
|
|
8933
|
+
export interface geodeticAreaOperatorExecuteOptions {
|
|
8934
|
+
/**
|
|
8935
|
+
* The type of geodetic curve used to determine the area.
|
|
8936
|
+
*
|
|
8937
|
+
* @default "geodesic"
|
|
8938
|
+
*
|
|
8939
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#execute)
|
|
8940
|
+
*/
|
|
8941
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
8942
|
+
/**
|
|
8943
|
+
* The area unit of the return value.
|
|
8944
|
+
*
|
|
8945
|
+
* [Read more...](global.html#unit)
|
|
8946
|
+
*/
|
|
8947
|
+
unit?: AreaUnit;
|
|
8948
|
+
}
|
|
8949
|
+
|
|
8624
8950
|
/**
|
|
8625
8951
|
* Densifies line segments by length in a 2D plane, making them run along specified geodetic curves.
|
|
8626
8952
|
*
|
|
@@ -8632,11 +8958,7 @@ declare namespace __esri {
|
|
|
8632
8958
|
*
|
|
8633
8959
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#execute)
|
|
8634
8960
|
*/
|
|
8635
|
-
execute(
|
|
8636
|
-
geometry: Geometry,
|
|
8637
|
-
maxSegmentLengthMeters: number,
|
|
8638
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
|
|
8639
|
-
): Geometry;
|
|
8961
|
+
execute(geometry: Geometry, maxSegmentLength: number, options?: geodeticDensifyOperatorExecuteOptions): Geometry;
|
|
8640
8962
|
/**
|
|
8641
8963
|
* Densifies the input geometries.
|
|
8642
8964
|
*
|
|
@@ -8644,8 +8966,8 @@ declare namespace __esri {
|
|
|
8644
8966
|
*/
|
|
8645
8967
|
executeMany(
|
|
8646
8968
|
geometries: Geometry[],
|
|
8647
|
-
|
|
8648
|
-
|
|
8969
|
+
maxSegmentLength: number,
|
|
8970
|
+
options?: geodeticDensifyOperatorExecuteManyOptions
|
|
8649
8971
|
): Geometry[];
|
|
8650
8972
|
/**
|
|
8651
8973
|
* Indicates if all dependencies of this module have been loaded.
|
|
@@ -8663,6 +8985,40 @@ declare namespace __esri {
|
|
|
8663
8985
|
|
|
8664
8986
|
export const geodeticDensifyOperator: geodeticDensifyOperator;
|
|
8665
8987
|
|
|
8988
|
+
export interface geodeticDensifyOperatorExecuteManyOptions {
|
|
8989
|
+
/**
|
|
8990
|
+
* The type of geodetic curve used to densify the geometries.
|
|
8991
|
+
*
|
|
8992
|
+
* @default "geodesic"
|
|
8993
|
+
*
|
|
8994
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#executeMany)
|
|
8995
|
+
*/
|
|
8996
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
8997
|
+
/**
|
|
8998
|
+
* The length unit of `maxSegmentLength`.
|
|
8999
|
+
*
|
|
9000
|
+
* [Read more...](global.html#unit)
|
|
9001
|
+
*/
|
|
9002
|
+
unit?: LengthUnit;
|
|
9003
|
+
}
|
|
9004
|
+
|
|
9005
|
+
export interface geodeticDensifyOperatorExecuteOptions {
|
|
9006
|
+
/**
|
|
9007
|
+
* The type of geodetic curve used to densify the geometry.
|
|
9008
|
+
*
|
|
9009
|
+
* @default "geodesic"
|
|
9010
|
+
*
|
|
9011
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#execute)
|
|
9012
|
+
*/
|
|
9013
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
9014
|
+
/**
|
|
9015
|
+
* The length unit of `maxSegmentLength`.
|
|
9016
|
+
*
|
|
9017
|
+
* [Read more...](global.html#unit)
|
|
9018
|
+
*/
|
|
9019
|
+
unit?: LengthUnit;
|
|
9020
|
+
}
|
|
9021
|
+
|
|
8666
9022
|
/**
|
|
8667
9023
|
* Calculates the shortest geodetic distance between two 2D geometries.
|
|
8668
9024
|
*
|
|
@@ -8670,15 +9026,11 @@ declare namespace __esri {
|
|
|
8670
9026
|
*/
|
|
8671
9027
|
interface geodeticDistanceOperator {
|
|
8672
9028
|
/**
|
|
8673
|
-
* Calculates the shortest geodetic distance between two geometries
|
|
9029
|
+
* Calculates the shortest geodetic distance between two geometries.
|
|
8674
9030
|
*
|
|
8675
9031
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDistanceOperator.html#execute)
|
|
8676
9032
|
*/
|
|
8677
|
-
execute(
|
|
8678
|
-
geometry1: Geometry,
|
|
8679
|
-
geometry2: Geometry,
|
|
8680
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection"
|
|
8681
|
-
): number;
|
|
9033
|
+
execute(geometry1: Geometry, geometry2: Geometry, options?: geodeticDistanceOperatorExecuteOptions): number;
|
|
8682
9034
|
/**
|
|
8683
9035
|
* Indicates if all dependencies of this module have been loaded.
|
|
8684
9036
|
*
|
|
@@ -8695,6 +9047,23 @@ declare namespace __esri {
|
|
|
8695
9047
|
|
|
8696
9048
|
export const geodeticDistanceOperator: geodeticDistanceOperator;
|
|
8697
9049
|
|
|
9050
|
+
export interface geodeticDistanceOperatorExecuteOptions {
|
|
9051
|
+
/**
|
|
9052
|
+
* The type of geodetic curve used to determine the distance.
|
|
9053
|
+
*
|
|
9054
|
+
* @default "geodesic"
|
|
9055
|
+
*
|
|
9056
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDistanceOperator.html#execute)
|
|
9057
|
+
*/
|
|
9058
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection";
|
|
9059
|
+
/**
|
|
9060
|
+
* The length unit of the distance.
|
|
9061
|
+
*
|
|
9062
|
+
* [Read more...](global.html#unit)
|
|
9063
|
+
*/
|
|
9064
|
+
unit?: LengthUnit;
|
|
9065
|
+
}
|
|
9066
|
+
|
|
8698
9067
|
/**
|
|
8699
9068
|
* Returns the geodetic length of a 2D geometry.
|
|
8700
9069
|
*
|
|
@@ -8706,10 +9075,7 @@ declare namespace __esri {
|
|
|
8706
9075
|
*
|
|
8707
9076
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#execute)
|
|
8708
9077
|
*/
|
|
8709
|
-
execute(
|
|
8710
|
-
geometry: Geometry,
|
|
8711
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
|
|
8712
|
-
): number;
|
|
9078
|
+
execute(geometry: Geometry, options?: geodeticLengthOperatorExecuteOptions): number;
|
|
8713
9079
|
/**
|
|
8714
9080
|
* Indicates if all dependencies of this module have been loaded.
|
|
8715
9081
|
*
|
|
@@ -8726,6 +9092,23 @@ declare namespace __esri {
|
|
|
8726
9092
|
|
|
8727
9093
|
export const geodeticLengthOperator: geodeticLengthOperator;
|
|
8728
9094
|
|
|
9095
|
+
export interface geodeticLengthOperatorExecuteOptions {
|
|
9096
|
+
/**
|
|
9097
|
+
* The type of geodetic curve used to determine the length.
|
|
9098
|
+
*
|
|
9099
|
+
* @default "geodesic"
|
|
9100
|
+
*
|
|
9101
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#execute)
|
|
9102
|
+
*/
|
|
9103
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
|
|
9104
|
+
/**
|
|
9105
|
+
* The length unit of the return value.
|
|
9106
|
+
*
|
|
9107
|
+
* [Read more...](global.html#unit)
|
|
9108
|
+
*/
|
|
9109
|
+
unit?: LengthUnit;
|
|
9110
|
+
}
|
|
9111
|
+
|
|
8729
9112
|
/**
|
|
8730
9113
|
* Creates planar buffers around 2D geometries using graphical joins and caps.
|
|
8731
9114
|
*
|
|
@@ -8742,15 +9125,49 @@ declare namespace __esri {
|
|
|
8742
9125
|
distances: number[],
|
|
8743
9126
|
joins: "round" | "miter" | "bevel",
|
|
8744
9127
|
caps: "round" | "butt" | "square",
|
|
8745
|
-
|
|
8746
|
-
maxDeviation?: number,
|
|
8747
|
-
maxVerticesInFullCircle?: number,
|
|
8748
|
-
union?: boolean
|
|
9128
|
+
options?: graphicBufferOperatorExecuteManyOptions
|
|
8749
9129
|
): Geometry[];
|
|
8750
9130
|
}
|
|
8751
9131
|
|
|
8752
9132
|
export const graphicBufferOperator: graphicBufferOperator;
|
|
8753
9133
|
|
|
9134
|
+
export interface graphicBufferOperatorExecuteManyOptions {
|
|
9135
|
+
/**
|
|
9136
|
+
* The max deviation of the result buffer from the true buffer in the geometries spatial reference units.
|
|
9137
|
+
*
|
|
9138
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany)
|
|
9139
|
+
*/
|
|
9140
|
+
maxDeviation?: number;
|
|
9141
|
+
/**
|
|
9142
|
+
* The maximum number of vertices in the polygon produced from a buffered point.
|
|
9143
|
+
*
|
|
9144
|
+
* @default 96
|
|
9145
|
+
*
|
|
9146
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany)
|
|
9147
|
+
*/
|
|
9148
|
+
maxVerticesInFullCircle?: number;
|
|
9149
|
+
/**
|
|
9150
|
+
* Defines when miter joins are replaced with bevel joins.
|
|
9151
|
+
*
|
|
9152
|
+
* @default 10
|
|
9153
|
+
*
|
|
9154
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany)
|
|
9155
|
+
*/
|
|
9156
|
+
miterLimit?: number;
|
|
9157
|
+
/**
|
|
9158
|
+
* Indicates if the buffer geometries should be unioned.
|
|
9159
|
+
*
|
|
9160
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany)
|
|
9161
|
+
*/
|
|
9162
|
+
union?: boolean;
|
|
9163
|
+
/**
|
|
9164
|
+
* The length unit of the buffer distances and max deviation.
|
|
9165
|
+
*
|
|
9166
|
+
* [Read more...](global.html#unit)
|
|
9167
|
+
*/
|
|
9168
|
+
unit?: LengthUnit;
|
|
9169
|
+
}
|
|
9170
|
+
|
|
8754
9171
|
/**
|
|
8755
9172
|
* Create new geometries using the topological intersection of 2D geometries.
|
|
8756
9173
|
*
|
|
@@ -8790,7 +9207,7 @@ declare namespace __esri {
|
|
|
8790
9207
|
export const intersectsOperator: intersectsOperator;
|
|
8791
9208
|
|
|
8792
9209
|
/**
|
|
8793
|
-
* Returns the planar length of a 2D geometry
|
|
9210
|
+
* Returns the planar length of a 2D geometry.
|
|
8794
9211
|
*
|
|
8795
9212
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html)
|
|
8796
9213
|
*/
|
|
@@ -8800,11 +9217,20 @@ declare namespace __esri {
|
|
|
8800
9217
|
*
|
|
8801
9218
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html#execute)
|
|
8802
9219
|
*/
|
|
8803
|
-
execute(geometry: Geometry): number;
|
|
9220
|
+
execute(geometry: Geometry, options?: lengthOperatorExecuteOptions): number;
|
|
8804
9221
|
}
|
|
8805
9222
|
|
|
8806
9223
|
export const lengthOperator: lengthOperator;
|
|
8807
9224
|
|
|
9225
|
+
export interface lengthOperatorExecuteOptions {
|
|
9226
|
+
/**
|
|
9227
|
+
* The length unit of the return value.
|
|
9228
|
+
*
|
|
9229
|
+
* [Read more...](global.html#unit)
|
|
9230
|
+
*/
|
|
9231
|
+
unit?: LengthUnit;
|
|
9232
|
+
}
|
|
9233
|
+
|
|
8808
9234
|
/**
|
|
8809
9235
|
* Offset 2D geometries.
|
|
8810
9236
|
*
|
|
@@ -8816,29 +9242,79 @@ declare namespace __esri {
|
|
|
8816
9242
|
*
|
|
8817
9243
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute)
|
|
8818
9244
|
*/
|
|
8819
|
-
execute(
|
|
8820
|
-
geometry: Geometry,
|
|
8821
|
-
distance: number,
|
|
8822
|
-
joins?: "round" | "miter" | "bevel" | "square",
|
|
8823
|
-
bevelRatio?: number,
|
|
8824
|
-
flattenError?: number
|
|
8825
|
-
): Geometry;
|
|
9245
|
+
execute(geometry: Geometry, distance: number, options?: offsetOperatorExecuteOptions): Geometry;
|
|
8826
9246
|
/**
|
|
8827
9247
|
* Creates offset versions of the input geometries.
|
|
8828
9248
|
*
|
|
8829
9249
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany)
|
|
8830
9250
|
*/
|
|
8831
|
-
executeMany(
|
|
8832
|
-
geometries: Geometry[],
|
|
8833
|
-
distance: number,
|
|
8834
|
-
joins?: "round" | "miter" | "bevel" | "square",
|
|
8835
|
-
bevelRatio?: number,
|
|
8836
|
-
flattenError?: number
|
|
8837
|
-
): Geometry[];
|
|
9251
|
+
executeMany(geometries: Geometry[], distance: number, options?: offsetOperatorExecuteManyOptions): Geometry[];
|
|
8838
9252
|
}
|
|
8839
9253
|
|
|
8840
9254
|
export const offsetOperator: offsetOperator;
|
|
8841
9255
|
|
|
9256
|
+
export interface offsetOperatorExecuteManyOptions {
|
|
9257
|
+
/**
|
|
9258
|
+
* The maximum distance of the resulting segments compared to the true circular arc (used only when joins is round).
|
|
9259
|
+
*
|
|
9260
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany)
|
|
9261
|
+
*/
|
|
9262
|
+
flattenError?: number;
|
|
9263
|
+
/**
|
|
9264
|
+
* Defines the join type of the offset geometry.
|
|
9265
|
+
*
|
|
9266
|
+
* @default "round"
|
|
9267
|
+
*
|
|
9268
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany)
|
|
9269
|
+
*/
|
|
9270
|
+
joins?: "round" | "miter" | "bevel" | "square";
|
|
9271
|
+
/**
|
|
9272
|
+
* Defines when miter joins are replaced with bevel joins.
|
|
9273
|
+
*
|
|
9274
|
+
* @default 10
|
|
9275
|
+
*
|
|
9276
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany)
|
|
9277
|
+
*/
|
|
9278
|
+
miterLimit?: number;
|
|
9279
|
+
/**
|
|
9280
|
+
* The length unit of the offset distance.
|
|
9281
|
+
*
|
|
9282
|
+
* [Read more...](global.html#unit)
|
|
9283
|
+
*/
|
|
9284
|
+
unit?: LengthUnit;
|
|
9285
|
+
}
|
|
9286
|
+
|
|
9287
|
+
export interface offsetOperatorExecuteOptions {
|
|
9288
|
+
/**
|
|
9289
|
+
* The maximum distance of the resulting segments compared to the true circular arc (used only when `joins` is set to `"round"`).
|
|
9290
|
+
*
|
|
9291
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute)
|
|
9292
|
+
*/
|
|
9293
|
+
flattenError?: number;
|
|
9294
|
+
/**
|
|
9295
|
+
* Defines the join type of the offset geometry.
|
|
9296
|
+
*
|
|
9297
|
+
* @default "round"
|
|
9298
|
+
*
|
|
9299
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute)
|
|
9300
|
+
*/
|
|
9301
|
+
joins?: "round" | "miter" | "bevel" | "square";
|
|
9302
|
+
/**
|
|
9303
|
+
* Defines when miter joins are replaced with bevel joins.
|
|
9304
|
+
*
|
|
9305
|
+
* @default 10
|
|
9306
|
+
*
|
|
9307
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute)
|
|
9308
|
+
*/
|
|
9309
|
+
miterLimit?: number;
|
|
9310
|
+
/**
|
|
9311
|
+
* The length unit of the offset distance.
|
|
9312
|
+
*
|
|
9313
|
+
* [Read more...](global.html#unit)
|
|
9314
|
+
*/
|
|
9315
|
+
unit?: LengthUnit;
|
|
9316
|
+
}
|
|
9317
|
+
|
|
8842
9318
|
/**
|
|
8843
9319
|
* Performs a relational operation to determine if two 2D geometries of the same dimension overlap.
|
|
8844
9320
|
*
|
|
@@ -8869,8 +9345,7 @@ declare namespace __esri {
|
|
|
8869
9345
|
getNearestCoordinate(
|
|
8870
9346
|
geometry: Geometry,
|
|
8871
9347
|
point: Point,
|
|
8872
|
-
|
|
8873
|
-
calculateLeftRightSide?: boolean
|
|
9348
|
+
options?: proximityOperatorGetNearestCoordinateOptions
|
|
8874
9349
|
): ProximityResult;
|
|
8875
9350
|
/**
|
|
8876
9351
|
* Returns the nearest vertex on the geometry.
|
|
@@ -8893,6 +9368,23 @@ declare namespace __esri {
|
|
|
8893
9368
|
|
|
8894
9369
|
export const proximityOperator: proximityOperator;
|
|
8895
9370
|
|
|
9371
|
+
export interface proximityOperatorGetNearestCoordinateOptions {
|
|
9372
|
+
/**
|
|
9373
|
+
* When the parameter is set to true, this function will calculate the left/right side of a polyline or polygon.
|
|
9374
|
+
*
|
|
9375
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate)
|
|
9376
|
+
*/
|
|
9377
|
+
calculateLeftRightSide?: boolean;
|
|
9378
|
+
/**
|
|
9379
|
+
* When `geometry` is a polygon, the function will test if `point` is inside of the polygon.
|
|
9380
|
+
*
|
|
9381
|
+
* @default true
|
|
9382
|
+
*
|
|
9383
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate)
|
|
9384
|
+
*/
|
|
9385
|
+
testPolygonInterior?: boolean;
|
|
9386
|
+
}
|
|
9387
|
+
|
|
8896
9388
|
/**
|
|
8897
9389
|
* Object returned from the [getNearestCoordinate()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate), [getNearestVertex()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#nearestVegetNearestVertex), and [getNearestVertices()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertices) methods.
|
|
8898
9390
|
*
|
|
@@ -9891,7 +10383,7 @@ declare namespace __esri {
|
|
|
9891
10383
|
|
|
9892
10384
|
export class MeshGeoreferencedVertexSpace {
|
|
9893
10385
|
/**
|
|
9894
|
-
* A mesh vertex space that
|
|
10386
|
+
* A mesh vertex space indicating that mesh vertices are either absolute georeferenced map coordinates or relative offsets in map space to a fully georeferenced origin.
|
|
9895
10387
|
*
|
|
9896
10388
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshGeoreferencedVertexSpace.html)
|
|
9897
10389
|
*/
|
|
@@ -15104,6 +15596,12 @@ declare namespace __esri {
|
|
|
15104
15596
|
|
|
15105
15597
|
constructor(properties?: FeatureLayerProperties);
|
|
15106
15598
|
|
|
15599
|
+
/**
|
|
15600
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15601
|
+
*
|
|
15602
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
|
|
15603
|
+
*/
|
|
15604
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
15107
15605
|
/**
|
|
15108
15606
|
* Array of Chart Items of type WebMapWebChart available on the feature layer.
|
|
15109
15607
|
*
|
|
@@ -15353,6 +15851,12 @@ declare namespace __esri {
|
|
|
15353
15851
|
PublishableLayerProperties,
|
|
15354
15852
|
OperationalLayerProperties,
|
|
15355
15853
|
FeatureLayerBaseProperties {
|
|
15854
|
+
/**
|
|
15855
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
15856
|
+
*
|
|
15857
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
|
|
15858
|
+
*/
|
|
15859
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
15356
15860
|
/**
|
|
15357
15861
|
* Array of Chart Items of type WebMapWebChart available on the feature layer.
|
|
15358
15862
|
*
|
|
@@ -16347,6 +16851,12 @@ declare namespace __esri {
|
|
|
16347
16851
|
|
|
16348
16852
|
constructor(properties?: GeoJSONLayerProperties);
|
|
16349
16853
|
|
|
16854
|
+
/**
|
|
16855
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
16856
|
+
*
|
|
16857
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
|
|
16858
|
+
*/
|
|
16859
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
16350
16860
|
/**
|
|
16351
16861
|
* Describes the layer's supported capabilities.
|
|
16352
16862
|
*
|
|
@@ -16652,6 +17162,12 @@ declare namespace __esri {
|
|
|
16652
17162
|
FeatureEffectLayerProperties,
|
|
16653
17163
|
FeatureReductionLayerProperties,
|
|
16654
17164
|
OperationalLayerProperties {
|
|
17165
|
+
/**
|
|
17166
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
17167
|
+
*
|
|
17168
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
|
|
17169
|
+
*/
|
|
17170
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
16655
17171
|
/**
|
|
16656
17172
|
* Copyright information for the layer.
|
|
16657
17173
|
*
|
|
@@ -17724,6 +18240,7 @@ declare namespace __esri {
|
|
|
17724
18240
|
ArcGISImageService,
|
|
17725
18241
|
OperationalLayer,
|
|
17726
18242
|
PortalLayer,
|
|
18243
|
+
RasterPresetRendererMixin,
|
|
17727
18244
|
RefreshableLayer,
|
|
17728
18245
|
ScaleRangeLayer,
|
|
17729
18246
|
TemporalLayer,
|
|
@@ -17811,6 +18328,7 @@ declare namespace __esri {
|
|
|
17811
18328
|
ArcGISImageServiceProperties,
|
|
17812
18329
|
OperationalLayerProperties,
|
|
17813
18330
|
PortalLayerProperties,
|
|
18331
|
+
RasterPresetRendererMixinProperties,
|
|
17814
18332
|
RefreshableLayerProperties,
|
|
17815
18333
|
ScaleRangeLayerProperties,
|
|
17816
18334
|
TemporalLayerProperties,
|
|
@@ -18094,6 +18612,7 @@ declare namespace __esri {
|
|
|
18094
18612
|
ImageryTileMixin,
|
|
18095
18613
|
OperationalLayer,
|
|
18096
18614
|
PortalLayer,
|
|
18615
|
+
RasterPresetRendererMixin,
|
|
18097
18616
|
ScaleRangeLayer,
|
|
18098
18617
|
BlendLayer,
|
|
18099
18618
|
Clonable {}
|
|
@@ -18222,6 +18741,7 @@ declare namespace __esri {
|
|
|
18222
18741
|
ImageryTileMixinProperties,
|
|
18223
18742
|
OperationalLayerProperties,
|
|
18224
18743
|
PortalLayerProperties,
|
|
18744
|
+
RasterPresetRendererMixinProperties,
|
|
18225
18745
|
ScaleRangeLayerProperties,
|
|
18226
18746
|
BlendLayerProperties {
|
|
18227
18747
|
/**
|
|
@@ -22625,7 +23145,7 @@ declare namespace __esri {
|
|
|
22625
23145
|
/**
|
|
22626
23146
|
* Raster information retrieved from data source.
|
|
22627
23147
|
*
|
|
22628
|
-
* @deprecated since 4.29. Use {@link module:esri/layers/ImageryTileLayer#serviceRasterInfo serviceRasterInfo} instead.
|
|
23148
|
+
* @deprecated since version 4.29. Use {@link module:esri/layers/ImageryTileLayer#serviceRasterInfo serviceRasterInfo} instead.
|
|
22629
23149
|
*
|
|
22630
23150
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-ImageryTileMixin.html#rasterInfo)
|
|
22631
23151
|
*/
|
|
@@ -22943,6 +23463,36 @@ declare namespace __esri {
|
|
|
22943
23463
|
|
|
22944
23464
|
interface PublishableLayerProperties {}
|
|
22945
23465
|
|
|
23466
|
+
export class RasterPresetRendererMixin {
|
|
23467
|
+
/**
|
|
23468
|
+
* The active preset renderer name.
|
|
23469
|
+
*
|
|
23470
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-RasterPresetRendererMixin.html#activePresetRendererName)
|
|
23471
|
+
*/
|
|
23472
|
+
activePresetRendererName: string;
|
|
23473
|
+
/**
|
|
23474
|
+
* A list of preset renderers that defines a preferred renderer for a given multidimensional variable, a given raster function template, or an additional generic predefined renderer.
|
|
23475
|
+
*
|
|
23476
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-RasterPresetRendererMixin.html#presetRenderers)
|
|
23477
|
+
*/
|
|
23478
|
+
presetRenderers: RasterPresetRenderer[];
|
|
23479
|
+
}
|
|
23480
|
+
|
|
23481
|
+
interface RasterPresetRendererMixinProperties {
|
|
23482
|
+
/**
|
|
23483
|
+
* The active preset renderer name.
|
|
23484
|
+
*
|
|
23485
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-RasterPresetRendererMixin.html#activePresetRendererName)
|
|
23486
|
+
*/
|
|
23487
|
+
activePresetRendererName?: string;
|
|
23488
|
+
/**
|
|
23489
|
+
* A list of preset renderers that defines a preferred renderer for a given multidimensional variable, a given raster function template, or an additional generic predefined renderer.
|
|
23490
|
+
*
|
|
23491
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-RasterPresetRendererMixin.html#presetRenderers)
|
|
23492
|
+
*/
|
|
23493
|
+
presetRenderers?: RasterPresetRendererProperties[];
|
|
23494
|
+
}
|
|
23495
|
+
|
|
22946
23496
|
export class RefreshableLayer {
|
|
22947
23497
|
/**
|
|
22948
23498
|
* Refresh interval of the layer in minutes.
|
|
@@ -23369,6 +23919,12 @@ declare namespace __esri {
|
|
|
23369
23919
|
}
|
|
23370
23920
|
|
|
23371
23921
|
export interface wcsUtilsGetCapabilitiesOptions {
|
|
23922
|
+
/**
|
|
23923
|
+
* The version of the WCS service.
|
|
23924
|
+
*
|
|
23925
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#getCapabilities)
|
|
23926
|
+
*/
|
|
23927
|
+
version?: "1.0.0" | "1.1.0" | "1.1.1" | "1.1.2" | "2.0.1";
|
|
23372
23928
|
/**
|
|
23373
23929
|
* A list of key-value pairs of parameters to append to the url.
|
|
23374
23930
|
*
|
|
@@ -31117,6 +31673,18 @@ declare namespace __esri {
|
|
|
31117
31673
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#convolutionKernel)
|
|
31118
31674
|
*/
|
|
31119
31675
|
readonly convolutionKernel: rasterFunctionConstantsConvolutionKernel;
|
|
31676
|
+
/**
|
|
31677
|
+
* Curvature type constants used for the [curvature raster function](https://developers.arcgis.com/rest/services-reference/enterprise/raster-function-objects/#curvature).
|
|
31678
|
+
*
|
|
31679
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#curvatureType)
|
|
31680
|
+
*/
|
|
31681
|
+
readonly curvatureType: rasterFunctionConstantsCurvatureType;
|
|
31682
|
+
/**
|
|
31683
|
+
* Hillshade type constants used for the [hillshade raster function](https://developers.arcgis.com/rest/services-reference/enterprise/raster-function-objects/#hillshade).
|
|
31684
|
+
*
|
|
31685
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#hillshadeType)
|
|
31686
|
+
*/
|
|
31687
|
+
readonly hillshadeType: rasterFunctionConstantsHillshadeType;
|
|
31120
31688
|
/**
|
|
31121
31689
|
* The local arithmetic operations types.
|
|
31122
31690
|
*
|
|
@@ -32012,6 +32580,42 @@ declare namespace __esri {
|
|
|
32012
32580
|
none: number;
|
|
32013
32581
|
}
|
|
32014
32582
|
|
|
32583
|
+
export interface rasterFunctionConstantsCurvatureType {
|
|
32584
|
+
/**
|
|
32585
|
+
* Combines the profile and planform curvatures.
|
|
32586
|
+
*
|
|
32587
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#curvatureType)
|
|
32588
|
+
*/
|
|
32589
|
+
standard: number;
|
|
32590
|
+
/**
|
|
32591
|
+
* Is perpendicular to the direction of the maximum slope.
|
|
32592
|
+
*
|
|
32593
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#curvatureType)
|
|
32594
|
+
*/
|
|
32595
|
+
planform: number;
|
|
32596
|
+
/**
|
|
32597
|
+
* Is parallel to the slope and indicates the direction of maximum slope.
|
|
32598
|
+
*
|
|
32599
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#curvatureType)
|
|
32600
|
+
*/
|
|
32601
|
+
profile: number;
|
|
32602
|
+
}
|
|
32603
|
+
|
|
32604
|
+
export interface rasterFunctionConstantsHillshadeType {
|
|
32605
|
+
/**
|
|
32606
|
+
* Calculates hillshade from a single illumination direction.
|
|
32607
|
+
*
|
|
32608
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#hillshadeType)
|
|
32609
|
+
*/
|
|
32610
|
+
traditional: number;
|
|
32611
|
+
/**
|
|
32612
|
+
* Combines light from multiple sources to represent an enhanced visualization of the terrain.
|
|
32613
|
+
*
|
|
32614
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionConstants.html#hillshadeType)
|
|
32615
|
+
*/
|
|
32616
|
+
multidirectional: number;
|
|
32617
|
+
}
|
|
32618
|
+
|
|
32015
32619
|
export interface rasterFunctionConstantsLocalArithmeticOperation {
|
|
32016
32620
|
/**
|
|
32017
32621
|
* Adds (sums) the values of two rasters on a cell-by-cell basis.
|
|
@@ -32755,6 +33359,12 @@ declare namespace __esri {
|
|
|
32755
33359
|
colormap(
|
|
32756
33360
|
parameters: RasterColormapByMapParameters | RasterColormapByNameParameters | RasterColormapByRampParameters
|
|
32757
33361
|
): RasterFunction;
|
|
33362
|
+
/**
|
|
33363
|
+
* Works with a single band image service that has an internal color map.
|
|
33364
|
+
*
|
|
33365
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#colormapToRGB)
|
|
33366
|
+
*/
|
|
33367
|
+
colormapToRGB(parameters: rasterFunctionUtilsColormapToRGBParameters): RasterFunction;
|
|
32758
33368
|
/**
|
|
32759
33369
|
* Creates a Composite Bands function to combine multiple inputs into one multiband raster.
|
|
32760
33370
|
*
|
|
@@ -32863,6 +33473,12 @@ declare namespace __esri {
|
|
|
32863
33473
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#greaterThanEqual)
|
|
32864
33474
|
*/
|
|
32865
33475
|
greaterThanEqual(parameters: Math2RastersParameters): RasterFunction;
|
|
33476
|
+
/**
|
|
33477
|
+
* Creates a hillshade function.
|
|
33478
|
+
*
|
|
33479
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
33480
|
+
*/
|
|
33481
|
+
hillshade(parameters: rasterFunctionUtilsHillshadeParameters): RasterFunction;
|
|
32866
33482
|
/**
|
|
32867
33483
|
* Creates a raster function that converts each pixel value of a raster to an integer by truncation.
|
|
32868
33484
|
*
|
|
@@ -32971,6 +33587,17 @@ declare namespace __esri {
|
|
|
32971
33587
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#setNull)
|
|
32972
33588
|
*/
|
|
32973
33589
|
setNull(parameters: SetNullParameters): RasterFunction;
|
|
33590
|
+
/**
|
|
33591
|
+
* The ShadedRelief function creates a color 3D model of the terrain by merging the images from the elevation-coded and hillshade methods.
|
|
33592
|
+
*
|
|
33593
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#shadedRelief)
|
|
33594
|
+
*/
|
|
33595
|
+
shadedRelief(
|
|
33596
|
+
parameters:
|
|
33597
|
+
| ShadedReliefWithColorRampParameters
|
|
33598
|
+
| ShadedReliefWithColormapParameters
|
|
33599
|
+
| ShadedReliefWithColorRampNameParameters
|
|
33600
|
+
): RasterFunction;
|
|
32974
33601
|
/**
|
|
32975
33602
|
* Creates a raster function that calculates the sine of the pixels in a raster.
|
|
32976
33603
|
*
|
|
@@ -34337,6 +34964,15 @@ declare namespace __esri {
|
|
|
34337
34964
|
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
34338
34965
|
}
|
|
34339
34966
|
|
|
34967
|
+
export interface rasterFunctionUtilsColormapToRGBParameters {
|
|
34968
|
+
/**
|
|
34969
|
+
* The input raster.
|
|
34970
|
+
*
|
|
34971
|
+
* [Read more...](global.html#raster)
|
|
34972
|
+
*/
|
|
34973
|
+
raster?: RasterArgument[];
|
|
34974
|
+
}
|
|
34975
|
+
|
|
34340
34976
|
export interface rasterFunctionUtilsCompositeBandsParameters {
|
|
34341
34977
|
/**
|
|
34342
34978
|
* The input raster.
|
|
@@ -34448,7 +35084,7 @@ declare namespace __esri {
|
|
|
34448
35084
|
*
|
|
34449
35085
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#curvature)
|
|
34450
35086
|
*/
|
|
34451
|
-
curvatureType: "standard" | "
|
|
35087
|
+
curvatureType: "standard" | "planform" | "profile";
|
|
34452
35088
|
/**
|
|
34453
35089
|
* A ratio of z unit / xy unit, with optional exaggeration factored in.
|
|
34454
35090
|
*
|
|
@@ -34499,6 +35135,63 @@ declare namespace __esri {
|
|
|
34499
35135
|
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
34500
35136
|
}
|
|
34501
35137
|
|
|
35138
|
+
export interface rasterFunctionUtilsHillshadeParameters {
|
|
35139
|
+
/**
|
|
35140
|
+
* The hillshade type.
|
|
35141
|
+
*
|
|
35142
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35143
|
+
*/
|
|
35144
|
+
hillshadeType: "traditional" | "multi-directional";
|
|
35145
|
+
/**
|
|
35146
|
+
* Altitude is the sun's angle of elevation above the horizon and ranges from 0 to 90 degrees.
|
|
35147
|
+
*
|
|
35148
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35149
|
+
*/
|
|
35150
|
+
altitude?: number;
|
|
35151
|
+
/**
|
|
35152
|
+
* Azimuth is the sun's relative position along the horizon (in degrees).
|
|
35153
|
+
*
|
|
35154
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35155
|
+
*/
|
|
35156
|
+
azimuth?: number;
|
|
35157
|
+
/**
|
|
35158
|
+
* The zFactor is a scaling factor used to convert the elevation values for two purposes: 1.
|
|
35159
|
+
*
|
|
35160
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35161
|
+
*/
|
|
35162
|
+
zFactor: number;
|
|
35163
|
+
/**
|
|
35164
|
+
* The shaded result is scaled dynamically by adjusting the zFactor.
|
|
35165
|
+
*
|
|
35166
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35167
|
+
*/
|
|
35168
|
+
scalingType?: "none" | "adjusted";
|
|
35169
|
+
/**
|
|
35170
|
+
* It accounts for the altitude changes (or scale) as the viewer zooms in and out on the map display.
|
|
35171
|
+
*
|
|
35172
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35173
|
+
*/
|
|
35174
|
+
pixelSizePower?: number;
|
|
35175
|
+
/**
|
|
35176
|
+
* It accounts for changes in scale as the viewer zooms in and out on the map display.
|
|
35177
|
+
*
|
|
35178
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35179
|
+
*/
|
|
35180
|
+
pixelSizeZFactor?: number;
|
|
35181
|
+
/**
|
|
35182
|
+
* Use to avoid any resampling artifacts that may occur along the edges of a raster.
|
|
35183
|
+
*
|
|
35184
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35185
|
+
*/
|
|
35186
|
+
removeEdgeEffect?: boolean;
|
|
35187
|
+
/**
|
|
35188
|
+
* The output pixel type, default is unknown.
|
|
35189
|
+
*
|
|
35190
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#hillshade)
|
|
35191
|
+
*/
|
|
35192
|
+
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
35193
|
+
}
|
|
35194
|
+
|
|
34502
35195
|
export interface rasterFunctionUtilsMaskParameters {
|
|
34503
35196
|
/**
|
|
34504
35197
|
* The included values for each band.
|
|
@@ -34914,6 +35607,292 @@ declare namespace __esri {
|
|
|
34914
35607
|
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
34915
35608
|
}
|
|
34916
35609
|
|
|
35610
|
+
/**
|
|
35611
|
+
* The input parameters for creating a [shadedRelief](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#shadedRelief) function.
|
|
35612
|
+
*
|
|
35613
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35614
|
+
*/
|
|
35615
|
+
export interface ShadedReliefWithColormapParameters {
|
|
35616
|
+
/**
|
|
35617
|
+
* The hillshade type.
|
|
35618
|
+
*
|
|
35619
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35620
|
+
*/
|
|
35621
|
+
hillshadeType: "traditional" | "multi-directional";
|
|
35622
|
+
/**
|
|
35623
|
+
* Altitude is the sun's angle of elevation above the horizon and ranges from 0 to 90 degrees.
|
|
35624
|
+
*
|
|
35625
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35626
|
+
*/
|
|
35627
|
+
altitude?: number;
|
|
35628
|
+
/**
|
|
35629
|
+
* Azimuth is the sun's relative position along the horizon (in degrees).
|
|
35630
|
+
*
|
|
35631
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35632
|
+
*/
|
|
35633
|
+
azimuth?: number;
|
|
35634
|
+
/**
|
|
35635
|
+
* The zFactor is a scaling factor used to convert the elevation values for two purposes: 1.
|
|
35636
|
+
*
|
|
35637
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35638
|
+
*/
|
|
35639
|
+
zFactor: number;
|
|
35640
|
+
/**
|
|
35641
|
+
* The shaded result is scaled dynamically by adjusting the zFactor.
|
|
35642
|
+
*
|
|
35643
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35644
|
+
*/
|
|
35645
|
+
scalingType?: "none" | "adjusted";
|
|
35646
|
+
/**
|
|
35647
|
+
* It accounts for the altitude changes (or scale) as the viewer zooms in and out on the map display.
|
|
35648
|
+
*
|
|
35649
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35650
|
+
*/
|
|
35651
|
+
pixelSizePower?: number;
|
|
35652
|
+
/**
|
|
35653
|
+
* It accounts for changes in scale as the viewer zooms in and out on the map display.
|
|
35654
|
+
*
|
|
35655
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35656
|
+
*/
|
|
35657
|
+
pixelSizeZFactor?: number;
|
|
35658
|
+
/**
|
|
35659
|
+
* Use to avoid any resampling artifacts that may occur along the edges of a raster.
|
|
35660
|
+
*
|
|
35661
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35662
|
+
*/
|
|
35663
|
+
removeEdgeEffect?: boolean;
|
|
35664
|
+
/**
|
|
35665
|
+
* The color map used to generate the shaded relief.
|
|
35666
|
+
*
|
|
35667
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35668
|
+
*/
|
|
35669
|
+
colormap: number[][];
|
|
35670
|
+
/**
|
|
35671
|
+
* The input raster.
|
|
35672
|
+
*
|
|
35673
|
+
* [Read more...](global.html#raster)
|
|
35674
|
+
*/
|
|
35675
|
+
raster?: RasterArgument;
|
|
35676
|
+
/**
|
|
35677
|
+
* The output pixel type, default is unknown.
|
|
35678
|
+
*
|
|
35679
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColormapParameters)
|
|
35680
|
+
*/
|
|
35681
|
+
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
35682
|
+
}
|
|
35683
|
+
|
|
35684
|
+
/**
|
|
35685
|
+
* The input parameters for creating a [shadedRelief](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#shadedRelief) function.
|
|
35686
|
+
*
|
|
35687
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35688
|
+
*/
|
|
35689
|
+
export interface ShadedReliefWithColorRampNameParameters {
|
|
35690
|
+
/**
|
|
35691
|
+
* The hillshade type.
|
|
35692
|
+
*
|
|
35693
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35694
|
+
*/
|
|
35695
|
+
hillshadeType: "traditional" | "multi-directional";
|
|
35696
|
+
/**
|
|
35697
|
+
* Altitude is the sun's angle of elevation above the horizon and ranges from 0 to 90 degrees.
|
|
35698
|
+
*
|
|
35699
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35700
|
+
*/
|
|
35701
|
+
altitude?: number;
|
|
35702
|
+
/**
|
|
35703
|
+
* Azimuth is the sun's relative position along the horizon (in degrees).
|
|
35704
|
+
*
|
|
35705
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35706
|
+
*/
|
|
35707
|
+
azimuth?: number;
|
|
35708
|
+
/**
|
|
35709
|
+
* The zFactor is a scaling factor used to convert the elevation values for two purposes: 1.
|
|
35710
|
+
*
|
|
35711
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35712
|
+
*/
|
|
35713
|
+
zFactor: number;
|
|
35714
|
+
/**
|
|
35715
|
+
* The shaded result is scaled dynamically by adjusting the zFactor.
|
|
35716
|
+
*
|
|
35717
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35718
|
+
*/
|
|
35719
|
+
scalingType?: "none" | "adjusted";
|
|
35720
|
+
/**
|
|
35721
|
+
* It accounts for the altitude changes (or scale) as the viewer zooms in and out on the map display.
|
|
35722
|
+
*
|
|
35723
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35724
|
+
*/
|
|
35725
|
+
pixelSizePower?: number;
|
|
35726
|
+
/**
|
|
35727
|
+
* It accounts for changes in scale as the viewer zooms in and out on the map display.
|
|
35728
|
+
*
|
|
35729
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35730
|
+
*/
|
|
35731
|
+
pixelSizeZFactor?: number;
|
|
35732
|
+
/**
|
|
35733
|
+
* Use to avoid any resampling artifacts that may occur along the edges of a raster.
|
|
35734
|
+
*
|
|
35735
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35736
|
+
*/
|
|
35737
|
+
removeEdgeEffect?: boolean;
|
|
35738
|
+
/**
|
|
35739
|
+
* The color ramp name used to generate the shaded relief.
|
|
35740
|
+
*
|
|
35741
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35742
|
+
*/
|
|
35743
|
+
colorRampName?:
|
|
35744
|
+
| "aspect"
|
|
35745
|
+
| "black-to-white"
|
|
35746
|
+
| "blue-bright"
|
|
35747
|
+
| "blue-light-to-dark"
|
|
35748
|
+
| "blue-green-bright"
|
|
35749
|
+
| "blue-green-light-to-dark"
|
|
35750
|
+
| "brown-light-to-dark"
|
|
35751
|
+
| "brown-to-blue-green-diverging-right"
|
|
35752
|
+
| "brown-to-blue-green-diverging-dark"
|
|
35753
|
+
| "coefficient-bias"
|
|
35754
|
+
| "cold-to-hot-diverging"
|
|
35755
|
+
| "condition-number"
|
|
35756
|
+
| "cyan-to-purple"
|
|
35757
|
+
| "cyan-light-to-blue-dark"
|
|
35758
|
+
| "distance"
|
|
35759
|
+
| "elevation1"
|
|
35760
|
+
| "elevation2"
|
|
35761
|
+
| "errors"
|
|
35762
|
+
| "gray-light-to-dark"
|
|
35763
|
+
| "green-bright"
|
|
35764
|
+
| "green-light-to-dark"
|
|
35765
|
+
| "green-to-blue"
|
|
35766
|
+
| "orange-bright"
|
|
35767
|
+
| "orange-light-to-dark"
|
|
35768
|
+
| "partial-spectrum"
|
|
35769
|
+
| "partial-spectrum-1-diverging"
|
|
35770
|
+
| "partial-spectrum-2-diverging"
|
|
35771
|
+
| "pink-to-yellow-green-diverging-bright"
|
|
35772
|
+
| "pink-to-yellow-green-diverging-dark"
|
|
35773
|
+
| "precipitation"
|
|
35774
|
+
| "prediction"
|
|
35775
|
+
| "purple-bright"
|
|
35776
|
+
| "purple-to-green-diverging-bright"
|
|
35777
|
+
| "purple-to-green-diverging-dark"
|
|
35778
|
+
| "purple-blue-bright"
|
|
35779
|
+
| "purple-blue-light-to-dark"
|
|
35780
|
+
| "purple-red-bright"
|
|
35781
|
+
| "purple-red-light-to-dark"
|
|
35782
|
+
| "red-bright"
|
|
35783
|
+
| "red-light-to-dark"
|
|
35784
|
+
| "red-to-blue-diverging-bright"
|
|
35785
|
+
| "red-to-blue-diverging-dark"
|
|
35786
|
+
| "red-to-green"
|
|
35787
|
+
| "red-to-green-diverging-bright"
|
|
35788
|
+
| "red-to-green-diverging-dark"
|
|
35789
|
+
| "slope"
|
|
35790
|
+
| "spectrum-full-bright"
|
|
35791
|
+
| "spectrum-full-dark"
|
|
35792
|
+
| "spectrum-full-light"
|
|
35793
|
+
| "surface"
|
|
35794
|
+
| "temperature"
|
|
35795
|
+
| "white-to-black"
|
|
35796
|
+
| "yellow-to-dark-red"
|
|
35797
|
+
| "yellow-to-green-to-dark-blue"
|
|
35798
|
+
| "yellow-to-red"
|
|
35799
|
+
| "yellow-green-bright"
|
|
35800
|
+
| "yellow-green-light-to-dark"
|
|
35801
|
+
| "random"
|
|
35802
|
+
| "elevation"
|
|
35803
|
+
| "gray"
|
|
35804
|
+
| "hillshade"
|
|
35805
|
+
| "ndvi"
|
|
35806
|
+
| "ndvi2"
|
|
35807
|
+
| "ndvi3";
|
|
35808
|
+
/**
|
|
35809
|
+
* The input raster.
|
|
35810
|
+
*
|
|
35811
|
+
* [Read more...](global.html#raster)
|
|
35812
|
+
*/
|
|
35813
|
+
raster?: RasterArgument;
|
|
35814
|
+
/**
|
|
35815
|
+
* The output pixel type, default is unknown.
|
|
35816
|
+
*
|
|
35817
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampNameParameters)
|
|
35818
|
+
*/
|
|
35819
|
+
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
35820
|
+
}
|
|
35821
|
+
|
|
35822
|
+
/**
|
|
35823
|
+
* The input parameters for creating a [shadedRelief](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#shadedRelief) function.
|
|
35824
|
+
*
|
|
35825
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35826
|
+
*/
|
|
35827
|
+
export interface ShadedReliefWithColorRampParameters {
|
|
35828
|
+
/**
|
|
35829
|
+
* The hillshade type.
|
|
35830
|
+
*
|
|
35831
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35832
|
+
*/
|
|
35833
|
+
hillshadeType: "traditional" | "multi-directional";
|
|
35834
|
+
/**
|
|
35835
|
+
* Altitude is the sun's angle of elevation above the horizon and ranges from 0 to 90 degrees.
|
|
35836
|
+
*
|
|
35837
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35838
|
+
*/
|
|
35839
|
+
altitude?: number;
|
|
35840
|
+
/**
|
|
35841
|
+
* Azimuth is the sun's relative position along the horizon (in degrees).
|
|
35842
|
+
*
|
|
35843
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35844
|
+
*/
|
|
35845
|
+
azimuth?: number;
|
|
35846
|
+
/**
|
|
35847
|
+
* The zFactor is a scaling factor used to convert the elevation values for two purposes: 1.
|
|
35848
|
+
*
|
|
35849
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35850
|
+
*/
|
|
35851
|
+
zFactor: number;
|
|
35852
|
+
/**
|
|
35853
|
+
* The shaded result is scaled dynamically by adjusting the zFactor.
|
|
35854
|
+
*
|
|
35855
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35856
|
+
*/
|
|
35857
|
+
scalingType?: "none" | "adjusted";
|
|
35858
|
+
/**
|
|
35859
|
+
* It accounts for the altitude changes (or scale) as the viewer zooms in and out on the map display.
|
|
35860
|
+
*
|
|
35861
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35862
|
+
*/
|
|
35863
|
+
pixelSizePower?: number;
|
|
35864
|
+
/**
|
|
35865
|
+
* It accounts for changes in scale as the viewer zooms in and out on the map display.
|
|
35866
|
+
*
|
|
35867
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35868
|
+
*/
|
|
35869
|
+
pixelSizeZFactor?: number;
|
|
35870
|
+
/**
|
|
35871
|
+
* Use to avoid any resampling artifacts that may occur along the edges of a raster.
|
|
35872
|
+
*
|
|
35873
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35874
|
+
*/
|
|
35875
|
+
removeEdgeEffect?: boolean;
|
|
35876
|
+
/**
|
|
35877
|
+
* The color ramp used to generate the shaded relief.
|
|
35878
|
+
*
|
|
35879
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35880
|
+
*/
|
|
35881
|
+
colorRamp: AlgorithmicColorRamp | MultipartColorRamp;
|
|
35882
|
+
/**
|
|
35883
|
+
* The input raster.
|
|
35884
|
+
*
|
|
35885
|
+
* [Read more...](global.html#raster)
|
|
35886
|
+
*/
|
|
35887
|
+
raster?: RasterArgument;
|
|
35888
|
+
/**
|
|
35889
|
+
* The output pixel type, default is unknown.
|
|
35890
|
+
*
|
|
35891
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-rasterFunctionUtils.html#ShadedReliefWithColorRampParameters)
|
|
35892
|
+
*/
|
|
35893
|
+
outputPixelType?: "unknown" | "s8" | "s16" | "s32" | "u8" | "u16" | "u32" | "f32" | "f64";
|
|
35894
|
+
}
|
|
35895
|
+
|
|
34917
35896
|
export interface RasterInfo extends Accessor, JSONSupport {}
|
|
34918
35897
|
|
|
34919
35898
|
export class RasterInfo {
|
|
@@ -36965,6 +37944,12 @@ declare namespace __esri {
|
|
|
36965
37944
|
|
|
36966
37945
|
constructor(properties?: SubtypeSublayerProperties);
|
|
36967
37946
|
|
|
37947
|
+
/**
|
|
37948
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
37949
|
+
*
|
|
37950
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
|
|
37951
|
+
*/
|
|
37952
|
+
attributeTableTemplate: AttributeTableTemplate;
|
|
36968
37953
|
/**
|
|
36969
37954
|
* Describes the layer's supported capabilities.
|
|
36970
37955
|
*
|
|
@@ -37257,6 +38242,12 @@ declare namespace __esri {
|
|
|
37257
38242
|
}
|
|
37258
38243
|
|
|
37259
38244
|
interface SubtypeSublayerProperties extends LoadableProperties {
|
|
38245
|
+
/**
|
|
38246
|
+
* The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
|
|
38247
|
+
*
|
|
38248
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
|
|
38249
|
+
*/
|
|
38250
|
+
attributeTableTemplate?: AttributeTableTemplateProperties;
|
|
37260
38251
|
/**
|
|
37261
38252
|
* Determines if the layer is editable.
|
|
37262
38253
|
*
|
|
@@ -39111,6 +40102,14 @@ declare namespace __esri {
|
|
|
39111
40102
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#portalItem)
|
|
39112
40103
|
*/
|
|
39113
40104
|
portalItem: PortalItem;
|
|
40105
|
+
/**
|
|
40106
|
+
* Refresh interval of the layer in minutes.
|
|
40107
|
+
*
|
|
40108
|
+
* @default 0
|
|
40109
|
+
*
|
|
40110
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#refreshInterval)
|
|
40111
|
+
*/
|
|
40112
|
+
refreshInterval: number;
|
|
39114
40113
|
/**
|
|
39115
40114
|
* The spatial reference of the layer.
|
|
39116
40115
|
*
|
|
@@ -39186,6 +40185,12 @@ declare namespace __esri {
|
|
|
39186
40185
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#loadStyle)
|
|
39187
40186
|
*/
|
|
39188
40187
|
loadStyle(style: string | any, options?: VectorTileLayerLoadStyleOptions): Promise<any>;
|
|
40188
|
+
/**
|
|
40189
|
+
* Fetches all the data for the layer.
|
|
40190
|
+
*
|
|
40191
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#refresh)
|
|
40192
|
+
*/
|
|
40193
|
+
refresh(): void;
|
|
39189
40194
|
/**
|
|
39190
40195
|
* Updates the [layout](https://maplibre.org/maplibre-style-spec/layers/#layout-property) properties to the specified [style layer](https://maplibre.org/maplibre-style-spec/layers/).
|
|
39191
40196
|
*
|
|
@@ -39217,6 +40222,14 @@ declare namespace __esri {
|
|
|
39217
40222
|
*/
|
|
39218
40223
|
setStyleLayerVisibility(layerId: string, visibility: "none" | "visible"): void;
|
|
39219
40224
|
|
|
40225
|
+
on(name: "refresh", eventHandler: VectorTileLayerRefreshEventHandler): IHandle;
|
|
40226
|
+
|
|
40227
|
+
on(name: "layerview-create", eventHandler: VectorTileLayerLayerviewCreateEventHandler): IHandle;
|
|
40228
|
+
|
|
40229
|
+
on(name: "layerview-create-error", eventHandler: VectorTileLayerLayerviewCreateErrorEventHandler): IHandle;
|
|
40230
|
+
|
|
40231
|
+
on(name: "layerview-destroy", eventHandler: VectorTileLayerLayerviewDestroyEventHandler): IHandle;
|
|
40232
|
+
|
|
39220
40233
|
static fromJSON(json: any): VectorTileLayer;
|
|
39221
40234
|
}
|
|
39222
40235
|
|
|
@@ -39249,6 +40262,14 @@ declare namespace __esri {
|
|
|
39249
40262
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#portalItem)
|
|
39250
40263
|
*/
|
|
39251
40264
|
portalItem?: PortalItemProperties;
|
|
40265
|
+
/**
|
|
40266
|
+
* Refresh interval of the layer in minutes.
|
|
40267
|
+
*
|
|
40268
|
+
* @default 0
|
|
40269
|
+
*
|
|
40270
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html#refreshInterval)
|
|
40271
|
+
*/
|
|
40272
|
+
refreshInterval?: number;
|
|
39252
40273
|
/**
|
|
39253
40274
|
* The spatial reference of the layer.
|
|
39254
40275
|
*
|
|
@@ -39303,6 +40324,28 @@ declare namespace __esri {
|
|
|
39303
40324
|
data: ArrayBuffer;
|
|
39304
40325
|
}
|
|
39305
40326
|
|
|
40327
|
+
export interface VectorTileLayerLayerviewCreateErrorEvent {
|
|
40328
|
+
error: Error;
|
|
40329
|
+
|
|
40330
|
+
view: View;
|
|
40331
|
+
}
|
|
40332
|
+
|
|
40333
|
+
export interface VectorTileLayerLayerviewCreateEvent {
|
|
40334
|
+
layerView: LayerView;
|
|
40335
|
+
|
|
40336
|
+
view: View;
|
|
40337
|
+
}
|
|
40338
|
+
|
|
40339
|
+
export interface VectorTileLayerLayerviewDestroyEvent {
|
|
40340
|
+
layerView: LayerView;
|
|
40341
|
+
|
|
40342
|
+
view: View;
|
|
40343
|
+
}
|
|
40344
|
+
|
|
40345
|
+
export interface VectorTileLayerRefreshEvent {
|
|
40346
|
+
dataChanged: boolean;
|
|
40347
|
+
}
|
|
40348
|
+
|
|
39306
40349
|
/**
|
|
39307
40350
|
* A description of each image contained in the sprite.
|
|
39308
40351
|
*
|
|
@@ -39622,7 +40665,7 @@ declare namespace __esri {
|
|
|
39622
40665
|
*
|
|
39623
40666
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#created)
|
|
39624
40667
|
*/
|
|
39625
|
-
created: Date;
|
|
40668
|
+
readonly created: Date;
|
|
39626
40669
|
/**
|
|
39627
40670
|
* The current time of the video layer in seconds.
|
|
39628
40671
|
*
|
|
@@ -39656,7 +40699,7 @@ declare namespace __esri {
|
|
|
39656
40699
|
*
|
|
39657
40700
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#frameCount)
|
|
39658
40701
|
*/
|
|
39659
|
-
frameCount: number;
|
|
40702
|
+
readonly frameCount: number;
|
|
39660
40703
|
/**
|
|
39661
40704
|
* The initial extent of the video layer.
|
|
39662
40705
|
*
|
|
@@ -39726,7 +40769,7 @@ declare namespace __esri {
|
|
|
39726
40769
|
*
|
|
39727
40770
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#sourceQuality)
|
|
39728
40771
|
*/
|
|
39729
|
-
sourceQuality: "sd" | "hd" | "fhd" | "qhd" | "uhd";
|
|
40772
|
+
readonly sourceQuality: "sd" | "hd" | "fhd" | "qhd" | "uhd";
|
|
39730
40773
|
/**
|
|
39731
40774
|
* The source type of the video layer.
|
|
39732
40775
|
*
|
|
@@ -39777,6 +40820,12 @@ declare namespace __esri {
|
|
|
39777
40820
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#videoHeight)
|
|
39778
40821
|
*/
|
|
39779
40822
|
readonly videoHeight: number;
|
|
40823
|
+
/**
|
|
40824
|
+
* Defines layer information for video layers published within the same video service
|
|
40825
|
+
*
|
|
40826
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#videoLayersInfo)
|
|
40827
|
+
*/
|
|
40828
|
+
readonly videoLayersInfo: any[];
|
|
39780
40829
|
/**
|
|
39781
40830
|
* The time extent of the video.
|
|
39782
40831
|
*
|
|
@@ -39835,14 +40884,6 @@ declare namespace __esri {
|
|
|
39835
40884
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#copyright)
|
|
39836
40885
|
*/
|
|
39837
40886
|
copyright?: string;
|
|
39838
|
-
/**
|
|
39839
|
-
* The date the video layer was created.
|
|
39840
|
-
*
|
|
39841
|
-
* @default null
|
|
39842
|
-
*
|
|
39843
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#created)
|
|
39844
|
-
*/
|
|
39845
|
-
created?: DateProperties;
|
|
39846
40887
|
/**
|
|
39847
40888
|
* The current time of the video layer in seconds.
|
|
39848
40889
|
*
|
|
@@ -39857,14 +40898,6 @@ declare namespace __esri {
|
|
|
39857
40898
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#description)
|
|
39858
40899
|
*/
|
|
39859
40900
|
description?: string;
|
|
39860
|
-
/**
|
|
39861
|
-
* The total number of frames in the video layer.
|
|
39862
|
-
*
|
|
39863
|
-
* @default null
|
|
39864
|
-
*
|
|
39865
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#frameCount)
|
|
39866
|
-
*/
|
|
39867
|
-
frameCount?: number;
|
|
39868
40901
|
/**
|
|
39869
40902
|
* The initial extent of the video layer.
|
|
39870
40903
|
*
|
|
@@ -39897,14 +40930,6 @@ declare namespace __esri {
|
|
|
39897
40930
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#playbackRate)
|
|
39898
40931
|
*/
|
|
39899
40932
|
playbackRate?: number;
|
|
39900
|
-
/**
|
|
39901
|
-
* The source quality of the video layer.
|
|
39902
|
-
*
|
|
39903
|
-
* @default null
|
|
39904
|
-
*
|
|
39905
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#sourceQuality)
|
|
39906
|
-
*/
|
|
39907
|
-
sourceQuality?: "sd" | "hd" | "fhd" | "qhd" | "uhd";
|
|
39908
40933
|
/**
|
|
39909
40934
|
* The spatial reference of the video layer.
|
|
39910
40935
|
*
|
|
@@ -46686,18 +47711,47 @@ declare namespace __esri {
|
|
|
46686
47711
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html)
|
|
46687
47712
|
*/
|
|
46688
47713
|
interface UtilityNetworkAssociationType {
|
|
47714
|
+
/**
|
|
47715
|
+
* This property is used to filter the associations by asset group.
|
|
47716
|
+
*
|
|
47717
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#associatedAssetGroup)
|
|
47718
|
+
*/
|
|
46689
47719
|
associatedAssetGroup: number;
|
|
46690
|
-
|
|
47720
|
+
/**
|
|
47721
|
+
* This property is used to filter the associations by asset type.
|
|
47722
|
+
*
|
|
47723
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#associatedAssetType)
|
|
47724
|
+
*/
|
|
46691
47725
|
associatedAssetType: number;
|
|
46692
|
-
|
|
47726
|
+
/**
|
|
47727
|
+
* This property is used to filter the associations by network sourceId.
|
|
47728
|
+
*
|
|
47729
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#associatedNetworkSourceId)
|
|
47730
|
+
*/
|
|
46693
47731
|
associatedNetworkSourceId: number;
|
|
46694
|
-
|
|
47732
|
+
/**
|
|
47733
|
+
* The description for the [type](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#type) of association in the list of association [types](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#type) on the popup.
|
|
47734
|
+
*
|
|
47735
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#description)
|
|
47736
|
+
*/
|
|
46695
47737
|
description: string;
|
|
46696
|
-
|
|
47738
|
+
/**
|
|
47739
|
+
* Triggers viewModel to query the proper features when a specific type of association is selected from the list.
|
|
47740
|
+
*
|
|
47741
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#open)
|
|
47742
|
+
*/
|
|
46697
47743
|
open: boolean;
|
|
46698
|
-
|
|
47744
|
+
/**
|
|
47745
|
+
* The title for the [type](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#type) of association in the list of association [types](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#type) on the popup.
|
|
47746
|
+
*
|
|
47747
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#title)
|
|
47748
|
+
*/
|
|
46699
47749
|
title: string;
|
|
46700
|
-
|
|
47750
|
+
/**
|
|
47751
|
+
* The type of association.
|
|
47752
|
+
*
|
|
47753
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-support-UtilityNetworkAssociationType.html#type)
|
|
47754
|
+
*/
|
|
46701
47755
|
type: "attachment" | "connectivity" | "container" | "content" | "structure";
|
|
46702
47756
|
}
|
|
46703
47757
|
|
|
@@ -51757,7 +52811,7 @@ declare namespace __esri {
|
|
|
51757
52811
|
/**
|
|
51758
52812
|
* The input statistics can be specified through the statistics property.
|
|
51759
52813
|
*
|
|
51760
|
-
* @deprecated since 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
|
|
52814
|
+
* @deprecated since version 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
|
|
51761
52815
|
*
|
|
51762
52816
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#statistics)
|
|
51763
52817
|
*/
|
|
@@ -51869,7 +52923,7 @@ declare namespace __esri {
|
|
|
51869
52923
|
/**
|
|
51870
52924
|
* The input statistics can be specified through the statistics property.
|
|
51871
52925
|
*
|
|
51872
|
-
* @deprecated since 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
|
|
52926
|
+
* @deprecated since version 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
|
|
51873
52927
|
*
|
|
51874
52928
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#statistics)
|
|
51875
52929
|
*/
|
|
@@ -52867,6 +53921,98 @@ declare namespace __esri {
|
|
|
52867
53921
|
|
|
52868
53922
|
export const supportJsonUtils: supportJsonUtils;
|
|
52869
53923
|
|
|
53924
|
+
export interface RasterPresetRenderer extends Accessor, Clonable, JSONSupport {}
|
|
53925
|
+
|
|
53926
|
+
export class RasterPresetRenderer {
|
|
53927
|
+
/**
|
|
53928
|
+
* Defines a predefined raster renderer associated with an [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#presetRenderers) or [ImageryTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#presetRenderers).
|
|
53929
|
+
*
|
|
53930
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html)
|
|
53931
|
+
*/
|
|
53932
|
+
|
|
53933
|
+
constructor(properties?: RasterPresetRendererProperties);
|
|
53934
|
+
|
|
53935
|
+
/**
|
|
53936
|
+
* The band ids associated with the raster renderer.
|
|
53937
|
+
*
|
|
53938
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#bandIds)
|
|
53939
|
+
*/
|
|
53940
|
+
bandIds: number[];
|
|
53941
|
+
/**
|
|
53942
|
+
* Specifies how to match the [renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#renderer).
|
|
53943
|
+
*
|
|
53944
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method)
|
|
53945
|
+
*/
|
|
53946
|
+
method: "raster-function-template" | "variable" | "none";
|
|
53947
|
+
/**
|
|
53948
|
+
* The name of the preset renderer.
|
|
53949
|
+
*
|
|
53950
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#name)
|
|
53951
|
+
*/
|
|
53952
|
+
name: string;
|
|
53953
|
+
/**
|
|
53954
|
+
* The raster renderer associated with the selected [value](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#value) and [method](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method).
|
|
53955
|
+
*
|
|
53956
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#renderer)
|
|
53957
|
+
*/
|
|
53958
|
+
renderer:
|
|
53959
|
+
| ClassBreaksRenderer
|
|
53960
|
+
| UniqueValueRenderer
|
|
53961
|
+
| RasterStretchRenderer
|
|
53962
|
+
| RasterShadedReliefRenderer
|
|
53963
|
+
| RasterColormapRenderer
|
|
53964
|
+
| VectorFieldRenderer
|
|
53965
|
+
| FlowRenderer;
|
|
53966
|
+
/**
|
|
53967
|
+
* The corresponding value of selected [method](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method).
|
|
53968
|
+
*
|
|
53969
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#value)
|
|
53970
|
+
*/
|
|
53971
|
+
value: string;
|
|
53972
|
+
|
|
53973
|
+
static fromJSON(json: any): RasterPresetRenderer;
|
|
53974
|
+
}
|
|
53975
|
+
|
|
53976
|
+
interface RasterPresetRendererProperties {
|
|
53977
|
+
/**
|
|
53978
|
+
* The band ids associated with the raster renderer.
|
|
53979
|
+
*
|
|
53980
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#bandIds)
|
|
53981
|
+
*/
|
|
53982
|
+
bandIds?: number[];
|
|
53983
|
+
/**
|
|
53984
|
+
* Specifies how to match the [renderer](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#renderer).
|
|
53985
|
+
*
|
|
53986
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method)
|
|
53987
|
+
*/
|
|
53988
|
+
method?: "raster-function-template" | "variable" | "none";
|
|
53989
|
+
/**
|
|
53990
|
+
* The name of the preset renderer.
|
|
53991
|
+
*
|
|
53992
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#name)
|
|
53993
|
+
*/
|
|
53994
|
+
name?: string;
|
|
53995
|
+
/**
|
|
53996
|
+
* The raster renderer associated with the selected [value](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#value) and [method](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method).
|
|
53997
|
+
*
|
|
53998
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#renderer)
|
|
53999
|
+
*/
|
|
54000
|
+
renderer?:
|
|
54001
|
+
| (ClassBreaksRendererProperties & { type: "class-breaks" })
|
|
54002
|
+
| (UniqueValueRendererProperties & { type: "unique-value" })
|
|
54003
|
+
| (RasterStretchRendererProperties & { type: "raster-stretch" })
|
|
54004
|
+
| (RasterShadedReliefRendererProperties & { type: "raster-shaded-relief" })
|
|
54005
|
+
| (RasterColormapRendererProperties & { type: "raster-colormap" })
|
|
54006
|
+
| (VectorFieldRendererProperties & { type: "vector-field" })
|
|
54007
|
+
| (FlowRendererProperties & { type: "flow" });
|
|
54008
|
+
/**
|
|
54009
|
+
* The corresponding value of selected [method](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#method).
|
|
54010
|
+
*
|
|
54011
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-support-RasterPresetRenderer.html#value)
|
|
54012
|
+
*/
|
|
54013
|
+
value?: string;
|
|
54014
|
+
}
|
|
54015
|
+
|
|
52870
54016
|
export interface UniqueValue extends Accessor, JSONSupport {}
|
|
52871
54017
|
|
|
52872
54018
|
export class UniqueValue {
|
|
@@ -82767,7 +83913,7 @@ declare namespace __esri {
|
|
|
82767
83913
|
/**
|
|
82768
83914
|
* Extracts time slider settings from a [WebMap](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html) if the webmap contains a time slider widget definition.
|
|
82769
83915
|
*
|
|
82770
|
-
* @deprecated since 4.30. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
83916
|
+
* @deprecated since version 4.30. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
82771
83917
|
*
|
|
82772
83918
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-support-timeUtils.html#getTimeSliderSettingsFromWebMap)
|
|
82773
83919
|
*/
|
|
@@ -83240,6 +84386,12 @@ declare namespace __esri {
|
|
|
83240
84386
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMAnimatedSymbolProperties)
|
|
83241
84387
|
*/
|
|
83242
84388
|
repeatDelay?: number;
|
|
84389
|
+
/**
|
|
84390
|
+
* _Since 4.31_ The easing method to use when animating the symbol.
|
|
84391
|
+
*
|
|
84392
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMAnimatedSymbolProperties)
|
|
84393
|
+
*/
|
|
84394
|
+
easing?: "Linear" | "EaseIn" | "EaseOut" | "EaseInOut";
|
|
83243
84395
|
}
|
|
83244
84396
|
|
|
83245
84397
|
/**
|
|
@@ -83590,7 +84742,7 @@ declare namespace __esri {
|
|
|
83590
84742
|
}
|
|
83591
84743
|
|
|
83592
84744
|
/**
|
|
83593
|
-
* Represents the
|
|
84745
|
+
* Represents the scale geometric effect which creates a dynamic line or polygon scaled by a specified factor.
|
|
83594
84746
|
*
|
|
83595
84747
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMGeometricEffectScale)
|
|
83596
84748
|
*/
|
|
@@ -84350,11 +85502,17 @@ declare namespace __esri {
|
|
|
84350
85502
|
*/
|
|
84351
85503
|
tintColor?: number[];
|
|
84352
85504
|
/**
|
|
84353
|
-
* _Since 4.24_ The collection of symbol properties that apply when the symbol layer has animation data.
|
|
85505
|
+
* _Since 4.24_ The collection of symbol properties that apply when the symbol layer has animation data (animated GIF or PNG).
|
|
84354
85506
|
*
|
|
84355
85507
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMPictureMarker)
|
|
84356
85508
|
*/
|
|
84357
85509
|
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85510
|
+
/**
|
|
85511
|
+
* _Since 4.31_ The animations applied to the picure marker.
|
|
85512
|
+
*
|
|
85513
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMPictureMarker)
|
|
85514
|
+
*/
|
|
85515
|
+
animations?: CIMSymbolAnimation[];
|
|
84358
85516
|
}
|
|
84359
85517
|
|
|
84360
85518
|
/**
|
|
@@ -84481,6 +85639,12 @@ declare namespace __esri {
|
|
|
84481
85639
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMPointSymbol)
|
|
84482
85640
|
*/
|
|
84483
85641
|
useRealWorldSymbolSizes?: boolean;
|
|
85642
|
+
/**
|
|
85643
|
+
* _Since 4.31_ The animations applied globally to the entire symbol.
|
|
85644
|
+
*
|
|
85645
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMPointSymbol)
|
|
85646
|
+
*/
|
|
85647
|
+
animations?: CIMSymbolAnimation[];
|
|
84484
85648
|
}
|
|
84485
85649
|
|
|
84486
85650
|
/**
|
|
@@ -84547,6 +85711,12 @@ declare namespace __esri {
|
|
|
84547
85711
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSolidFill)
|
|
84548
85712
|
*/
|
|
84549
85713
|
color: number[];
|
|
85714
|
+
/**
|
|
85715
|
+
* _Since 4.31_ The animations applied to the solid fill.
|
|
85716
|
+
*
|
|
85717
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSolidFill)
|
|
85718
|
+
*/
|
|
85719
|
+
animations?: CIMSymbolAnimation[];
|
|
84550
85720
|
}
|
|
84551
85721
|
|
|
84552
85722
|
/**
|
|
@@ -84610,6 +85780,187 @@ declare namespace __esri {
|
|
|
84610
85780
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSolidStroke)
|
|
84611
85781
|
*/
|
|
84612
85782
|
miterLimit?: number;
|
|
85783
|
+
/**
|
|
85784
|
+
* _Since 4.31_ The animations applied to the solid stroke.
|
|
85785
|
+
*
|
|
85786
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSolidStroke)
|
|
85787
|
+
*/
|
|
85788
|
+
animations?: CIMSymbolAnimation[];
|
|
85789
|
+
}
|
|
85790
|
+
|
|
85791
|
+
/**
|
|
85792
|
+
* Represents a symbol animation used to animate the appearance of a symbol.
|
|
85793
|
+
*
|
|
85794
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimation)
|
|
85795
|
+
*/
|
|
85796
|
+
export type CIMSymbolAnimation =
|
|
85797
|
+
| CIMSymbolAnimationSize
|
|
85798
|
+
| CIMSymbolAnimationScale
|
|
85799
|
+
| CIMSymbolAnimationColor
|
|
85800
|
+
| CIMSymbolAnimationTransparency
|
|
85801
|
+
| CIMSymbolAnimationRotation
|
|
85802
|
+
| CIMSymbolAnimationOffset;
|
|
85803
|
+
|
|
85804
|
+
/**
|
|
85805
|
+
* Represents a symbol animation that changes the color of a symbol.
|
|
85806
|
+
*
|
|
85807
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationColor)
|
|
85808
|
+
*/
|
|
85809
|
+
export interface CIMSymbolAnimationColor {
|
|
85810
|
+
/**
|
|
85811
|
+
* The type of animation.
|
|
85812
|
+
*
|
|
85813
|
+
* [Read more...](global.html#type)
|
|
85814
|
+
*/
|
|
85815
|
+
type: "CIMSymbolAnimationColor";
|
|
85816
|
+
/**
|
|
85817
|
+
* The color of the symbol to animate to.
|
|
85818
|
+
*
|
|
85819
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationColor)
|
|
85820
|
+
*/
|
|
85821
|
+
toColor: Color;
|
|
85822
|
+
/**
|
|
85823
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85824
|
+
*
|
|
85825
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationColor)
|
|
85826
|
+
*/
|
|
85827
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85828
|
+
}
|
|
85829
|
+
|
|
85830
|
+
/**
|
|
85831
|
+
* Represents a symbol animation that offsets a symbol.
|
|
85832
|
+
*
|
|
85833
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationOffset)
|
|
85834
|
+
*/
|
|
85835
|
+
export interface CIMSymbolAnimationOffset {
|
|
85836
|
+
/**
|
|
85837
|
+
* The type of animation.
|
|
85838
|
+
*
|
|
85839
|
+
* [Read more...](global.html#type)
|
|
85840
|
+
*/
|
|
85841
|
+
type: "CIMSymbolAnimationOffset";
|
|
85842
|
+
/**
|
|
85843
|
+
* The x offset of the symbol to animate to.
|
|
85844
|
+
*
|
|
85845
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationOffset)
|
|
85846
|
+
*/
|
|
85847
|
+
offsetX?: number;
|
|
85848
|
+
/**
|
|
85849
|
+
* The y offset of the symbol to animate to.
|
|
85850
|
+
*
|
|
85851
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationOffset)
|
|
85852
|
+
*/
|
|
85853
|
+
offsetY?: number;
|
|
85854
|
+
/**
|
|
85855
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85856
|
+
*
|
|
85857
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationOffset)
|
|
85858
|
+
*/
|
|
85859
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85860
|
+
}
|
|
85861
|
+
|
|
85862
|
+
/**
|
|
85863
|
+
* Represents a symbol animation that rotates a symbol.
|
|
85864
|
+
*
|
|
85865
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationRotation)
|
|
85866
|
+
*/
|
|
85867
|
+
export interface CIMSymbolAnimationRotation {
|
|
85868
|
+
/**
|
|
85869
|
+
* The type of animation.
|
|
85870
|
+
*
|
|
85871
|
+
* [Read more...](global.html#type)
|
|
85872
|
+
*/
|
|
85873
|
+
type: "CIMSymbolAnimationRotation";
|
|
85874
|
+
/**
|
|
85875
|
+
* The rotation of the symbol to animate to.
|
|
85876
|
+
*
|
|
85877
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationRotation)
|
|
85878
|
+
*/
|
|
85879
|
+
toRotation: number;
|
|
85880
|
+
/**
|
|
85881
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85882
|
+
*
|
|
85883
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationRotation)
|
|
85884
|
+
*/
|
|
85885
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85886
|
+
}
|
|
85887
|
+
|
|
85888
|
+
/**
|
|
85889
|
+
* Represents a symbol animation that scales a symbol.
|
|
85890
|
+
*
|
|
85891
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationScale)
|
|
85892
|
+
*/
|
|
85893
|
+
export interface CIMSymbolAnimationScale {
|
|
85894
|
+
/**
|
|
85895
|
+
* The type of animation.
|
|
85896
|
+
*
|
|
85897
|
+
* [Read more...](global.html#type)
|
|
85898
|
+
*/
|
|
85899
|
+
type: "CIMSymbolAnimationScale";
|
|
85900
|
+
/**
|
|
85901
|
+
* The scale of the symbol to animate to.
|
|
85902
|
+
*
|
|
85903
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationScale)
|
|
85904
|
+
*/
|
|
85905
|
+
scaleFactor: number;
|
|
85906
|
+
/**
|
|
85907
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85908
|
+
*
|
|
85909
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationScale)
|
|
85910
|
+
*/
|
|
85911
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85912
|
+
}
|
|
85913
|
+
|
|
85914
|
+
/**
|
|
85915
|
+
* Represents a symbol animation that changes the size of a symbol.
|
|
85916
|
+
*
|
|
85917
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationSize)
|
|
85918
|
+
*/
|
|
85919
|
+
export interface CIMSymbolAnimationSize {
|
|
85920
|
+
/**
|
|
85921
|
+
* The type of animation.
|
|
85922
|
+
*
|
|
85923
|
+
* [Read more...](global.html#type)
|
|
85924
|
+
*/
|
|
85925
|
+
type: "CIMSymbolAnimationSize";
|
|
85926
|
+
/**
|
|
85927
|
+
* The size of the symbol to animate to.
|
|
85928
|
+
*
|
|
85929
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationSize)
|
|
85930
|
+
*/
|
|
85931
|
+
toSize: number;
|
|
85932
|
+
/**
|
|
85933
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85934
|
+
*
|
|
85935
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationSize)
|
|
85936
|
+
*/
|
|
85937
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
85938
|
+
}
|
|
85939
|
+
|
|
85940
|
+
/**
|
|
85941
|
+
* Represents a symbol animation that changes the transparency of a symbol.
|
|
85942
|
+
*
|
|
85943
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationTransparency)
|
|
85944
|
+
*/
|
|
85945
|
+
export interface CIMSymbolAnimationTransparency {
|
|
85946
|
+
/**
|
|
85947
|
+
* The type of animation.
|
|
85948
|
+
*
|
|
85949
|
+
* [Read more...](global.html#type)
|
|
85950
|
+
*/
|
|
85951
|
+
type: "CIMSymbolAnimationTransparency";
|
|
85952
|
+
/**
|
|
85953
|
+
* The transparency of the symbol to animate to.
|
|
85954
|
+
*
|
|
85955
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationTransparency)
|
|
85956
|
+
*/
|
|
85957
|
+
toTransparency?: number;
|
|
85958
|
+
/**
|
|
85959
|
+
* The properties that apply when the symbol layer has animation data.
|
|
85960
|
+
*
|
|
85961
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMSymbolAnimationTransparency)
|
|
85962
|
+
*/
|
|
85963
|
+
animatedSymbolProperties?: CIMAnimatedSymbolProperties;
|
|
84613
85964
|
}
|
|
84614
85965
|
|
|
84615
85966
|
/**
|
|
@@ -84855,6 +86206,12 @@ declare namespace __esri {
|
|
|
84855
86206
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMVectorMarker)
|
|
84856
86207
|
*/
|
|
84857
86208
|
respectFrame?: boolean;
|
|
86209
|
+
/**
|
|
86210
|
+
* _Since 4.31_ The animations applied to the vector marker.
|
|
86211
|
+
*
|
|
86212
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html#CIMVectorMarker)
|
|
86213
|
+
*/
|
|
86214
|
+
animations?: CIMSymbolAnimation[];
|
|
84858
86215
|
}
|
|
84859
86216
|
|
|
84860
86217
|
/**
|
|
@@ -85475,7 +86832,7 @@ declare namespace __esri {
|
|
|
85475
86832
|
*
|
|
85476
86833
|
* @default "sans-serif"
|
|
85477
86834
|
*
|
|
85478
|
-
* The font family of the text. The possible values are dependent upon the layer type, and if you are working with a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html). See the [Labeling guide page](https://developers.arcgis.com/javascript/latest/labeling/) for detailed explanation, or click the `Read more` below. >>> esri-read-more **Font families for 3D SceneViews** The supported font families for 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html) are dependent upon the fonts installed on the user's computer and web browser. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. See these references for instructions on how to install a new font on [Windows](https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows) or [
|
|
86835
|
+
* The font family of the text. The possible values are dependent upon the layer type, and if you are working with a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html). See the [Labeling guide page](https://developers.arcgis.com/javascript/latest/labeling/) for detailed explanation, or click the `Read more` below. >>> esri-read-more **Font families for 3D SceneViews** The supported font families for 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html) are dependent upon the fonts installed on the user's computer and web browser. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. See these references for instructions on how to install a new font on [Windows](https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows) or [macOS](https://support.apple.com/en-us/ht201749). Fonts that are not installed locally can also be loaded from a url by defining a [@font-face](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face) in a css file and referencing it from the `family` property in a symbol layer. **Font families for 2D MapImageLayer** The supported font families for [MapImageLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html) in a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) are dependent upon the fonts installed on the [ArcGIS Server](https://enterprise.arcgis.com/en/server/latest/get-started/windows/what-is-arcgis-for-server-.htm) that published the layer. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. **Font families for 2D FeatureLayer**, CSVLayer, StreamLayer, and TextSymbol The supported font families are based on hosted fonts files in `.pbf` format. By default, the fonts available are mostly the same ones used by the Esri Vector Basemaps. These fonts are available via `https://static.arcgis.com/fonts`. The URL can be configured to point to your own font resources by setting the [esriConfig.fontsUrl](https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#fontsUrl) property. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. This uses the `Arial Unicode MS` font file. > A preview of the fonts listed in the following table are available in the [Labeling](https://developers.arcgis.com/javascript/latest/labeling/) overview page. List of fonts currently supported in a 2D MapView: [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Font.html#family)
|
|
85479
86836
|
*/
|
|
85480
86837
|
family: string;
|
|
85481
86838
|
/**
|
|
@@ -85527,7 +86884,7 @@ declare namespace __esri {
|
|
|
85527
86884
|
*
|
|
85528
86885
|
* @default "sans-serif"
|
|
85529
86886
|
*
|
|
85530
|
-
* The font family of the text. The possible values are dependent upon the layer type, and if you are working with a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html). See the [Labeling guide page](https://developers.arcgis.com/javascript/latest/labeling/) for detailed explanation, or click the `Read more` below. >>> esri-read-more **Font families for 3D SceneViews** The supported font families for 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html) are dependent upon the fonts installed on the user's computer and web browser. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. See these references for instructions on how to install a new font on [Windows](https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows) or [
|
|
86887
|
+
* The font family of the text. The possible values are dependent upon the layer type, and if you are working with a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html). See the [Labeling guide page](https://developers.arcgis.com/javascript/latest/labeling/) for detailed explanation, or click the `Read more` below. >>> esri-read-more **Font families for 3D SceneViews** The supported font families for 3D [SceneViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html) are dependent upon the fonts installed on the user's computer and web browser. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. See these references for instructions on how to install a new font on [Windows](https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows) or [macOS](https://support.apple.com/en-us/ht201749). Fonts that are not installed locally can also be loaded from a url by defining a [@font-face](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face) in a css file and referencing it from the `family` property in a symbol layer. **Font families for 2D MapImageLayer** The supported font families for [MapImageLayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html) in a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) are dependent upon the fonts installed on the [ArcGIS Server](https://enterprise.arcgis.com/en/server/latest/get-started/windows/what-is-arcgis-for-server-.htm) that published the layer. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. **Font families for 2D FeatureLayer**, CSVLayer, StreamLayer, and TextSymbol The supported font families are based on hosted fonts files in `.pbf` format. By default, the fonts available are mostly the same ones used by the Esri Vector Basemaps. These fonts are available via `https://static.arcgis.com/fonts`. The URL can be configured to point to your own font resources by setting the [esriConfig.fontsUrl](https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#fontsUrl) property. If an app uses a font that is not installed, the Font class implements a fallback mechanism that will use the default font family value, which is `sans-serif`. This uses the `Arial Unicode MS` font file. > A preview of the fonts listed in the following table are available in the [Labeling](https://developers.arcgis.com/javascript/latest/labeling/) overview page. List of fonts currently supported in a 2D MapView: [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Font.html#family)
|
|
85531
86888
|
*/
|
|
85532
86889
|
family?: string;
|
|
85533
86890
|
/**
|
|
@@ -92100,7 +93457,7 @@ declare namespace __esri {
|
|
|
92100
93457
|
/**
|
|
92101
93458
|
* render the map/scene on screen.
|
|
92102
93459
|
*
|
|
92103
|
-
* @deprecated since 4.29. Use the new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
93460
|
+
* @deprecated since version 4.29. Use the new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
92104
93461
|
*
|
|
92105
93462
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-externalRenderers.html)
|
|
92106
93463
|
*/
|
|
@@ -92146,7 +93503,7 @@ declare namespace __esri {
|
|
|
92146
93503
|
/**
|
|
92147
93504
|
* Defines an external renderer using callbacks and properties.
|
|
92148
93505
|
*
|
|
92149
|
-
* @deprecated since 4.29. Use new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
93506
|
+
* @deprecated since version 4.29. Use new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
92150
93507
|
*
|
|
92151
93508
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-externalRenderers.html#ExternalRenderer)
|
|
92152
93509
|
*/
|
|
@@ -92174,7 +93531,7 @@ declare namespace __esri {
|
|
|
92174
93531
|
/**
|
|
92175
93532
|
* The object passed as a parameter to every call to `setup` and `render` the external renderer.
|
|
92176
93533
|
*
|
|
92177
|
-
* @deprecated since 4.29. Use new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
93534
|
+
* @deprecated since version 4.29. Use new {@link module:esri/views/3d/webgl/RenderNode RenderNode} instead.
|
|
92178
93535
|
*
|
|
92179
93536
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-externalRenderers.html#RenderContext)
|
|
92180
93537
|
*/
|
|
@@ -95596,6 +96953,25 @@ declare namespace __esri {
|
|
|
95596
96953
|
websocket: number;
|
|
95597
96954
|
}
|
|
95598
96955
|
|
|
96956
|
+
export class VectorTileLayerView extends LayerView {
|
|
96957
|
+
/**
|
|
96958
|
+
* Represents the [LayerView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html) of a [VectorTileLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VectorTileLayer.html) after it has been added to a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) in either a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
96959
|
+
*
|
|
96960
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-VectorTileLayerView.html)
|
|
96961
|
+
*/
|
|
96962
|
+
|
|
96963
|
+
constructor(properties?: VectorTileLayerViewProperties);
|
|
96964
|
+
|
|
96965
|
+
/**
|
|
96966
|
+
* When `false`, it indicates that tiles have no visible features within the current extent.
|
|
96967
|
+
*
|
|
96968
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-VectorTileLayerView.html#hasVisibleFeatures)
|
|
96969
|
+
*/
|
|
96970
|
+
readonly hasVisibleFeatures: boolean;
|
|
96971
|
+
}
|
|
96972
|
+
|
|
96973
|
+
interface VectorTileLayerViewProperties extends LayerViewProperties {}
|
|
96974
|
+
|
|
95599
96975
|
export class ViewshedLayerView extends LayerView {
|
|
95600
96976
|
/**
|
|
95601
96977
|
* Represents the [LayerView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html) of a [ViewshedLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ViewshedLayer.html) after it has been added to a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) in a [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
@@ -103175,7 +104551,7 @@ declare namespace __esri {
|
|
|
103175
104551
|
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
103176
104552
|
*
|
|
103177
104553
|
* @default false
|
|
103178
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
104554
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
103179
104555
|
*
|
|
103180
104556
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
103181
104557
|
*/
|
|
@@ -103216,7 +104592,7 @@ declare namespace __esri {
|
|
|
103216
104592
|
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
103217
104593
|
*
|
|
103218
104594
|
* @default false
|
|
103219
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
104595
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
103220
104596
|
*
|
|
103221
104597
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
103222
104598
|
*/
|
|
@@ -103341,7 +104717,7 @@ declare namespace __esri {
|
|
|
103341
104717
|
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
103342
104718
|
*
|
|
103343
104719
|
* @default false
|
|
103344
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
104720
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
103345
104721
|
*
|
|
103346
104722
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
103347
104723
|
*/
|
|
@@ -103382,7 +104758,7 @@ declare namespace __esri {
|
|
|
103382
104758
|
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
103383
104759
|
*
|
|
103384
104760
|
* @default false
|
|
103385
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
104761
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
103386
104762
|
*
|
|
103387
104763
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
103388
104764
|
*/
|
|
@@ -104022,7 +105398,7 @@ declare namespace __esri {
|
|
|
104022
105398
|
* Indicates whether the bookmarks are able to be edited.
|
|
104023
105399
|
*
|
|
104024
105400
|
* @default false
|
|
104025
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
105401
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
104026
105402
|
*
|
|
104027
105403
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
104028
105404
|
*/
|
|
@@ -104117,7 +105493,7 @@ declare namespace __esri {
|
|
|
104117
105493
|
* Indicates whether the bookmarks are able to be edited.
|
|
104118
105494
|
*
|
|
104119
105495
|
* @default false
|
|
104120
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
105496
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
104121
105497
|
*
|
|
104122
105498
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
104123
105499
|
*/
|
|
@@ -108030,7 +109406,7 @@ declare namespace __esri {
|
|
|
108030
109406
|
/**
|
|
108031
109407
|
* A read-only collection of editable item objects that match the feature being updated.
|
|
108032
109408
|
*
|
|
108033
|
-
* @deprecated since 4.29. Use [editorItems](#editorItems) instead.
|
|
109409
|
+
* @deprecated since version 4.29. Use [editorItems](#editorItems) instead.
|
|
108034
109410
|
*
|
|
108035
109411
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#editableItems)
|
|
108036
109412
|
*/
|
|
@@ -112704,6 +114080,12 @@ declare namespace __esri {
|
|
|
112704
114080
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#highlightIds)
|
|
112705
114081
|
*/
|
|
112706
114082
|
highlightIds: Collection<number | string>;
|
|
114083
|
+
/**
|
|
114084
|
+
* User provided value for the total number of features available from the data source.
|
|
114085
|
+
*
|
|
114086
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
|
|
114087
|
+
*/
|
|
114088
|
+
initialSize: number;
|
|
112707
114089
|
/**
|
|
112708
114090
|
* Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
|
|
112709
114091
|
*
|
|
@@ -113078,6 +114460,8 @@ declare namespace __esri {
|
|
|
113078
114460
|
on(name: "cell-pointerover", eventHandler: FeatureTableCellPointeroverEventHandler): IHandle;
|
|
113079
114461
|
|
|
113080
114462
|
on(name: "cell-keydown", eventHandler: FeatureTableCellKeydownEventHandler): IHandle;
|
|
114463
|
+
|
|
114464
|
+
on(name: "column-reorder", eventHandler: FeatureTableColumnReorderEventHandler): IHandle;
|
|
113081
114465
|
}
|
|
113082
114466
|
|
|
113083
114467
|
interface FeatureTableProperties extends WidgetProperties {
|
|
@@ -113171,6 +114555,12 @@ declare namespace __esri {
|
|
|
113171
114555
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#highlightIds)
|
|
113172
114556
|
*/
|
|
113173
114557
|
highlightIds?: CollectionProperties<number | string>;
|
|
114558
|
+
/**
|
|
114559
|
+
* User provided value for the total number of features available from the data source.
|
|
114560
|
+
*
|
|
114561
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
|
|
114562
|
+
*/
|
|
114563
|
+
initialSize?: number;
|
|
113174
114564
|
/**
|
|
113175
114565
|
* The associated [CatalogFootprintLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html), [CSVLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html), [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html), [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html), [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [KnowledgeGraphSublayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html), [SceneLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html), or [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html) containing the fields and attributes to display within the widget.
|
|
113176
114566
|
*
|
|
@@ -113666,6 +115056,12 @@ declare namespace __esri {
|
|
|
113666
115056
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#highlightIds)
|
|
113667
115057
|
*/
|
|
113668
115058
|
highlightIds: Collection<number | string>;
|
|
115059
|
+
/**
|
|
115060
|
+
* User provided value for the total number of features available from the data source.
|
|
115061
|
+
*
|
|
115062
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
|
|
115063
|
+
*/
|
|
115064
|
+
initialSize: number;
|
|
113669
115065
|
/**
|
|
113670
115066
|
* Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
|
|
113671
115067
|
*
|
|
@@ -114098,6 +115494,12 @@ declare namespace __esri {
|
|
|
114098
115494
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#highlightIds)
|
|
114099
115495
|
*/
|
|
114100
115496
|
highlightIds?: CollectionProperties<number | string>;
|
|
115497
|
+
/**
|
|
115498
|
+
* User provided value for the total number of features available from the data source.
|
|
115499
|
+
*
|
|
115500
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
|
|
115501
|
+
*/
|
|
115502
|
+
initialSize?: number;
|
|
114101
115503
|
/**
|
|
114102
115504
|
* The associated [CatalogFootprintLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html), [CSVLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html), [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html), [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html), [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [KnowledgeGraphSublayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html), [SceneLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html), or [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html) containing the fields and attributes to display within the widget.
|
|
114103
115505
|
*
|
|
@@ -114996,14 +116398,6 @@ declare namespace __esri {
|
|
|
114996
116398
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenu.html#disabled)
|
|
114997
116399
|
*/
|
|
114998
116400
|
disabled: boolean;
|
|
114999
|
-
/**
|
|
115000
|
-
* Adds a CSS class to the menu button's DOM node.
|
|
115001
|
-
*
|
|
115002
|
-
* @deprecated since 4.27. Use {@link module:esri/widgets/DirectionPad#icon icon} instead.
|
|
115003
|
-
*
|
|
115004
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenu.html#iconClass)
|
|
115005
|
-
*/
|
|
115006
|
-
iconClass: string;
|
|
115007
116401
|
/**
|
|
115008
116402
|
* An array of individual [menu items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html).
|
|
115009
116403
|
*
|
|
@@ -115035,14 +116429,6 @@ declare namespace __esri {
|
|
|
115035
116429
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenu.html#disabled)
|
|
115036
116430
|
*/
|
|
115037
116431
|
disabled?: boolean;
|
|
115038
|
-
/**
|
|
115039
|
-
* Adds a CSS class to the menu button's DOM node.
|
|
115040
|
-
*
|
|
115041
|
-
* @deprecated since 4.27. Use {@link module:esri/widgets/DirectionPad#icon icon} instead.
|
|
115042
|
-
*
|
|
115043
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenu.html#iconClass)
|
|
115044
|
-
*/
|
|
115045
|
-
iconClass?: string;
|
|
115046
116432
|
/**
|
|
115047
116433
|
* An array of individual [menu items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html).
|
|
115048
116434
|
*
|
|
@@ -115088,14 +116474,6 @@ declare namespace __esri {
|
|
|
115088
116474
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html#clickFunction)
|
|
115089
116475
|
*/
|
|
115090
116476
|
clickFunction: ButtonMenuItemClickFunction;
|
|
115091
|
-
/**
|
|
115092
|
-
* Adds a CSS class to the menu button's DOM node.
|
|
115093
|
-
*
|
|
115094
|
-
* @deprecated since 4.27. Use {@link module:esri/widgets/DirectionPad#icon icon} instead.
|
|
115095
|
-
*
|
|
115096
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html#iconClass)
|
|
115097
|
-
*/
|
|
115098
|
-
iconClass: string;
|
|
115099
116477
|
/**
|
|
115100
116478
|
* An array of individual [menu items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html).
|
|
115101
116479
|
*
|
|
@@ -115149,14 +116527,6 @@ declare namespace __esri {
|
|
|
115149
116527
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html#clickFunction)
|
|
115150
116528
|
*/
|
|
115151
116529
|
clickFunction?: ButtonMenuItemClickFunction;
|
|
115152
|
-
/**
|
|
115153
|
-
* Adds a CSS class to the menu button's DOM node.
|
|
115154
|
-
*
|
|
115155
|
-
* @deprecated since 4.27. Use {@link module:esri/widgets/DirectionPad#icon icon} instead.
|
|
115156
|
-
*
|
|
115157
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html#iconClass)
|
|
115158
|
-
*/
|
|
115159
|
-
iconClass?: string;
|
|
115160
116530
|
/**
|
|
115161
116531
|
* An array of individual [menu items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-support-ButtonMenuItem.html).
|
|
115162
116532
|
*
|
|
@@ -115921,6 +117291,10 @@ declare namespace __esri {
|
|
|
115921
117291
|
type: "cell-pointerover";
|
|
115922
117292
|
}
|
|
115923
117293
|
|
|
117294
|
+
export interface FeatureTableColumnReorderEvent {
|
|
117295
|
+
type: "column-reorder";
|
|
117296
|
+
}
|
|
117297
|
+
|
|
115924
117298
|
/**
|
|
115925
117299
|
* The configuration for the table's menu.
|
|
115926
117300
|
*
|
|
@@ -117818,7 +119192,7 @@ declare namespace __esri {
|
|
|
117818
119192
|
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
117819
119193
|
*
|
|
117820
119194
|
* @default false
|
|
117821
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
119195
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
117822
119196
|
*
|
|
117823
119197
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
117824
119198
|
*/
|
|
@@ -117847,7 +119221,7 @@ declare namespace __esri {
|
|
|
117847
119221
|
* Indicates whether list items may be selected by the user.
|
|
117848
119222
|
*
|
|
117849
119223
|
* @default false
|
|
117850
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
119224
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
117851
119225
|
*
|
|
117852
119226
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
117853
119227
|
*/
|
|
@@ -117992,7 +119366,7 @@ declare namespace __esri {
|
|
|
117992
119366
|
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
117993
119367
|
*
|
|
117994
119368
|
* @default false
|
|
117995
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
119369
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
117996
119370
|
*
|
|
117997
119371
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
117998
119372
|
*/
|
|
@@ -118015,7 +119389,7 @@ declare namespace __esri {
|
|
|
118015
119389
|
* Indicates whether list items may be selected by the user.
|
|
118016
119390
|
*
|
|
118017
119391
|
* @default false
|
|
118018
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
119392
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
118019
119393
|
*
|
|
118020
119394
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
118021
119395
|
*/
|
|
@@ -120089,7 +121463,7 @@ declare namespace __esri {
|
|
|
120089
121463
|
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
120090
121464
|
*
|
|
120091
121465
|
* @default true
|
|
120092
|
-
* @deprecated since 4.29. Use Track widget instead
|
|
121466
|
+
* @deprecated since version 4.29. Use Track widget instead
|
|
120093
121467
|
*
|
|
120094
121468
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
120095
121469
|
*/
|
|
@@ -120168,7 +121542,7 @@ declare namespace __esri {
|
|
|
120168
121542
|
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
120169
121543
|
*
|
|
120170
121544
|
* @default true
|
|
120171
|
-
* @deprecated since 4.29. Use Track widget instead
|
|
121545
|
+
* @deprecated since version 4.29. Use Track widget instead
|
|
120172
121546
|
*
|
|
120173
121547
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
120174
121548
|
*/
|
|
@@ -121052,7 +122426,7 @@ declare namespace __esri {
|
|
|
121052
122426
|
* Indicates whether to enable collapse functionality for the popup.
|
|
121053
122427
|
*
|
|
121054
122428
|
* @default true
|
|
121055
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
122429
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
121056
122430
|
*
|
|
121057
122431
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
|
|
121058
122432
|
*/
|
|
@@ -121161,7 +122535,7 @@ declare namespace __esri {
|
|
|
121161
122535
|
/**
|
|
121162
122536
|
* Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
|
|
121163
122537
|
*
|
|
121164
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
122538
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
121165
122539
|
*
|
|
121166
122540
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
|
|
121167
122541
|
*/
|
|
@@ -121287,7 +122661,7 @@ declare namespace __esri {
|
|
|
121287
122661
|
* Indicates whether to enable collapse functionality for the popup.
|
|
121288
122662
|
*
|
|
121289
122663
|
* @default true
|
|
121290
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
122664
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
121291
122665
|
*
|
|
121292
122666
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
|
|
121293
122667
|
*/
|
|
@@ -121363,7 +122737,7 @@ declare namespace __esri {
|
|
|
121363
122737
|
/**
|
|
121364
122738
|
* Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
|
|
121365
122739
|
*
|
|
121366
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
122740
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
121367
122741
|
*
|
|
121368
122742
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
|
|
121369
122743
|
*/
|
|
@@ -130711,7 +132085,7 @@ declare namespace __esri {
|
|
|
130711
132085
|
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
130712
132086
|
*
|
|
130713
132087
|
* @default false
|
|
130714
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
132088
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
130715
132089
|
*
|
|
130716
132090
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
130717
132091
|
*/
|
|
@@ -130726,7 +132100,7 @@ declare namespace __esri {
|
|
|
130726
132100
|
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
130727
132101
|
*
|
|
130728
132102
|
* @default false
|
|
130729
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
132103
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
130730
132104
|
*
|
|
130731
132105
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
130732
132106
|
*/
|
|
@@ -130841,7 +132215,7 @@ declare namespace __esri {
|
|
|
130841
132215
|
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
130842
132216
|
*
|
|
130843
132217
|
* @default false
|
|
130844
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
132218
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
130845
132219
|
*
|
|
130846
132220
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
130847
132221
|
*/
|
|
@@ -130856,7 +132230,7 @@ declare namespace __esri {
|
|
|
130856
132230
|
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
130857
132231
|
*
|
|
130858
132232
|
* @default false
|
|
130859
|
-
* @deprecated since 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
132233
|
+
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
130860
132234
|
*
|
|
130861
132235
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
130862
132236
|
*/
|
|
@@ -131413,7 +132787,7 @@ declare namespace __esri {
|
|
|
131413
132787
|
/**
|
|
131414
132788
|
* Extracts time slider settings from a [WebMap](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html) if the webmap contains a time slider widget definition.
|
|
131415
132789
|
*
|
|
131416
|
-
* @deprecated since 4.29. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
132790
|
+
* @deprecated since version 4.29. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
131417
132791
|
*
|
|
131418
132792
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TimeSlider.html#getPropertiesFromWebMap)
|
|
131419
132793
|
*/
|
|
@@ -131653,7 +133027,7 @@ declare namespace __esri {
|
|
|
131653
133027
|
/**
|
|
131654
133028
|
* Extracts time slider settings from a [WebMap](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html) if the webmap contains a time slider widget definition.
|
|
131655
133029
|
*
|
|
131656
|
-
* @deprecated since 4.29. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
133030
|
+
* @deprecated since version 4.29. Use {@link module:esri/support/timeUtils#getTimeSliderSettingsFromWebDocument getTimeSliderSettingsFromWebDocument} instead.
|
|
131657
133031
|
*
|
|
131658
133032
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TimeSlider-TimeSliderViewModel.html#getPropertiesFromWebMap)
|
|
131659
133033
|
*/
|
|
@@ -132663,7 +134037,7 @@ declare namespace __esri {
|
|
|
132663
134037
|
* The Geodatabase version to pass into the trace.
|
|
132664
134038
|
*
|
|
132665
134039
|
* @default "sde.DEFAULT"
|
|
132666
|
-
* @deprecated since 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
134040
|
+
* @deprecated since version 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
132667
134041
|
*
|
|
132668
134042
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html#gdbVersion)
|
|
132669
134043
|
*/
|
|
@@ -132815,7 +134189,7 @@ declare namespace __esri {
|
|
|
132815
134189
|
* The Geodatabase version to pass into the trace.
|
|
132816
134190
|
*
|
|
132817
134191
|
* @default "sde.DEFAULT"
|
|
132818
|
-
* @deprecated since 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
134192
|
+
* @deprecated since version 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
132819
134193
|
*
|
|
132820
134194
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html#gdbVersion)
|
|
132821
134195
|
*/
|
|
@@ -132944,7 +134318,7 @@ declare namespace __esri {
|
|
|
132944
134318
|
* The Geodatabase version to pass into the trace.
|
|
132945
134319
|
*
|
|
132946
134320
|
* @default "sde.DEFAULT"
|
|
132947
|
-
* @deprecated since 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
134321
|
+
* @deprecated since version 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
132948
134322
|
*
|
|
132949
134323
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#gdbVersion)
|
|
132950
134324
|
*/
|
|
@@ -133238,7 +134612,7 @@ declare namespace __esri {
|
|
|
133238
134612
|
* The Geodatabase version to pass into the trace.
|
|
133239
134613
|
*
|
|
133240
134614
|
* @default "sde.DEFAULT"
|
|
133241
|
-
* @deprecated since 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
134615
|
+
* @deprecated since version 4.31, gdbVersion will be removed and the gdbVersion of the {@link module:esri/networks/UtilityNetwork} will be consumed directly.
|
|
133242
134616
|
*
|
|
133243
134617
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#gdbVersion)
|
|
133244
134618
|
*/
|
|
@@ -134962,6 +136336,12 @@ declare namespace __esri {
|
|
|
134962
136336
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#toggleFrameCenterDisplay)
|
|
134963
136337
|
*/
|
|
134964
136338
|
toggleFrameCenterDisplay(): void;
|
|
136339
|
+
/**
|
|
136340
|
+
* Toggles the video frame image draped on the map.
|
|
136341
|
+
*
|
|
136342
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#toggleFrameDisplay)
|
|
136343
|
+
*/
|
|
136344
|
+
toggleFrameDisplay(): void;
|
|
134965
136345
|
/**
|
|
134966
136346
|
* Toggles the frame outline display.
|
|
134967
136347
|
*
|
|
@@ -135220,14 +136600,6 @@ declare namespace __esri {
|
|
|
135220
136600
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#isResolved)
|
|
135221
136601
|
*/
|
|
135222
136602
|
isResolved(): boolean;
|
|
135223
|
-
/**
|
|
135224
|
-
* Adds one or more handles which are to be tied to the lifecycle of the widget.
|
|
135225
|
-
*
|
|
135226
|
-
* @deprecated since 4.28 Use {@link module:esri/widgets/Widget#addHandles addHandles()} instead.
|
|
135227
|
-
*
|
|
135228
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#own)
|
|
135229
|
-
*/
|
|
135230
|
-
own(handleOrHandles: WatchHandle | WatchHandle[]): void;
|
|
135231
136603
|
/**
|
|
135232
136604
|
* Executes after widget is ready for rendering.
|
|
135233
136605
|
*
|
|
@@ -135672,6 +137044,16 @@ declare namespace __esri {
|
|
|
135672
137044
|
|
|
135673
137045
|
export type ValuePickerPreviousEventHandler = (event: ValuePickerPreviousEvent) => void;
|
|
135674
137046
|
|
|
137047
|
+
export type VectorTileLayerLayerviewCreateErrorEventHandler = (
|
|
137048
|
+
event: VectorTileLayerLayerviewCreateErrorEvent
|
|
137049
|
+
) => void;
|
|
137050
|
+
|
|
137051
|
+
export type VectorTileLayerLayerviewCreateEventHandler = (event: VectorTileLayerLayerviewCreateEvent) => void;
|
|
137052
|
+
|
|
137053
|
+
export type VectorTileLayerLayerviewDestroyEventHandler = (event: VectorTileLayerLayerviewDestroyEvent) => void;
|
|
137054
|
+
|
|
137055
|
+
export type VectorTileLayerRefreshEventHandler = (event: VectorTileLayerRefreshEvent) => void;
|
|
137056
|
+
|
|
135675
137057
|
export type ViewBlurEventHandler = (event: ViewBlurEvent) => void;
|
|
135676
137058
|
|
|
135677
137059
|
export type ViewClickEventHandler = (event: ViewClickEvent) => void;
|
|
@@ -140171,6 +141553,11 @@ declare module "esri/renderers/RasterColormapRenderer" {
|
|
|
140171
141553
|
export = RasterColormapRenderer;
|
|
140172
141554
|
}
|
|
140173
141555
|
|
|
141556
|
+
declare module "esri/renderers/support/RasterPresetRenderer" {
|
|
141557
|
+
import RasterPresetRenderer = __esri.RasterPresetRenderer;
|
|
141558
|
+
export = RasterPresetRenderer;
|
|
141559
|
+
}
|
|
141560
|
+
|
|
140174
141561
|
declare module "esri/renderers/RasterShadedReliefRenderer" {
|
|
140175
141562
|
import RasterShadedReliefRenderer = __esri.RasterShadedReliefRenderer;
|
|
140176
141563
|
export = RasterShadedReliefRenderer;
|
|
@@ -141541,6 +142928,11 @@ declare module "esri/views/layers/StreamLayerView" {
|
|
|
141541
142928
|
export = StreamLayerView;
|
|
141542
142929
|
}
|
|
141543
142930
|
|
|
142931
|
+
declare module "esri/views/layers/VectorTileLayerView" {
|
|
142932
|
+
type VectorTileLayerView = __esri.VectorTileLayerView;
|
|
142933
|
+
export = VectorTileLayerView;
|
|
142934
|
+
}
|
|
142935
|
+
|
|
141544
142936
|
declare module "esri/views/layers/ViewshedLayerView" {
|
|
141545
142937
|
import ViewshedLayerView = __esri.ViewshedLayerView;
|
|
141546
142938
|
export = ViewshedLayerView;
|
|
@@ -142856,6 +144248,11 @@ declare module "esri/layers/mixins/PublishableLayer" {
|
|
|
142856
144248
|
export = PublishableLayer;
|
|
142857
144249
|
}
|
|
142858
144250
|
|
|
144251
|
+
declare module "esri/layers/mixins/RasterPresetRendererMixin" {
|
|
144252
|
+
import RasterPresetRendererMixin = __esri.RasterPresetRendererMixin;
|
|
144253
|
+
export = RasterPresetRendererMixin;
|
|
144254
|
+
}
|
|
144255
|
+
|
|
142859
144256
|
declare module "esri/layers/mixins/RefreshableLayer" {
|
|
142860
144257
|
import RefreshableLayer = __esri.RefreshableLayer;
|
|
142861
144258
|
export = RefreshableLayer;
|
|
@@ -143151,6 +144548,11 @@ declare module "esri/geometry/operators/equalsOperator" {
|
|
|
143151
144548
|
export = equalsOperator;
|
|
143152
144549
|
}
|
|
143153
144550
|
|
|
144551
|
+
declare module "esri/geometry/operators/extendOperator" {
|
|
144552
|
+
import extendOperator = __esri.extendOperator;
|
|
144553
|
+
export = extendOperator;
|
|
144554
|
+
}
|
|
144555
|
+
|
|
143154
144556
|
declare module "esri/geometry/operators/geodesicBufferOperator" {
|
|
143155
144557
|
import geodesicBufferOperator = __esri.geodesicBufferOperator;
|
|
143156
144558
|
export = geodesicBufferOperator;
|
|
@@ -143846,6 +145248,11 @@ declare module "esri/applications/Components/layerOriginUtils" {
|
|
|
143846
145248
|
export = layerOriginUtils;
|
|
143847
145249
|
}
|
|
143848
145250
|
|
|
145251
|
+
declare module "esri/applications/Components/layersEffectsJsonUtils" {
|
|
145252
|
+
import layersEffectsJsonUtils = __esri.layersEffectsJsonUtils;
|
|
145253
|
+
export = layersEffectsJsonUtils;
|
|
145254
|
+
}
|
|
145255
|
+
|
|
143849
145256
|
declare module "esri/applications/Components/previewSymbol2D" {
|
|
143850
145257
|
import previewSymbol2D = __esri.previewSymbol2D;
|
|
143851
145258
|
export = previewSymbol2D;
|
|
@@ -143871,6 +145278,11 @@ declare module "esri/applications/Excalibur/videoViewUtils" {
|
|
|
143871
145278
|
export = videoViewUtils;
|
|
143872
145279
|
}
|
|
143873
145280
|
|
|
145281
|
+
declare module "esri/applications/ExperienceBuilder/sketchUtils" {
|
|
145282
|
+
import sketchUtils = __esri.sketchUtils;
|
|
145283
|
+
export = sketchUtils;
|
|
145284
|
+
}
|
|
145285
|
+
|
|
143874
145286
|
declare module "esri/applications/MapViewer/mediaUtils" {
|
|
143875
145287
|
import mediaUtils = __esri.mediaUtils;
|
|
143876
145288
|
export = mediaUtils;
|
|
@@ -143907,6 +145319,6 @@ declare module "esri/applications/Urban/meshUtils" {
|
|
|
143907
145319
|
}
|
|
143908
145320
|
|
|
143909
145321
|
declare module "esri/applications/WebEditor/sketchUtils" {
|
|
143910
|
-
import
|
|
143911
|
-
export =
|
|
145322
|
+
import WebEditorSketchUtils = __esri.WebEditorSketchUtils;
|
|
145323
|
+
export = WebEditorSketchUtils;
|
|
143912
145324
|
}
|