@arcgis/core 4.34.0-next.6 → 4.34.0-next.7
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/assets/esri/core/workers/RemoteClient.js +1 -1
- package/assets/esri/core/workers/chunks/412eef58cb0d24826375.js +1 -0
- package/assets/esri/core/workers/chunks/{54ea93f416ab52b413c1.js → 44db659fd4e711f8e22f.js} +1 -1
- package/assets/esri/core/workers/chunks/{09f76ca9b47b465c934f.js → 74182421ba425720dc7f.js} +1 -1
- package/assets/esri/core/workers/chunks/{a036503087baa1f9fd00.js → 82ff4229c51011b243f2.js} +1 -1
- package/assets/esri/core/workers/chunks/a4c108e913d2dc0edc7b.js +1 -0
- package/assets/esri/core/workers/chunks/{f00f8609bf0d14b488b8.js → c77cfd8790877393353a.js} +1 -1
- package/config.js +1 -1
- package/interfaces.d.ts +223 -390
- package/kernel.js +1 -1
- package/layers/ImageryLayer.js +1 -1
- package/layers/ImageryTileLayer.js +1 -1
- package/package.json +1 -1
- package/renderers/support/colorRampUtils.js +1 -1
- package/support/revision.js +1 -1
- package/symbols/support/ElevationInfo.d.ts +4 -0
- package/symbols/support/ElevationInfo.js +1 -1
- package/symbols/support/FeatureExpressionInfo.d.ts +4 -0
- package/symbols/support/FeatureExpressionInfo.js +1 -1
- package/assets/esri/core/workers/chunks/306e262f148b3057b11b.js +0 -1
- package/assets/esri/core/workers/chunks/51c31e6d014005107d42.js +0 -1
package/interfaces.d.ts
CHANGED
|
@@ -820,8 +820,8 @@ declare namespace __esri {
|
|
|
820
820
|
*
|
|
821
821
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#elevationInfo Read more...}
|
|
822
822
|
*/
|
|
823
|
-
get elevationInfo():
|
|
824
|
-
set elevationInfo(value:
|
|
823
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
824
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
825
825
|
/**
|
|
826
826
|
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Point.html Point} representing the position of the observer.
|
|
827
827
|
*
|
|
@@ -843,7 +843,7 @@ declare namespace __esri {
|
|
|
843
843
|
*
|
|
844
844
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#elevationInfo Read more...}
|
|
845
845
|
*/
|
|
846
|
-
elevationInfo?:
|
|
846
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
847
847
|
/**
|
|
848
848
|
* References a feature which is excluded from the intersection testing.
|
|
849
849
|
*
|
|
@@ -858,16 +858,6 @@ declare namespace __esri {
|
|
|
858
858
|
position?: PointProperties | nullish;
|
|
859
859
|
}
|
|
860
860
|
|
|
861
|
-
export interface LineOfSightAnalysisObserverElevationInfoProperties {
|
|
862
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
863
|
-
offset?: number | nullish;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
export interface LineOfSightAnalysisObserverElevationInfo extends AnonymousAccessor {
|
|
867
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
868
|
-
offset: number | nullish;
|
|
869
|
-
}
|
|
870
|
-
|
|
871
861
|
export interface LineOfSightAnalysisTarget extends Accessor, Clonable {
|
|
872
862
|
}
|
|
873
863
|
|
|
@@ -889,8 +879,8 @@ declare namespace __esri {
|
|
|
889
879
|
*
|
|
890
880
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#elevationInfo Read more...}
|
|
891
881
|
*/
|
|
892
|
-
get elevationInfo():
|
|
893
|
-
set elevationInfo(value:
|
|
882
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
883
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
894
884
|
/**
|
|
895
885
|
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Point.html Point} representing the position of the target.
|
|
896
886
|
*
|
|
@@ -912,7 +902,7 @@ declare namespace __esri {
|
|
|
912
902
|
*
|
|
913
903
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#elevationInfo Read more...}
|
|
914
904
|
*/
|
|
915
|
-
elevationInfo?:
|
|
905
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
916
906
|
/**
|
|
917
907
|
* References a feature which is excluded from the intersection testing.
|
|
918
908
|
*
|
|
@@ -927,16 +917,6 @@ declare namespace __esri {
|
|
|
927
917
|
position?: PointProperties | nullish;
|
|
928
918
|
}
|
|
929
919
|
|
|
930
|
-
export interface LineOfSightAnalysisTargetElevationInfoProperties {
|
|
931
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
932
|
-
offset?: number | nullish;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
export interface LineOfSightAnalysisTargetElevationInfo extends AnonymousAccessor {
|
|
936
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
937
|
-
offset: number | nullish;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
920
|
export class SliceAnalysis extends Analysis {
|
|
941
921
|
/**
|
|
942
922
|
* A flag that indicates whether the ground surface should be excluded from the slice analysis.
|
|
@@ -15150,8 +15130,8 @@ declare namespace __esri {
|
|
|
15150
15130
|
*
|
|
15151
15131
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#elevationInfo Read more...}
|
|
15152
15132
|
*/
|
|
15153
|
-
get elevationInfo():
|
|
15154
|
-
set elevationInfo(value:
|
|
15133
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
15134
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
15155
15135
|
/**
|
|
15156
15136
|
* Collection of filters that can be used to show or hide specific features in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html SceneView}.
|
|
15157
15137
|
*
|
|
@@ -15228,7 +15208,7 @@ declare namespace __esri {
|
|
|
15228
15208
|
*
|
|
15229
15209
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#elevationInfo Read more...}
|
|
15230
15210
|
*/
|
|
15231
|
-
elevationInfo?:
|
|
15211
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
15232
15212
|
/**
|
|
15233
15213
|
* Collection of filters that can be used to show or hide specific features in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html SceneView}.
|
|
15234
15214
|
*
|
|
@@ -15291,18 +15271,6 @@ declare namespace __esri {
|
|
|
15291
15271
|
url?: SceneServiceProperties["url"];
|
|
15292
15272
|
}
|
|
15293
15273
|
|
|
15294
|
-
export interface BuildingSceneLayerElevationInfoProperties {
|
|
15295
|
-
mode?: "absolute-height";
|
|
15296
|
-
offset?: number | nullish;
|
|
15297
|
-
unit?: ElevationUnit | nullish;
|
|
15298
|
-
}
|
|
15299
|
-
|
|
15300
|
-
export interface BuildingSceneLayerElevationInfo extends AnonymousAccessor {
|
|
15301
|
-
mode: "absolute-height";
|
|
15302
|
-
offset: number | nullish;
|
|
15303
|
-
unit: ElevationUnit | nullish;
|
|
15304
|
-
}
|
|
15305
|
-
|
|
15306
15274
|
export interface BuildingSceneLayerSaveAsOptions {
|
|
15307
15275
|
folder?: PortalFolder;
|
|
15308
15276
|
}
|
|
@@ -16093,8 +16061,8 @@ declare namespace __esri {
|
|
|
16093
16061
|
*
|
|
16094
16062
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html#elevationInfo Read more...}
|
|
16095
16063
|
*/
|
|
16096
|
-
get elevationInfo():
|
|
16097
|
-
set elevationInfo(value:
|
|
16064
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
16065
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
16098
16066
|
/**
|
|
16099
16067
|
* The featureEffect can be used to draw attention features of interest.
|
|
16100
16068
|
*
|
|
@@ -16225,7 +16193,7 @@ declare namespace __esri {
|
|
|
16225
16193
|
*
|
|
16226
16194
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html#elevationInfo Read more...}
|
|
16227
16195
|
*/
|
|
16228
|
-
elevationInfo?:
|
|
16196
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
16229
16197
|
/**
|
|
16230
16198
|
* The featureEffect can be used to draw attention features of interest.
|
|
16231
16199
|
*
|
|
@@ -16290,29 +16258,6 @@ declare namespace __esri {
|
|
|
16290
16258
|
| nullish;
|
|
16291
16259
|
}
|
|
16292
16260
|
|
|
16293
|
-
export interface CatalogFootprintLayerElevationInfoProperties {
|
|
16294
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
16295
|
-
offset?: number | nullish;
|
|
16296
|
-
featureExpressionInfo?: CatalogFootprintLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
16297
|
-
unit?: ElevationUnit | nullish;
|
|
16298
|
-
}
|
|
16299
|
-
|
|
16300
|
-
export interface CatalogFootprintLayerElevationInfo extends AnonymousAccessor {
|
|
16301
|
-
get featureExpressionInfo(): CatalogFootprintLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
16302
|
-
set featureExpressionInfo(value: CatalogFootprintLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
16303
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
16304
|
-
offset: number | nullish;
|
|
16305
|
-
unit: ElevationUnit | nullish;
|
|
16306
|
-
}
|
|
16307
|
-
|
|
16308
|
-
export interface CatalogFootprintLayerElevationInfoFeatureExpressionInfoProperties {
|
|
16309
|
-
expression?: string;
|
|
16310
|
-
}
|
|
16311
|
-
|
|
16312
|
-
export interface CatalogFootprintLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
16313
|
-
expression: string;
|
|
16314
|
-
}
|
|
16315
|
-
|
|
16316
16261
|
export interface CatalogFootprintLayerGetFieldDomainOptions {
|
|
16317
16262
|
feature: Graphic;
|
|
16318
16263
|
}
|
|
@@ -16754,8 +16699,8 @@ declare namespace __esri {
|
|
|
16754
16699
|
*
|
|
16755
16700
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#elevationInfo Read more...}
|
|
16756
16701
|
*/
|
|
16757
|
-
get elevationInfo():
|
|
16758
|
-
set elevationInfo(value:
|
|
16702
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
16703
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
16759
16704
|
/**
|
|
16760
16705
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
16761
16706
|
*
|
|
@@ -16986,7 +16931,7 @@ declare namespace __esri {
|
|
|
16986
16931
|
*
|
|
16987
16932
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#elevationInfo Read more...}
|
|
16988
16933
|
*/
|
|
16989
|
-
elevationInfo?:
|
|
16934
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
16990
16935
|
/**
|
|
16991
16936
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
16992
16937
|
*
|
|
@@ -17409,8 +17354,8 @@ declare namespace __esri {
|
|
|
17409
17354
|
*
|
|
17410
17355
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#elevationInfo Read more...}
|
|
17411
17356
|
*/
|
|
17412
|
-
get elevationInfo():
|
|
17413
|
-
set elevationInfo(value:
|
|
17357
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
17358
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
17414
17359
|
/**
|
|
17415
17360
|
* The featureEffect can be used to draw attention features of interest.
|
|
17416
17361
|
*
|
|
@@ -17688,7 +17633,7 @@ declare namespace __esri {
|
|
|
17688
17633
|
*
|
|
17689
17634
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#elevationInfo Read more...}
|
|
17690
17635
|
*/
|
|
17691
|
-
elevationInfo?:
|
|
17636
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
17692
17637
|
/**
|
|
17693
17638
|
* The featureEffect can be used to draw attention features of interest.
|
|
17694
17639
|
*
|
|
@@ -17870,31 +17815,6 @@ declare namespace __esri {
|
|
|
17870
17815
|
useViewTime?: TemporalLayerProperties["useViewTime"];
|
|
17871
17816
|
}
|
|
17872
17817
|
|
|
17873
|
-
export interface CSVLayerElevationInfoProperties {
|
|
17874
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
17875
|
-
offset?: number | nullish;
|
|
17876
|
-
featureExpressionInfo?: CSVLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
17877
|
-
unit?: ElevationUnit | nullish;
|
|
17878
|
-
}
|
|
17879
|
-
|
|
17880
|
-
export interface CSVLayerElevationInfo extends AnonymousAccessor {
|
|
17881
|
-
get featureExpressionInfo(): CSVLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
17882
|
-
set featureExpressionInfo(value: CSVLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
17883
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
17884
|
-
offset: number | nullish;
|
|
17885
|
-
unit: ElevationUnit | nullish;
|
|
17886
|
-
}
|
|
17887
|
-
|
|
17888
|
-
export interface CSVLayerElevationInfoFeatureExpressionInfoProperties {
|
|
17889
|
-
title?: string;
|
|
17890
|
-
expression?: string;
|
|
17891
|
-
}
|
|
17892
|
-
|
|
17893
|
-
export interface CSVLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
17894
|
-
title: string;
|
|
17895
|
-
expression: string;
|
|
17896
|
-
}
|
|
17897
|
-
|
|
17898
17818
|
export interface CSVLayerGetFieldDomainOptions {
|
|
17899
17819
|
feature: Graphic;
|
|
17900
17820
|
}
|
|
@@ -18576,8 +18496,8 @@ declare namespace __esri {
|
|
|
18576
18496
|
*
|
|
18577
18497
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#elevationInfo Read more...}
|
|
18578
18498
|
*/
|
|
18579
|
-
get elevationInfo():
|
|
18580
|
-
set elevationInfo(value:
|
|
18499
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
18500
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
18581
18501
|
/**
|
|
18582
18502
|
* The featureEffect can be used to draw attention features of interest.
|
|
18583
18503
|
*
|
|
@@ -19069,7 +18989,7 @@ declare namespace __esri {
|
|
|
19069
18989
|
*
|
|
19070
18990
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#elevationInfo Read more...}
|
|
19071
18991
|
*/
|
|
19072
|
-
elevationInfo?:
|
|
18992
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
19073
18993
|
/**
|
|
19074
18994
|
* The featureEffect can be used to draw attention features of interest.
|
|
19075
18995
|
*
|
|
@@ -19929,8 +19849,8 @@ declare namespace __esri {
|
|
|
19929
19849
|
*
|
|
19930
19850
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#elevationInfo Read more...}
|
|
19931
19851
|
*/
|
|
19932
|
-
get elevationInfo():
|
|
19933
|
-
set elevationInfo(value:
|
|
19852
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
19853
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
19934
19854
|
/**
|
|
19935
19855
|
* The featureEffect can be used to draw attention features of interest.
|
|
19936
19856
|
*
|
|
@@ -20212,7 +20132,7 @@ declare namespace __esri {
|
|
|
20212
20132
|
*
|
|
20213
20133
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#elevationInfo Read more...}
|
|
20214
20134
|
*/
|
|
20215
|
-
elevationInfo?:
|
|
20135
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
20216
20136
|
/**
|
|
20217
20137
|
* The featureEffect can be used to draw attention features of interest.
|
|
20218
20138
|
*
|
|
@@ -20404,31 +20324,6 @@ declare namespace __esri {
|
|
|
20404
20324
|
deleteFeatures?: Graphic[] | any[] | Collection<Graphic>;
|
|
20405
20325
|
}
|
|
20406
20326
|
|
|
20407
|
-
export interface GeoJSONLayerElevationInfoProperties {
|
|
20408
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
20409
|
-
offset?: number | nullish;
|
|
20410
|
-
featureExpressionInfo?: GeoJSONLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
20411
|
-
unit?: ElevationUnit | nullish;
|
|
20412
|
-
}
|
|
20413
|
-
|
|
20414
|
-
export interface GeoJSONLayerElevationInfo extends AnonymousAccessor {
|
|
20415
|
-
get featureExpressionInfo(): GeoJSONLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
20416
|
-
set featureExpressionInfo(value: GeoJSONLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
20417
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
20418
|
-
offset: number | nullish;
|
|
20419
|
-
unit: ElevationUnit | nullish;
|
|
20420
|
-
}
|
|
20421
|
-
|
|
20422
|
-
export interface GeoJSONLayerElevationInfoFeatureExpressionInfoProperties {
|
|
20423
|
-
title?: string;
|
|
20424
|
-
expression?: string;
|
|
20425
|
-
}
|
|
20426
|
-
|
|
20427
|
-
export interface GeoJSONLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
20428
|
-
title: string;
|
|
20429
|
-
expression: string;
|
|
20430
|
-
}
|
|
20431
|
-
|
|
20432
20327
|
export interface GeoJSONLayerGetFieldDomainOptions {
|
|
20433
20328
|
feature: Graphic;
|
|
20434
20329
|
}
|
|
@@ -20738,8 +20633,8 @@ declare namespace __esri {
|
|
|
20738
20633
|
*
|
|
20739
20634
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GraphicsLayer.html#elevationInfo Read more...}
|
|
20740
20635
|
*/
|
|
20741
|
-
get elevationInfo():
|
|
20742
|
-
set elevationInfo(value:
|
|
20636
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
20637
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
20743
20638
|
/**
|
|
20744
20639
|
* A collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html graphics} in the layer.
|
|
20745
20640
|
*
|
|
@@ -20806,7 +20701,7 @@ declare namespace __esri {
|
|
|
20806
20701
|
*
|
|
20807
20702
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GraphicsLayer.html#elevationInfo Read more...}
|
|
20808
20703
|
*/
|
|
20809
|
-
elevationInfo?:
|
|
20704
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
20810
20705
|
/**
|
|
20811
20706
|
* A collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html graphics} in the layer.
|
|
20812
20707
|
*
|
|
@@ -20833,31 +20728,6 @@ declare namespace __esri {
|
|
|
20833
20728
|
screenSizePerspectiveEnabled?: boolean;
|
|
20834
20729
|
}
|
|
20835
20730
|
|
|
20836
|
-
export interface GraphicsLayerElevationInfoProperties {
|
|
20837
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
20838
|
-
offset?: number | nullish;
|
|
20839
|
-
featureExpressionInfo?: GraphicsLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
20840
|
-
unit?: ElevationUnit | nullish;
|
|
20841
|
-
}
|
|
20842
|
-
|
|
20843
|
-
export interface GraphicsLayerElevationInfo extends AnonymousAccessor {
|
|
20844
|
-
get featureExpressionInfo(): GraphicsLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
20845
|
-
set featureExpressionInfo(value: GraphicsLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
20846
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
20847
|
-
offset: number | nullish;
|
|
20848
|
-
unit: ElevationUnit | nullish;
|
|
20849
|
-
}
|
|
20850
|
-
|
|
20851
|
-
export interface GraphicsLayerElevationInfoFeatureExpressionInfoProperties {
|
|
20852
|
-
title?: string;
|
|
20853
|
-
expression?: string;
|
|
20854
|
-
}
|
|
20855
|
-
|
|
20856
|
-
export interface GraphicsLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
20857
|
-
title: string;
|
|
20858
|
-
expression: string;
|
|
20859
|
-
}
|
|
20860
|
-
|
|
20861
20731
|
export interface GroupLayer extends Layer, LayersMixin, TablesMixin, PortalLayer, BlendLayer, OperationalLayer {
|
|
20862
20732
|
}
|
|
20863
20733
|
|
|
@@ -21400,6 +21270,13 @@ declare namespace __esri {
|
|
|
21400
21270
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html Read more...}
|
|
21401
21271
|
*/
|
|
21402
21272
|
constructor(properties?: ImageryLayerProperties);
|
|
21273
|
+
/**
|
|
21274
|
+
* Specifies how the imagery is placed on the vertical axis (z).
|
|
21275
|
+
*
|
|
21276
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#elevationInfo Read more...}
|
|
21277
|
+
*/
|
|
21278
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
21279
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
21403
21280
|
/**
|
|
21404
21281
|
* Defines how overlapping images should be mosaicked.
|
|
21405
21282
|
*
|
|
@@ -21865,6 +21742,12 @@ declare namespace __esri {
|
|
|
21865
21742
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#effect Read more...}
|
|
21866
21743
|
*/
|
|
21867
21744
|
effect?: Effect | nullish;
|
|
21745
|
+
/**
|
|
21746
|
+
* Specifies how the imagery is placed on the vertical axis (z).
|
|
21747
|
+
*
|
|
21748
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#elevationInfo Read more...}
|
|
21749
|
+
*/
|
|
21750
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
21868
21751
|
/**
|
|
21869
21752
|
* The format of the exported image.
|
|
21870
21753
|
*
|
|
@@ -22309,6 +22192,13 @@ declare namespace __esri {
|
|
|
22309
22192
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html Read more...}
|
|
22310
22193
|
*/
|
|
22311
22194
|
constructor(properties?: ImageryTileLayerProperties);
|
|
22195
|
+
/**
|
|
22196
|
+
* Specifies how the imagery is placed on the vertical axis (z).
|
|
22197
|
+
*
|
|
22198
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#elevationInfo Read more...}
|
|
22199
|
+
*/
|
|
22200
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
22201
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
22312
22202
|
/**
|
|
22313
22203
|
* Represents a multidimensional subset of raster data.
|
|
22314
22204
|
*
|
|
@@ -22528,6 +22418,12 @@ declare namespace __esri {
|
|
|
22528
22418
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#effect Read more...}
|
|
22529
22419
|
*/
|
|
22530
22420
|
effect?: Effect | nullish;
|
|
22421
|
+
/**
|
|
22422
|
+
* Specifies how the imagery is placed on the vertical axis (z).
|
|
22423
|
+
*
|
|
22424
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#elevationInfo Read more...}
|
|
22425
|
+
*/
|
|
22426
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
22531
22427
|
/**
|
|
22532
22428
|
* Defines how to interpolate pixel values.
|
|
22533
22429
|
*
|
|
@@ -22782,8 +22678,8 @@ declare namespace __esri {
|
|
|
22782
22678
|
*
|
|
22783
22679
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMesh3DTilesLayer.html#elevationInfo Read more...}
|
|
22784
22680
|
*/
|
|
22785
|
-
get elevationInfo():
|
|
22786
|
-
set elevationInfo(value:
|
|
22681
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
22682
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
22787
22683
|
/**
|
|
22788
22684
|
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SceneModification.html SceneModification} collection used to apply client-side
|
|
22789
22685
|
* modifications to the layer.
|
|
@@ -22827,7 +22723,7 @@ declare namespace __esri {
|
|
|
22827
22723
|
*
|
|
22828
22724
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMesh3DTilesLayer.html#elevationInfo Read more...}
|
|
22829
22725
|
*/
|
|
22830
|
-
elevationInfo?:
|
|
22726
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
22831
22727
|
/**
|
|
22832
22728
|
* The maximum scale (most zoomed in) at which the layer is visible in the view.
|
|
22833
22729
|
*
|
|
@@ -22873,18 +22769,6 @@ declare namespace __esri {
|
|
|
22873
22769
|
url?: string | nullish;
|
|
22874
22770
|
}
|
|
22875
22771
|
|
|
22876
|
-
export interface IntegratedMesh3DTilesLayerElevationInfoProperties {
|
|
22877
|
-
mode?: "absolute-height";
|
|
22878
|
-
offset?: number | nullish;
|
|
22879
|
-
unit?: ElevationUnit | nullish;
|
|
22880
|
-
}
|
|
22881
|
-
|
|
22882
|
-
export interface IntegratedMesh3DTilesLayerElevationInfo extends AnonymousAccessor {
|
|
22883
|
-
mode: "absolute-height";
|
|
22884
|
-
offset: number | nullish;
|
|
22885
|
-
unit: ElevationUnit | nullish;
|
|
22886
|
-
}
|
|
22887
|
-
|
|
22888
22772
|
export interface IntegratedMeshLayer extends Layer, SceneService, PortalLayer, ScaleRangeLayer, CustomParametersMixin, APIKeyMixin, OperationalLayer {
|
|
22889
22773
|
}
|
|
22890
22774
|
|
|
@@ -22962,8 +22846,8 @@ declare namespace __esri {
|
|
|
22962
22846
|
*
|
|
22963
22847
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMeshLayer.html#elevationInfo Read more...}
|
|
22964
22848
|
*/
|
|
22965
|
-
get elevationInfo():
|
|
22966
|
-
set elevationInfo(value:
|
|
22849
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
22850
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
22967
22851
|
/**
|
|
22968
22852
|
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SceneModification.html SceneModification} collection used to apply client-side
|
|
22969
22853
|
* modifications to the layer.
|
|
@@ -23029,7 +22913,7 @@ declare namespace __esri {
|
|
|
23029
22913
|
*
|
|
23030
22914
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMeshLayer.html#elevationInfo Read more...}
|
|
23031
22915
|
*/
|
|
23032
|
-
elevationInfo?:
|
|
22916
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
23033
22917
|
/**
|
|
23034
22918
|
* The layer ID, or layer index, of a Scene Service layer.
|
|
23035
22919
|
*
|
|
@@ -23081,18 +22965,6 @@ declare namespace __esri {
|
|
|
23081
22965
|
url?: SceneServiceProperties["url"];
|
|
23082
22966
|
}
|
|
23083
22967
|
|
|
23084
|
-
export interface IntegratedMeshLayerElevationInfoProperties {
|
|
23085
|
-
mode?: "absolute-height";
|
|
23086
|
-
offset?: number | nullish;
|
|
23087
|
-
unit?: ElevationUnit | nullish;
|
|
23088
|
-
}
|
|
23089
|
-
|
|
23090
|
-
export interface IntegratedMeshLayerElevationInfo extends AnonymousAccessor {
|
|
23091
|
-
mode: "absolute-height";
|
|
23092
|
-
offset: number | nullish;
|
|
23093
|
-
unit: ElevationUnit | nullish;
|
|
23094
|
-
}
|
|
23095
|
-
|
|
23096
22968
|
export interface IntegratedMeshLayerSaveAsOptions {
|
|
23097
22969
|
folder?: PortalFolder;
|
|
23098
22970
|
}
|
|
@@ -23407,8 +23279,8 @@ declare namespace __esri {
|
|
|
23407
23279
|
*
|
|
23408
23280
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#elevationInfo Read more...}
|
|
23409
23281
|
*/
|
|
23410
|
-
get elevationInfo():
|
|
23411
|
-
set elevationInfo(value:
|
|
23282
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
23283
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
23412
23284
|
/**
|
|
23413
23285
|
* The featureEffect can be used to draw attention features of interest.
|
|
23414
23286
|
*
|
|
@@ -23619,7 +23491,7 @@ declare namespace __esri {
|
|
|
23619
23491
|
*
|
|
23620
23492
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#elevationInfo Read more...}
|
|
23621
23493
|
*/
|
|
23622
|
-
elevationInfo?:
|
|
23494
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
23623
23495
|
/**
|
|
23624
23496
|
* The featureEffect can be used to draw attention features of interest.
|
|
23625
23497
|
*
|
|
@@ -23784,31 +23656,6 @@ declare namespace __esri {
|
|
|
23784
23656
|
useViewTime?: TemporalLayerProperties["useViewTime"];
|
|
23785
23657
|
}
|
|
23786
23658
|
|
|
23787
|
-
export interface KnowledgeGraphSublayerElevationInfoProperties {
|
|
23788
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
23789
|
-
offset?: number | nullish;
|
|
23790
|
-
featureExpressionInfo?: KnowledgeGraphSublayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
23791
|
-
unit?: ElevationUnit | nullish;
|
|
23792
|
-
}
|
|
23793
|
-
|
|
23794
|
-
export interface KnowledgeGraphSublayerElevationInfo extends AnonymousAccessor {
|
|
23795
|
-
get featureExpressionInfo(): KnowledgeGraphSublayerElevationInfoFeatureExpressionInfo | nullish;
|
|
23796
|
-
set featureExpressionInfo(value: KnowledgeGraphSublayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
23797
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
23798
|
-
offset: number | nullish;
|
|
23799
|
-
unit: ElevationUnit | nullish;
|
|
23800
|
-
}
|
|
23801
|
-
|
|
23802
|
-
export interface KnowledgeGraphSublayerElevationInfoFeatureExpressionInfoProperties {
|
|
23803
|
-
title?: string;
|
|
23804
|
-
expression?: string;
|
|
23805
|
-
}
|
|
23806
|
-
|
|
23807
|
-
export interface KnowledgeGraphSublayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
23808
|
-
title: string;
|
|
23809
|
-
expression: string;
|
|
23810
|
-
}
|
|
23811
|
-
|
|
23812
23659
|
export interface KnowledgeGraphSublayerGetFieldDomainOptions {
|
|
23813
23660
|
feature: Graphic;
|
|
23814
23661
|
}
|
|
@@ -26078,8 +25925,8 @@ declare namespace __esri {
|
|
|
26078
25925
|
readonly uniqueIdFields: string[] | nullish;
|
|
26079
25926
|
url: string | nullish;
|
|
26080
25927
|
readonly version: number | nullish;
|
|
26081
|
-
get elevationInfo():
|
|
26082
|
-
set elevationInfo(value:
|
|
25928
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
25929
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
26083
25930
|
get floorInfo(): LayerFloorInfo | nullish;
|
|
26084
25931
|
set floorInfo(value: LayerFloorInfoProperties | nullish);
|
|
26085
25932
|
get fullExtent(): Extent | nullish;
|
|
@@ -26112,7 +25959,7 @@ declare namespace __esri {
|
|
|
26112
25959
|
dateFieldsTimeZone?: string | nullish;
|
|
26113
25960
|
definitionExpression?: string | nullish;
|
|
26114
25961
|
displayField?: string | nullish;
|
|
26115
|
-
elevationInfo?:
|
|
25962
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
26116
25963
|
floorInfo?: LayerFloorInfoProperties | nullish;
|
|
26117
25964
|
fullExtent?: ExtentProperties | nullish;
|
|
26118
25965
|
gdbVersion?: string | nullish;
|
|
@@ -26131,31 +25978,6 @@ declare namespace __esri {
|
|
|
26131
25978
|
url?: string | nullish;
|
|
26132
25979
|
}
|
|
26133
25980
|
|
|
26134
|
-
export interface FeatureLayerBaseElevationInfoProperties {
|
|
26135
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
26136
|
-
offset?: number | nullish;
|
|
26137
|
-
featureExpressionInfo?: FeatureLayerBaseElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
26138
|
-
unit?: ElevationUnit | nullish;
|
|
26139
|
-
}
|
|
26140
|
-
|
|
26141
|
-
export interface FeatureLayerBaseElevationInfo extends AnonymousAccessor {
|
|
26142
|
-
get featureExpressionInfo(): FeatureLayerBaseElevationInfoFeatureExpressionInfo | nullish;
|
|
26143
|
-
set featureExpressionInfo(value: FeatureLayerBaseElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
26144
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
26145
|
-
offset: number | nullish;
|
|
26146
|
-
unit: ElevationUnit | nullish;
|
|
26147
|
-
}
|
|
26148
|
-
|
|
26149
|
-
export interface FeatureLayerBaseElevationInfoFeatureExpressionInfoProperties {
|
|
26150
|
-
title?: string;
|
|
26151
|
-
expression?: string;
|
|
26152
|
-
}
|
|
26153
|
-
|
|
26154
|
-
export interface FeatureLayerBaseElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
26155
|
-
title: string;
|
|
26156
|
-
expression: string;
|
|
26157
|
-
}
|
|
26158
|
-
|
|
26159
25981
|
export interface FeatureLayerBaseGetFieldDomainOptions {
|
|
26160
25982
|
feature: Graphic;
|
|
26161
25983
|
}
|
|
@@ -26791,8 +26613,8 @@ declare namespace __esri {
|
|
|
26791
26613
|
*
|
|
26792
26614
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OGCFeatureLayer.html#elevationInfo Read more...}
|
|
26793
26615
|
*/
|
|
26794
|
-
get elevationInfo():
|
|
26795
|
-
set elevationInfo(value:
|
|
26616
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
26617
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
26796
26618
|
/**
|
|
26797
26619
|
* The featureEffect can be used to draw attention features of interest.
|
|
26798
26620
|
*
|
|
@@ -26958,7 +26780,7 @@ declare namespace __esri {
|
|
|
26958
26780
|
*
|
|
26959
26781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OGCFeatureLayer.html#elevationInfo Read more...}
|
|
26960
26782
|
*/
|
|
26961
|
-
elevationInfo?:
|
|
26783
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
26962
26784
|
/**
|
|
26963
26785
|
* The featureEffect can be used to draw attention features of interest.
|
|
26964
26786
|
*
|
|
@@ -27112,31 +26934,6 @@ declare namespace __esri {
|
|
|
27112
26934
|
view: View;
|
|
27113
26935
|
}
|
|
27114
26936
|
|
|
27115
|
-
export interface OGCFeatureLayerElevationInfoProperties {
|
|
27116
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
27117
|
-
offset?: number | nullish;
|
|
27118
|
-
featureExpressionInfo?: OGCFeatureLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
27119
|
-
unit?: ElevationUnit | nullish;
|
|
27120
|
-
}
|
|
27121
|
-
|
|
27122
|
-
export interface OGCFeatureLayerElevationInfo extends AnonymousAccessor {
|
|
27123
|
-
get featureExpressionInfo(): OGCFeatureLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
27124
|
-
set featureExpressionInfo(value: OGCFeatureLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
27125
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
27126
|
-
offset: number | nullish;
|
|
27127
|
-
unit: ElevationUnit | nullish;
|
|
27128
|
-
}
|
|
27129
|
-
|
|
27130
|
-
export interface OGCFeatureLayerElevationInfoFeatureExpressionInfoProperties {
|
|
27131
|
-
title?: string;
|
|
27132
|
-
expression?: string;
|
|
27133
|
-
}
|
|
27134
|
-
|
|
27135
|
-
export interface OGCFeatureLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
27136
|
-
title: string;
|
|
27137
|
-
expression: string;
|
|
27138
|
-
}
|
|
27139
|
-
|
|
27140
26937
|
export interface OGCFeatureLayerRefreshEvent {
|
|
27141
26938
|
dataChanged: boolean;
|
|
27142
26939
|
}
|
|
@@ -27643,8 +27440,8 @@ declare namespace __esri {
|
|
|
27643
27440
|
*
|
|
27644
27441
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#elevationInfo Read more...}
|
|
27645
27442
|
*/
|
|
27646
|
-
get elevationInfo():
|
|
27647
|
-
set elevationInfo(value:
|
|
27443
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
27444
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
27648
27445
|
/**
|
|
27649
27446
|
* The featureEffect can be used to draw attention features of interest.
|
|
27650
27447
|
*
|
|
@@ -27891,7 +27688,7 @@ declare namespace __esri {
|
|
|
27891
27688
|
*
|
|
27892
27689
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#elevationInfo Read more...}
|
|
27893
27690
|
*/
|
|
27894
|
-
elevationInfo?:
|
|
27691
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
27895
27692
|
/**
|
|
27896
27693
|
* The source of elevation, that will be used to compute ground to image transformations.
|
|
27897
27694
|
*
|
|
@@ -28145,31 +27942,6 @@ declare namespace __esri {
|
|
|
28145
27942
|
lod: number | nullish;
|
|
28146
27943
|
}
|
|
28147
27944
|
|
|
28148
|
-
export interface OrientedImageryLayerElevationInfoProperties {
|
|
28149
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
28150
|
-
offset?: number | nullish;
|
|
28151
|
-
featureExpressionInfo?: OrientedImageryLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
28152
|
-
unit?: ElevationUnit | nullish;
|
|
28153
|
-
}
|
|
28154
|
-
|
|
28155
|
-
export interface OrientedImageryLayerElevationInfo extends AnonymousAccessor {
|
|
28156
|
-
get featureExpressionInfo(): OrientedImageryLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
28157
|
-
set featureExpressionInfo(value: OrientedImageryLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
28158
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
28159
|
-
offset: number | nullish;
|
|
28160
|
-
unit: ElevationUnit | nullish;
|
|
28161
|
-
}
|
|
28162
|
-
|
|
28163
|
-
export interface OrientedImageryLayerElevationInfoFeatureExpressionInfoProperties {
|
|
28164
|
-
title?: string;
|
|
28165
|
-
expression?: string;
|
|
28166
|
-
}
|
|
28167
|
-
|
|
28168
|
-
export interface OrientedImageryLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
28169
|
-
title: string;
|
|
28170
|
-
expression: string;
|
|
28171
|
-
}
|
|
28172
|
-
|
|
28173
27945
|
export interface OrientedImageryLayerQueryFeatureCountOptions {
|
|
28174
27946
|
signal?: AbortSignal | nullish;
|
|
28175
27947
|
}
|
|
@@ -28847,12 +28619,12 @@ declare namespace __esri {
|
|
|
28847
28619
|
*/
|
|
28848
28620
|
constructor(properties?: PointCloudLayerProperties);
|
|
28849
28621
|
/**
|
|
28850
|
-
* Specifies how
|
|
28622
|
+
* Specifies how features are placed on the vertical axis (z).
|
|
28851
28623
|
*
|
|
28852
28624
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#elevationInfo Read more...}
|
|
28853
28625
|
*/
|
|
28854
|
-
get elevationInfo():
|
|
28855
|
-
set elevationInfo(value:
|
|
28626
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
28627
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
28856
28628
|
/**
|
|
28857
28629
|
* An array of fields accessible in the layer.
|
|
28858
28630
|
*
|
|
@@ -28963,11 +28735,11 @@ declare namespace __esri {
|
|
|
28963
28735
|
*/
|
|
28964
28736
|
customParameters?: CustomParametersMixinProperties["customParameters"];
|
|
28965
28737
|
/**
|
|
28966
|
-
* Specifies how
|
|
28738
|
+
* Specifies how features are placed on the vertical axis (z).
|
|
28967
28739
|
*
|
|
28968
28740
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#elevationInfo Read more...}
|
|
28969
28741
|
*/
|
|
28970
|
-
elevationInfo?:
|
|
28742
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
28971
28743
|
/**
|
|
28972
28744
|
* An array of fields accessible in the layer.
|
|
28973
28745
|
*
|
|
@@ -29058,18 +28830,6 @@ declare namespace __esri {
|
|
|
29058
28830
|
url?: SceneServiceProperties["url"];
|
|
29059
28831
|
}
|
|
29060
28832
|
|
|
29061
|
-
export interface PointCloudLayerElevationInfoProperties {
|
|
29062
|
-
mode?: "absolute-height";
|
|
29063
|
-
offset?: number | nullish;
|
|
29064
|
-
unit?: ElevationUnit | nullish;
|
|
29065
|
-
}
|
|
29066
|
-
|
|
29067
|
-
export interface PointCloudLayerElevationInfo extends AnonymousAccessor {
|
|
29068
|
-
mode: "absolute-height";
|
|
29069
|
-
offset: number | nullish;
|
|
29070
|
-
unit: ElevationUnit | nullish;
|
|
29071
|
-
}
|
|
29072
|
-
|
|
29073
28833
|
export interface PointCloudLayerQueryCachedStatisticsOptions {
|
|
29074
28834
|
signal?: AbortSignal | nullish;
|
|
29075
28835
|
}
|
|
@@ -29541,8 +29301,8 @@ declare namespace __esri {
|
|
|
29541
29301
|
*
|
|
29542
29302
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#elevationInfo Read more...}
|
|
29543
29303
|
*/
|
|
29544
|
-
get elevationInfo():
|
|
29545
|
-
set elevationInfo(value:
|
|
29304
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
29305
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
29546
29306
|
/**
|
|
29547
29307
|
* List of ObjectIDs not being displayed in the view.
|
|
29548
29308
|
*
|
|
@@ -29840,7 +29600,7 @@ declare namespace __esri {
|
|
|
29840
29600
|
*
|
|
29841
29601
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#elevationInfo Read more...}
|
|
29842
29602
|
*/
|
|
29843
|
-
elevationInfo?:
|
|
29603
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
29844
29604
|
/**
|
|
29845
29605
|
* List of ObjectIDs not being displayed in the view.
|
|
29846
29606
|
*
|
|
@@ -30076,18 +29836,6 @@ declare namespace __esri {
|
|
|
30076
29836
|
globalIdUsed?: boolean;
|
|
30077
29837
|
}
|
|
30078
29838
|
|
|
30079
|
-
export interface SceneLayerElevationInfoProperties {
|
|
30080
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
30081
|
-
offset?: number | nullish;
|
|
30082
|
-
unit?: ElevationUnit | nullish;
|
|
30083
|
-
}
|
|
30084
|
-
|
|
30085
|
-
export interface SceneLayerElevationInfo extends AnonymousAccessor {
|
|
30086
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
30087
|
-
offset: number | nullish;
|
|
30088
|
-
unit: ElevationUnit | nullish;
|
|
30089
|
-
}
|
|
30090
|
-
|
|
30091
29839
|
export interface SceneLayerGetFieldDomainOptions {
|
|
30092
29840
|
feature: Graphic;
|
|
30093
29841
|
}
|
|
@@ -30384,8 +30132,8 @@ declare namespace __esri {
|
|
|
30384
30132
|
*
|
|
30385
30133
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-StreamLayer.html#elevationInfo Read more...}
|
|
30386
30134
|
*/
|
|
30387
|
-
get elevationInfo():
|
|
30388
|
-
set elevationInfo(value:
|
|
30135
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
30136
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
30389
30137
|
/**
|
|
30390
30138
|
* The featureEffect can be used to draw attention features of interest.
|
|
30391
30139
|
*
|
|
@@ -30636,7 +30384,7 @@ declare namespace __esri {
|
|
|
30636
30384
|
*
|
|
30637
30385
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-StreamLayer.html#elevationInfo Read more...}
|
|
30638
30386
|
*/
|
|
30639
|
-
elevationInfo?:
|
|
30387
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
30640
30388
|
/**
|
|
30641
30389
|
* The featureEffect can be used to draw attention features of interest.
|
|
30642
30390
|
*
|
|
@@ -30845,31 +30593,6 @@ declare namespace __esri {
|
|
|
30845
30593
|
maxReconnectionInterval?: number;
|
|
30846
30594
|
}
|
|
30847
30595
|
|
|
30848
|
-
export interface StreamLayerElevationInfoProperties {
|
|
30849
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
30850
|
-
offset?: number | nullish;
|
|
30851
|
-
featureExpressionInfo?: StreamLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
30852
|
-
unit?: ElevationUnit | nullish;
|
|
30853
|
-
}
|
|
30854
|
-
|
|
30855
|
-
export interface StreamLayerElevationInfo extends AnonymousAccessor {
|
|
30856
|
-
get featureExpressionInfo(): StreamLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
30857
|
-
set featureExpressionInfo(value: StreamLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
30858
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
30859
|
-
offset: number | nullish;
|
|
30860
|
-
unit: ElevationUnit | nullish;
|
|
30861
|
-
}
|
|
30862
|
-
|
|
30863
|
-
export interface StreamLayerElevationInfoFeatureExpressionInfoProperties {
|
|
30864
|
-
title?: string;
|
|
30865
|
-
expression?: string;
|
|
30866
|
-
}
|
|
30867
|
-
|
|
30868
|
-
export interface StreamLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
30869
|
-
title: string;
|
|
30870
|
-
expression: string;
|
|
30871
|
-
}
|
|
30872
|
-
|
|
30873
30596
|
export interface StreamLayerGetFieldDomainOptions {
|
|
30874
30597
|
feature: Graphic;
|
|
30875
30598
|
}
|
|
@@ -31232,8 +30955,8 @@ declare namespace __esri {
|
|
|
31232
30955
|
*
|
|
31233
30956
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#elevationInfo Read more...}
|
|
31234
30957
|
*/
|
|
31235
|
-
get elevationInfo():
|
|
31236
|
-
set elevationInfo(value:
|
|
30958
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
30959
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
31237
30960
|
/**
|
|
31238
30961
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
31239
30962
|
*
|
|
@@ -31561,7 +31284,7 @@ declare namespace __esri {
|
|
|
31561
31284
|
*
|
|
31562
31285
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#elevationInfo Read more...}
|
|
31563
31286
|
*/
|
|
31564
|
-
elevationInfo?:
|
|
31287
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
31565
31288
|
/**
|
|
31566
31289
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
31567
31290
|
*
|
|
@@ -46562,8 +46285,8 @@ declare namespace __esri {
|
|
|
46562
46285
|
*
|
|
46563
46286
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#elevationInfo Read more...}
|
|
46564
46287
|
*/
|
|
46565
|
-
get elevationInfo():
|
|
46566
|
-
set elevationInfo(value:
|
|
46288
|
+
get elevationInfo(): ElevationInfo | nullish;
|
|
46289
|
+
set elevationInfo(value: ElevationInfoProperties | nullish);
|
|
46567
46290
|
/**
|
|
46568
46291
|
* The featureEffect can be used to draw attention features of interest.
|
|
46569
46292
|
*
|
|
@@ -46795,7 +46518,7 @@ declare namespace __esri {
|
|
|
46795
46518
|
*
|
|
46796
46519
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#elevationInfo Read more...}
|
|
46797
46520
|
*/
|
|
46798
|
-
elevationInfo?:
|
|
46521
|
+
elevationInfo?: ElevationInfoProperties | nullish;
|
|
46799
46522
|
/**
|
|
46800
46523
|
* The featureEffect can be used to draw attention features of interest.
|
|
46801
46524
|
*
|
|
@@ -46990,31 +46713,6 @@ declare namespace __esri {
|
|
|
46990
46713
|
dataChanged: boolean;
|
|
46991
46714
|
}
|
|
46992
46715
|
|
|
46993
|
-
export interface WFSLayerElevationInfoProperties {
|
|
46994
|
-
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
46995
|
-
offset?: number | nullish;
|
|
46996
|
-
featureExpressionInfo?: WFSLayerElevationInfoFeatureExpressionInfoProperties | nullish;
|
|
46997
|
-
unit?: ElevationUnit | nullish;
|
|
46998
|
-
}
|
|
46999
|
-
|
|
47000
|
-
export interface WFSLayerElevationInfo extends AnonymousAccessor {
|
|
47001
|
-
get featureExpressionInfo(): WFSLayerElevationInfoFeatureExpressionInfo | nullish;
|
|
47002
|
-
set featureExpressionInfo(value: WFSLayerElevationInfoFeatureExpressionInfoProperties | nullish);
|
|
47003
|
-
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
47004
|
-
offset: number | nullish;
|
|
47005
|
-
unit: ElevationUnit | nullish;
|
|
47006
|
-
}
|
|
47007
|
-
|
|
47008
|
-
export interface WFSLayerElevationInfoFeatureExpressionInfoProperties {
|
|
47009
|
-
title?: string;
|
|
47010
|
-
expression?: string;
|
|
47011
|
-
}
|
|
47012
|
-
|
|
47013
|
-
export interface WFSLayerElevationInfoFeatureExpressionInfo extends AnonymousAccessor {
|
|
47014
|
-
title: string;
|
|
47015
|
-
expression: string;
|
|
47016
|
-
}
|
|
47017
|
-
|
|
47018
46716
|
export interface WFSLayerGetFieldDomainOptions {
|
|
47019
46717
|
feature: Graphic;
|
|
47020
46718
|
}
|
|
@@ -89049,6 +88747,141 @@ declare namespace __esri {
|
|
|
89049
88747
|
preserveOutlineWidth?: boolean;
|
|
89050
88748
|
}
|
|
89051
88749
|
|
|
88750
|
+
export interface ElevationInfo extends Accessor, JSONSupport {
|
|
88751
|
+
}
|
|
88752
|
+
|
|
88753
|
+
export class ElevationInfo {
|
|
88754
|
+
/**
|
|
88755
|
+
* Defines how the element is placed with respect to the terrain surface or 3D objects in the scene.
|
|
88756
|
+
*
|
|
88757
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#mode Read more...}
|
|
88758
|
+
*/
|
|
88759
|
+
mode: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
88760
|
+
/**
|
|
88761
|
+
* An elevation offset, which is added to the vertical position of the element.
|
|
88762
|
+
*
|
|
88763
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#offset Read more...}
|
|
88764
|
+
*/
|
|
88765
|
+
offset: number | nullish;
|
|
88766
|
+
/**
|
|
88767
|
+
* The unit for `featureExpressionInfo` and `offset` values.
|
|
88768
|
+
*
|
|
88769
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#unit Read more...}
|
|
88770
|
+
*/
|
|
88771
|
+
unit: ElevationUnit | nullish;
|
|
88772
|
+
/**
|
|
88773
|
+
* Specifies how elements like features, observers, targets or flow are placed on the vertical axis (z).
|
|
88774
|
+
*
|
|
88775
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html Read more...}
|
|
88776
|
+
*/
|
|
88777
|
+
constructor(properties?: ElevationInfoProperties);
|
|
88778
|
+
/**
|
|
88779
|
+
* Defines how to override an element's Z-value based on its attributes.
|
|
88780
|
+
*
|
|
88781
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#featureExpressionInfo Read more...}
|
|
88782
|
+
*/
|
|
88783
|
+
get featureExpressionInfo(): FeatureExpressionInfo | nullish;
|
|
88784
|
+
set featureExpressionInfo(value: FeatureExpressionInfoProperties | nullish);
|
|
88785
|
+
/**
|
|
88786
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
88787
|
+
*
|
|
88788
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#toJSON Read more...}
|
|
88789
|
+
*/
|
|
88790
|
+
toJSON(): any;
|
|
88791
|
+
/**
|
|
88792
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
88793
|
+
* generated from an ArcGIS product.
|
|
88794
|
+
*
|
|
88795
|
+
* @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
|
|
88796
|
+
*
|
|
88797
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#fromJSON Read more...}
|
|
88798
|
+
*/
|
|
88799
|
+
static fromJSON(json: any): any | nullish;
|
|
88800
|
+
static fromJSON(json: any): ElevationInfo;
|
|
88801
|
+
}
|
|
88802
|
+
|
|
88803
|
+
interface ElevationInfoProperties {
|
|
88804
|
+
/**
|
|
88805
|
+
* Defines how to override an element's Z-value based on its attributes.
|
|
88806
|
+
*
|
|
88807
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#featureExpressionInfo Read more...}
|
|
88808
|
+
*/
|
|
88809
|
+
featureExpressionInfo?: FeatureExpressionInfoProperties | nullish;
|
|
88810
|
+
/**
|
|
88811
|
+
* Defines how the element is placed with respect to the terrain surface or 3D objects in the scene.
|
|
88812
|
+
*
|
|
88813
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#mode Read more...}
|
|
88814
|
+
*/
|
|
88815
|
+
mode?: "on-the-ground" | "relative-to-ground" | "absolute-height" | "relative-to-scene";
|
|
88816
|
+
/**
|
|
88817
|
+
* An elevation offset, which is added to the vertical position of the element.
|
|
88818
|
+
*
|
|
88819
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#offset Read more...}
|
|
88820
|
+
*/
|
|
88821
|
+
offset?: number | nullish;
|
|
88822
|
+
/**
|
|
88823
|
+
* The unit for `featureExpressionInfo` and `offset` values.
|
|
88824
|
+
*
|
|
88825
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-ElevationInfo.html#unit Read more...}
|
|
88826
|
+
*/
|
|
88827
|
+
unit?: ElevationUnit | nullish;
|
|
88828
|
+
}
|
|
88829
|
+
|
|
88830
|
+
export interface FeatureExpressionInfo extends Accessor, JSONSupport {
|
|
88831
|
+
}
|
|
88832
|
+
|
|
88833
|
+
export class FeatureExpressionInfo {
|
|
88834
|
+
/**
|
|
88835
|
+
* An {@link https://developers.arcgis.com/javascript/latest/arcade/ Arcade} expression following the specification defined by the {@link https://developers.arcgis.com/javascript/latest/arcade/#z-values Arcade Feature Z Profile}.
|
|
88836
|
+
*
|
|
88837
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#expression Read more...}
|
|
88838
|
+
*/
|
|
88839
|
+
expression: string | nullish;
|
|
88840
|
+
/**
|
|
88841
|
+
* Title of the expression.
|
|
88842
|
+
*
|
|
88843
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#title Read more...}
|
|
88844
|
+
*/
|
|
88845
|
+
title: string | nullish;
|
|
88846
|
+
/**
|
|
88847
|
+
* Defines how to override a feature's Z-value based on its attributes.
|
|
88848
|
+
*
|
|
88849
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html Read more...}
|
|
88850
|
+
*/
|
|
88851
|
+
constructor(properties?: FeatureExpressionInfoProperties);
|
|
88852
|
+
/**
|
|
88853
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
88854
|
+
*
|
|
88855
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#toJSON Read more...}
|
|
88856
|
+
*/
|
|
88857
|
+
toJSON(): any;
|
|
88858
|
+
/**
|
|
88859
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
88860
|
+
* generated from an ArcGIS product.
|
|
88861
|
+
*
|
|
88862
|
+
* @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
|
|
88863
|
+
*
|
|
88864
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#fromJSON Read more...}
|
|
88865
|
+
*/
|
|
88866
|
+
static fromJSON(json: any): any | nullish;
|
|
88867
|
+
static fromJSON(json: any): FeatureExpressionInfo;
|
|
88868
|
+
}
|
|
88869
|
+
|
|
88870
|
+
interface FeatureExpressionInfoProperties {
|
|
88871
|
+
/**
|
|
88872
|
+
* An {@link https://developers.arcgis.com/javascript/latest/arcade/ Arcade} expression following the specification defined by the {@link https://developers.arcgis.com/javascript/latest/arcade/#z-values Arcade Feature Z Profile}.
|
|
88873
|
+
*
|
|
88874
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#expression Read more...}
|
|
88875
|
+
*/
|
|
88876
|
+
expression?: string | nullish;
|
|
88877
|
+
/**
|
|
88878
|
+
* Title of the expression.
|
|
88879
|
+
*
|
|
88880
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-support-FeatureExpressionInfo.html#title Read more...}
|
|
88881
|
+
*/
|
|
88882
|
+
title?: string | nullish;
|
|
88883
|
+
}
|
|
88884
|
+
|
|
89052
88885
|
/**
|
|
89053
88886
|
* Provides a utility method used to deserialize a JSON symbol object returned by the REST API.
|
|
89054
88887
|
*
|