@arcgis/core-adapter 4.32.0-next.44 → 4.32.0-next.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +7 -7
- package/dist/index.cjs +135 -24
- package/dist/index.d.cts +23 -8
- package/dist/index.d.ts +23 -8
- package/dist/index.js +116 -20
- package/package.json +1 -1
- package/scripts/generator.ts +19 -4
- package/src/index.ts +116 -20
- package/support/api-reference-esm-imports.json +11 -4
- package/support/arcgis.d.ts +1678 -642
package/support/arcgis.d.ts
CHANGED
|
@@ -1280,9 +1280,9 @@ declare namespace __esri {
|
|
|
1280
1280
|
*
|
|
1281
1281
|
* CollectionFlattener utils for Components.
|
|
1282
1282
|
*/
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1283
|
+
namespace CollectionFlattener {
|
|
1284
|
+
export interface coreCollectionFlattener {}
|
|
1285
|
+
}
|
|
1286
1286
|
|
|
1287
1287
|
export interface coreCollectionFlattener {}
|
|
1288
1288
|
|
|
@@ -1440,32 +1440,14 @@ declare namespace __esri {
|
|
|
1440
1440
|
|
|
1441
1441
|
export const previewSymbol2D: previewSymbol2D;
|
|
1442
1442
|
|
|
1443
|
-
/**
|
|
1444
|
-
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1445
|
-
*
|
|
1446
|
-
* Various utilities for the Scene Viewer application.
|
|
1447
|
-
*/
|
|
1448
|
-
interface sceneViewUtils {
|
|
1449
|
-
/**
|
|
1450
|
-
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1451
|
-
*
|
|
1452
|
-
* Gets whether the weather is visible in the scene view.
|
|
1453
|
-
*
|
|
1454
|
-
* @param view The scene view.
|
|
1455
|
-
*/
|
|
1456
|
-
isWeatherVisible(view: SceneView): boolean;
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
export const sceneViewUtils: sceneViewUtils;
|
|
1460
|
-
|
|
1461
1443
|
/**
|
|
1462
1444
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1463
1445
|
*
|
|
1464
1446
|
* SelectionOperation util for Components.
|
|
1465
1447
|
*/
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1448
|
+
namespace SelectionOperation {
|
|
1449
|
+
export interface Selector2DSelectionOperation {}
|
|
1450
|
+
}
|
|
1469
1451
|
|
|
1470
1452
|
export interface Selector2DSelectionOperation {}
|
|
1471
1453
|
|
|
@@ -1474,9 +1456,9 @@ declare namespace __esri {
|
|
|
1474
1456
|
*
|
|
1475
1457
|
* SketchTooltipControls util for Components.
|
|
1476
1458
|
*/
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1459
|
+
namespace SketchTooltipControls {
|
|
1460
|
+
export interface supportSketchTooltipControls {}
|
|
1461
|
+
}
|
|
1480
1462
|
|
|
1481
1463
|
export interface supportSketchTooltipControls {}
|
|
1482
1464
|
|
|
@@ -3048,7 +3030,7 @@ declare namespace __esri {
|
|
|
3048
3030
|
|
|
3049
3031
|
export interface configLog {
|
|
3050
3032
|
interceptors: LogInterceptor[];
|
|
3051
|
-
level: "none" | "error" | "
|
|
3033
|
+
level: "none" | "error" | "info" | "warn";
|
|
3052
3034
|
}
|
|
3053
3035
|
|
|
3054
3036
|
export interface configRequest {
|
|
@@ -3057,15 +3039,15 @@ declare namespace __esri {
|
|
|
3057
3039
|
maxUrlLength?: number;
|
|
3058
3040
|
priority?: "auto" | "high" | "low";
|
|
3059
3041
|
proxyRules?: configRequestProxyRules[];
|
|
3060
|
-
proxyUrl
|
|
3061
|
-
timeout
|
|
3062
|
-
trustedServers
|
|
3063
|
-
useIdentity
|
|
3042
|
+
proxyUrl: string;
|
|
3043
|
+
timeout: number;
|
|
3044
|
+
trustedServers: string[];
|
|
3045
|
+
useIdentity: boolean;
|
|
3064
3046
|
}
|
|
3065
3047
|
|
|
3066
3048
|
export interface configRequestProxyRules {
|
|
3067
|
-
proxyUrl
|
|
3068
|
-
urlPrefix
|
|
3049
|
+
proxyUrl: string;
|
|
3050
|
+
urlPrefix: string;
|
|
3069
3051
|
}
|
|
3070
3052
|
|
|
3071
3053
|
export interface configWorkers {
|
|
@@ -3084,7 +3066,7 @@ declare namespace __esri {
|
|
|
3084
3066
|
|
|
3085
3067
|
export type ErrorCallback = (error: Error) => void;
|
|
3086
3068
|
|
|
3087
|
-
export type LogInterceptor = (level: "
|
|
3069
|
+
export type LogInterceptor = (level: "none" | "error" | "info" | "warn", module: string, ...args: any[]) => boolean;
|
|
3088
3070
|
|
|
3089
3071
|
/**
|
|
3090
3072
|
* Specifies the object used for intercepting and modifying requests made via {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html esriRequest}.
|
|
@@ -3152,18 +3134,18 @@ declare namespace __esri {
|
|
|
3152
3134
|
/**
|
|
3153
3135
|
* This convenience decorator is used to define an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Accessor.html Accessor} property.
|
|
3154
3136
|
*
|
|
3155
|
-
* @param
|
|
3156
|
-
* @param
|
|
3157
|
-
* @param
|
|
3158
|
-
* @param
|
|
3159
|
-
* @param
|
|
3160
|
-
* @param
|
|
3161
|
-
* @param
|
|
3162
|
-
* @param
|
|
3137
|
+
* @param metadata An object describing the property.
|
|
3138
|
+
* @param metadata.dependsOn Property names of dependencies.
|
|
3139
|
+
* @param metadata.type The constructor used to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property.
|
|
3140
|
+
* @param metadata.cast The function to use to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property. Alternative to define the `type`. The function is called with the value set by the user and should return the cast value.
|
|
3141
|
+
* @param metadata.readOnly Indicates whether the property is read-only.
|
|
3142
|
+
* @param metadata.constructOnly Indicates whether the property can be set during construction but is otherwise read-only.
|
|
3143
|
+
* @param metadata.aliasOf The property decorator that creates a two-way binding between the property it decorates and an inner property of one of its members.
|
|
3144
|
+
* @param metadata.value The default value for the property.
|
|
3163
3145
|
*
|
|
3164
3146
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#property Read more...}
|
|
3165
3147
|
*/
|
|
3166
|
-
property(
|
|
3148
|
+
property(metadata?: decoratorsPropertyMetadata): Function;
|
|
3167
3149
|
/**
|
|
3168
3150
|
* This decorator is used to define an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Accessor.html Accessor} subclass.
|
|
3169
3151
|
*
|
|
@@ -3176,10 +3158,12 @@ declare namespace __esri {
|
|
|
3176
3158
|
|
|
3177
3159
|
export const decorators: decorators;
|
|
3178
3160
|
|
|
3179
|
-
export
|
|
3161
|
+
export type Caster = (value: any) => any;
|
|
3162
|
+
|
|
3163
|
+
export interface decoratorsPropertyMetadata {
|
|
3180
3164
|
dependsOn?: string[];
|
|
3181
|
-
type?:
|
|
3182
|
-
cast?:
|
|
3165
|
+
type?: any;
|
|
3166
|
+
cast?: Caster;
|
|
3183
3167
|
readOnly?: boolean;
|
|
3184
3168
|
constructOnly?: boolean;
|
|
3185
3169
|
aliasOf?: string;
|
|
@@ -3536,9 +3520,25 @@ declare namespace __esri {
|
|
|
3536
3520
|
*
|
|
3537
3521
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-quantity.html Read more...}
|
|
3538
3522
|
*/
|
|
3539
|
-
|
|
3523
|
+
namespace quantity {
|
|
3524
|
+
export interface Length {
|
|
3525
|
+
value: number;
|
|
3526
|
+
unit: LengthUnit;
|
|
3527
|
+
type: "length";
|
|
3528
|
+
}
|
|
3540
3529
|
|
|
3541
|
-
|
|
3530
|
+
export interface Area {
|
|
3531
|
+
value: number;
|
|
3532
|
+
unit: AreaUnit;
|
|
3533
|
+
type: "area";
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
export interface Angle {
|
|
3537
|
+
value: number;
|
|
3538
|
+
unit: AngleUnit;
|
|
3539
|
+
type: "angle";
|
|
3540
|
+
}
|
|
3541
|
+
}
|
|
3542
3542
|
|
|
3543
3543
|
export interface Angle {
|
|
3544
3544
|
value: number;
|
|
@@ -4351,6 +4351,67 @@ declare namespace __esri {
|
|
|
4351
4351
|
signal?: AbortSignal;
|
|
4352
4352
|
}
|
|
4353
4353
|
|
|
4354
|
+
/**
|
|
4355
|
+
* A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html Element} classes
|
|
4356
|
+
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
4357
|
+
*
|
|
4358
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html Read more...}
|
|
4359
|
+
*/
|
|
4360
|
+
namespace elements {
|
|
4361
|
+
/**
|
|
4362
|
+
* Form element types.
|
|
4363
|
+
*
|
|
4364
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#Element Read more...}
|
|
4365
|
+
*/
|
|
4366
|
+
export type Element =
|
|
4367
|
+
| __esri.FieldElement
|
|
4368
|
+
| __esri.GroupElement
|
|
4369
|
+
| __esri.RelationshipElement
|
|
4370
|
+
| __esri.TextElement
|
|
4371
|
+
| __esri.AttachmentElement;
|
|
4372
|
+
|
|
4373
|
+
/**
|
|
4374
|
+
* `FieldElement` defines how a feature layer's field participates in the form.
|
|
4375
|
+
*
|
|
4376
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#FieldElement Read more...}
|
|
4377
|
+
*/
|
|
4378
|
+
export type FieldElement = __esri.FieldElement;
|
|
4379
|
+
export const FieldElement: typeof __esri.FieldElement;
|
|
4380
|
+
|
|
4381
|
+
/**
|
|
4382
|
+
* `GroupElement` defines a container that holds a set of form elements
|
|
4383
|
+
* that can be expanded, collapsed, or displayed together.
|
|
4384
|
+
*
|
|
4385
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#GroupElement Read more...}
|
|
4386
|
+
*/
|
|
4387
|
+
export type GroupElement = __esri.GroupElement;
|
|
4388
|
+
export const GroupElement: typeof __esri.GroupElement;
|
|
4389
|
+
|
|
4390
|
+
/**
|
|
4391
|
+
* `RelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm}.
|
|
4392
|
+
*
|
|
4393
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#RelationshipElement Read more...}
|
|
4394
|
+
*/
|
|
4395
|
+
export type RelationshipElement = __esri.RelationshipElement;
|
|
4396
|
+
export const RelationshipElement: typeof __esri.RelationshipElement;
|
|
4397
|
+
|
|
4398
|
+
/**
|
|
4399
|
+
* `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
|
|
4400
|
+
*
|
|
4401
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#TextElement Read more...}
|
|
4402
|
+
*/
|
|
4403
|
+
export type TextElement = __esri.TextElement;
|
|
4404
|
+
export const TextElement: typeof __esri.TextElement;
|
|
4405
|
+
|
|
4406
|
+
/**
|
|
4407
|
+
* `AttachmentElement` defines how one or more attachments can participate in the form.
|
|
4408
|
+
*
|
|
4409
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#AttachmentElement Read more...}
|
|
4410
|
+
*/
|
|
4411
|
+
export type AttachmentElement = __esri.AttachmentElement;
|
|
4412
|
+
export const AttachmentElement: typeof __esri.AttachmentElement;
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4354
4415
|
export class AttachmentElement extends Element {
|
|
4355
4416
|
/**
|
|
4356
4417
|
* An `AttachmentElement` defines how one or more attachments can participate in the form.
|
|
@@ -4801,6 +4862,111 @@ declare namespace __esri {
|
|
|
4801
4862
|
initialState?: "collapsed" | "expanded";
|
|
4802
4863
|
}
|
|
4803
4864
|
|
|
4865
|
+
/**
|
|
4866
|
+
* A convenience module for importing module:esri/form/elements/inputs/Input classes
|
|
4867
|
+
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
4868
|
+
*
|
|
4869
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html Read more...}
|
|
4870
|
+
*/
|
|
4871
|
+
namespace inputs {
|
|
4872
|
+
/**
|
|
4873
|
+
* Form element input types.
|
|
4874
|
+
*
|
|
4875
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#Input Read more...}
|
|
4876
|
+
*/
|
|
4877
|
+
export type Input =
|
|
4878
|
+
| __esri.BarcodeScannerInput
|
|
4879
|
+
| __esri.ComboBoxInput
|
|
4880
|
+
| __esri.DatePickerInput
|
|
4881
|
+
| __esri.DateTimeOffsetPickerInput
|
|
4882
|
+
| __esri.DateTimePickerInput
|
|
4883
|
+
| __esri.RadioButtonsInput
|
|
4884
|
+
| __esri.SwitchInput
|
|
4885
|
+
| __esri.TextAreaInput
|
|
4886
|
+
| __esri.TextBoxInput
|
|
4887
|
+
| __esri.TimePickerInput;
|
|
4888
|
+
|
|
4889
|
+
/**
|
|
4890
|
+
* The `BarcodeScannerInput` class defines the desired user interface is a barcode or QR code scanner.
|
|
4891
|
+
*
|
|
4892
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#BarcodeScannerInput Read more...}
|
|
4893
|
+
*/
|
|
4894
|
+
export type BarcodeScannerInput = __esri.BarcodeScannerInput;
|
|
4895
|
+
export const BarcodeScannerInput: typeof __esri.BarcodeScannerInput;
|
|
4896
|
+
|
|
4897
|
+
/**
|
|
4898
|
+
* The `ComboBoxInput` class defines the desired user interface for a combo box group.
|
|
4899
|
+
*
|
|
4900
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#ComboBoxInput Read more...}
|
|
4901
|
+
*/
|
|
4902
|
+
export type ComboBoxInput = __esri.ComboBoxInput;
|
|
4903
|
+
export const ComboBoxInput: typeof __esri.ComboBoxInput;
|
|
4904
|
+
|
|
4905
|
+
/**
|
|
4906
|
+
* The `DatePickerInput` class defines the desired user interface for working with date-only types.
|
|
4907
|
+
*
|
|
4908
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DatePickerInput Read more...}
|
|
4909
|
+
*/
|
|
4910
|
+
export type DatePickerInput = __esri.DatePickerInput;
|
|
4911
|
+
export const DatePickerInput: typeof __esri.DatePickerInput;
|
|
4912
|
+
|
|
4913
|
+
/**
|
|
4914
|
+
* The `DateTimeOffsetPickerInput` class defines the desired user interface for editing date and time fields in a form that also requires the option to include an offset from Coordinated Universal Time (UTC).
|
|
4915
|
+
*
|
|
4916
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DateTimeOffsetPickerInput Read more...}
|
|
4917
|
+
*/
|
|
4918
|
+
export type DateTimeOffsetPickerInput = __esri.DateTimeOffsetPickerInput;
|
|
4919
|
+
export const DateTimeOffsetPickerInput: typeof __esri.DateTimeOffsetPickerInput;
|
|
4920
|
+
|
|
4921
|
+
/**
|
|
4922
|
+
* The `DateTimePickerInput` class defines the desired user interface for editing date (including time) fields in a form.
|
|
4923
|
+
*
|
|
4924
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DateTimePickerInput Read more...}
|
|
4925
|
+
*/
|
|
4926
|
+
export type DateTimePickerInput = __esri.DateTimePickerInput;
|
|
4927
|
+
export const DateTimePickerInput: typeof __esri.DateTimePickerInput;
|
|
4928
|
+
|
|
4929
|
+
/**
|
|
4930
|
+
* The `RadioButtonsInput` class defines the desired user interface for a radio button group.
|
|
4931
|
+
*
|
|
4932
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#RadioButtonsInput Read more...}
|
|
4933
|
+
*/
|
|
4934
|
+
export type RadioButtonsInput = __esri.RadioButtonsInput;
|
|
4935
|
+
export const RadioButtonsInput: typeof __esri.RadioButtonsInput;
|
|
4936
|
+
|
|
4937
|
+
/**
|
|
4938
|
+
* The `SwitchInput` class defines the desired user interface for a binary switch or toggle.
|
|
4939
|
+
*
|
|
4940
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#SwitchInput Read more...}
|
|
4941
|
+
*/
|
|
4942
|
+
export type SwitchInput = __esri.SwitchInput;
|
|
4943
|
+
export const SwitchInput: typeof __esri.SwitchInput;
|
|
4944
|
+
|
|
4945
|
+
/**
|
|
4946
|
+
* `TextAreaInput` defines the desired user interface is a multi-line text area.
|
|
4947
|
+
*
|
|
4948
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TextAreaInput Read more...}
|
|
4949
|
+
*/
|
|
4950
|
+
export type TextAreaInput = __esri.TextAreaInput;
|
|
4951
|
+
export const TextAreaInput: typeof __esri.TextAreaInput;
|
|
4952
|
+
|
|
4953
|
+
/**
|
|
4954
|
+
* `TextBoxInput` defines the desired user interface is a single-line text box.
|
|
4955
|
+
*
|
|
4956
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TextBoxInput Read more...}
|
|
4957
|
+
*/
|
|
4958
|
+
export type TextBoxInput = __esri.TextBoxInput;
|
|
4959
|
+
export const TextBoxInput: typeof __esri.TextBoxInput;
|
|
4960
|
+
|
|
4961
|
+
/**
|
|
4962
|
+
* The `TimePickerInput` class defines the desired user interface for working with time-only types.
|
|
4963
|
+
*
|
|
4964
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TimePickerInput Read more...}
|
|
4965
|
+
*/
|
|
4966
|
+
export type TimePickerInput = __esri.TimePickerInput;
|
|
4967
|
+
export const TimePickerInput: typeof __esri.TimePickerInput;
|
|
4968
|
+
}
|
|
4969
|
+
|
|
4804
4970
|
export interface AttachmentInput extends Accessor, JSONSupport, Clonable {}
|
|
4805
4971
|
|
|
4806
4972
|
export class AttachmentInput {
|
|
@@ -5149,10 +5315,6 @@ declare namespace __esri {
|
|
|
5149
5315
|
inputMethod?: "any" | "capture" | "upload";
|
|
5150
5316
|
}
|
|
5151
5317
|
|
|
5152
|
-
interface inputs {}
|
|
5153
|
-
|
|
5154
|
-
export const inputs: inputs;
|
|
5155
|
-
|
|
5156
5318
|
export interface VideoInput extends Accessor, JSONSupport, Clonable {}
|
|
5157
5319
|
|
|
5158
5320
|
export class VideoInput {
|
|
@@ -6167,16 +6329,6 @@ declare namespace __esri {
|
|
|
6167
6329
|
relationshipId?: number;
|
|
6168
6330
|
}
|
|
6169
6331
|
|
|
6170
|
-
/**
|
|
6171
|
-
* A convenience module for importing module:esri/form/elements/inputs/Input classes
|
|
6172
|
-
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
6173
|
-
*
|
|
6174
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-support-inputs.html Read more...}
|
|
6175
|
-
*/
|
|
6176
|
-
interface supportInputs {}
|
|
6177
|
-
|
|
6178
|
-
export const supportInputs: supportInputs;
|
|
6179
|
-
|
|
6180
6332
|
export class TextElement extends Element {
|
|
6181
6333
|
/**
|
|
6182
6334
|
* A `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
|
|
@@ -6232,6 +6384,49 @@ declare namespace __esri {
|
|
|
6232
6384
|
textFormat?: "plain-text" | "markdown";
|
|
6233
6385
|
}
|
|
6234
6386
|
|
|
6387
|
+
/**
|
|
6388
|
+
* `AttachmentElement` defines how one or more attachments can participate in the form.
|
|
6389
|
+
*
|
|
6390
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#AttachmentElement Read more...}
|
|
6391
|
+
*/
|
|
6392
|
+
export type elementsAttachmentElement = AttachmentElement;
|
|
6393
|
+
|
|
6394
|
+
/**
|
|
6395
|
+
* Form element types.
|
|
6396
|
+
*
|
|
6397
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#Element Read more...}
|
|
6398
|
+
*/
|
|
6399
|
+
export type elementsElement = FieldElement | GroupElement | RelationshipElement | TextElement | AttachmentElement;
|
|
6400
|
+
|
|
6401
|
+
/**
|
|
6402
|
+
* `FieldElement` defines how a feature layer's field participates in the form.
|
|
6403
|
+
*
|
|
6404
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#FieldElement Read more...}
|
|
6405
|
+
*/
|
|
6406
|
+
export type elementsFieldElement = FieldElement;
|
|
6407
|
+
|
|
6408
|
+
/**
|
|
6409
|
+
* `GroupElement` defines a container that holds a set of form elements
|
|
6410
|
+
* that can be expanded, collapsed, or displayed together.
|
|
6411
|
+
*
|
|
6412
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#GroupElement Read more...}
|
|
6413
|
+
*/
|
|
6414
|
+
export type elementsGroupElement = GroupElement;
|
|
6415
|
+
|
|
6416
|
+
/**
|
|
6417
|
+
* `RelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm}.
|
|
6418
|
+
*
|
|
6419
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#RelationshipElement Read more...}
|
|
6420
|
+
*/
|
|
6421
|
+
export type elementsRelationshipElement = RelationshipElement;
|
|
6422
|
+
|
|
6423
|
+
/**
|
|
6424
|
+
* `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
|
|
6425
|
+
*
|
|
6426
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#TextElement Read more...}
|
|
6427
|
+
*/
|
|
6428
|
+
export type elementsTextElement = TextElement;
|
|
6429
|
+
|
|
6235
6430
|
export interface ExpressionInfo extends Accessor, JSONSupport {}
|
|
6236
6431
|
|
|
6237
6432
|
export class ExpressionInfo {
|
|
@@ -6439,16 +6634,6 @@ declare namespace __esri {
|
|
|
6439
6634
|
title?: string;
|
|
6440
6635
|
}
|
|
6441
6636
|
|
|
6442
|
-
/**
|
|
6443
|
-
* A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html Element} classes
|
|
6444
|
-
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
6445
|
-
*
|
|
6446
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-support-elements.html Read more...}
|
|
6447
|
-
*/
|
|
6448
|
-
interface elements {}
|
|
6449
|
-
|
|
6450
|
-
export const elements: elements;
|
|
6451
|
-
|
|
6452
6637
|
/**
|
|
6453
6638
|
* A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html Geometry} classes when developing with
|
|
6454
6639
|
* {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
@@ -6469,13 +6654,7 @@ declare namespace __esri {
|
|
|
6469
6654
|
*
|
|
6470
6655
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Geometry Read more...}
|
|
6471
6656
|
*/
|
|
6472
|
-
export type Geometry =
|
|
6473
|
-
| __esri.Extent
|
|
6474
|
-
| __esri.Multipoint
|
|
6475
|
-
| __esri.Point
|
|
6476
|
-
| __esri.Polygon
|
|
6477
|
-
| __esri.Polyline
|
|
6478
|
-
| __esri.Mesh;
|
|
6657
|
+
export type Geometry = __esri.Extent | __esri.Multipoint | __esri.Point | __esri.Polygon | __esri.Polyline;
|
|
6479
6658
|
|
|
6480
6659
|
/**
|
|
6481
6660
|
* Extent.
|
|
@@ -6516,14 +6695,6 @@ declare namespace __esri {
|
|
|
6516
6695
|
*/
|
|
6517
6696
|
export type Polyline = __esri.Polyline;
|
|
6518
6697
|
export const Polyline: typeof __esri.Polyline;
|
|
6519
|
-
|
|
6520
|
-
/**
|
|
6521
|
-
* Mesh.
|
|
6522
|
-
*
|
|
6523
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Mesh Read more...}
|
|
6524
|
-
*/
|
|
6525
|
-
export type Mesh = __esri.Mesh;
|
|
6526
|
-
export const Mesh: typeof __esri.Mesh;
|
|
6527
6698
|
}
|
|
6528
6699
|
|
|
6529
6700
|
export class Circle extends Polygon {
|
|
@@ -7106,7 +7277,7 @@ declare namespace __esri {
|
|
|
7106
7277
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#buffer Read more...}
|
|
7107
7278
|
*/
|
|
7108
7279
|
buffer(
|
|
7109
|
-
geometry:
|
|
7280
|
+
geometry: geometryGeometry | geometryGeometry[],
|
|
7110
7281
|
distance: number | number[],
|
|
7111
7282
|
unit?: LinearUnits,
|
|
7112
7283
|
unionResults?: boolean,
|
|
@@ -7121,7 +7292,7 @@ declare namespace __esri {
|
|
|
7121
7292
|
*
|
|
7122
7293
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#clip Read more...}
|
|
7123
7294
|
*/
|
|
7124
|
-
clip(geometry:
|
|
7295
|
+
clip(geometry: geometryGeometry, envelope: Extent): geometryGeometry;
|
|
7125
7296
|
/**
|
|
7126
7297
|
* Indicates if one geometry contains another geometry.
|
|
7127
7298
|
*
|
|
@@ -7132,7 +7303,7 @@ declare namespace __esri {
|
|
|
7132
7303
|
*
|
|
7133
7304
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#contains Read more...}
|
|
7134
7305
|
*/
|
|
7135
|
-
contains(containerGeometry:
|
|
7306
|
+
contains(containerGeometry: geometryGeometry, insideGeometry: geometryGeometry): boolean;
|
|
7136
7307
|
/**
|
|
7137
7308
|
* Calculates the convex hull of one or more geometries.
|
|
7138
7309
|
*
|
|
@@ -7143,7 +7314,7 @@ declare namespace __esri {
|
|
|
7143
7314
|
*
|
|
7144
7315
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#convexHull Read more...}
|
|
7145
7316
|
*/
|
|
7146
|
-
convexHull(geometry:
|
|
7317
|
+
convexHull(geometry: geometryGeometry | geometryGeometry[], merge?: boolean): geometryGeometry | geometryGeometry[];
|
|
7147
7318
|
/**
|
|
7148
7319
|
* Indicates if one geometry crosses another geometry.
|
|
7149
7320
|
*
|
|
@@ -7154,7 +7325,7 @@ declare namespace __esri {
|
|
|
7154
7325
|
*
|
|
7155
7326
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#crosses Read more...}
|
|
7156
7327
|
*/
|
|
7157
|
-
crosses(geometry1:
|
|
7328
|
+
crosses(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7158
7329
|
/**
|
|
7159
7330
|
* Splits the input Polyline or Polygon where it crosses a cutting Polyline.
|
|
7160
7331
|
*
|
|
@@ -7165,7 +7336,7 @@ declare namespace __esri {
|
|
|
7165
7336
|
*
|
|
7166
7337
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#cut Read more...}
|
|
7167
7338
|
*/
|
|
7168
|
-
cut(geometry:
|
|
7339
|
+
cut(geometry: geometryGeometry, cutter: Polyline): geometryGeometry[];
|
|
7169
7340
|
/**
|
|
7170
7341
|
* Densify geometries by plotting points between existing vertices.
|
|
7171
7342
|
*
|
|
@@ -7177,7 +7348,11 @@ declare namespace __esri {
|
|
|
7177
7348
|
*
|
|
7178
7349
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#densify Read more...}
|
|
7179
7350
|
*/
|
|
7180
|
-
densify(
|
|
7351
|
+
densify(
|
|
7352
|
+
geometry: geometryGeometry,
|
|
7353
|
+
maxSegmentLength: number,
|
|
7354
|
+
maxSegmentLengthUnit?: LinearUnits | number,
|
|
7355
|
+
): geometryGeometry;
|
|
7181
7356
|
/**
|
|
7182
7357
|
* Creates the difference of two geometries.
|
|
7183
7358
|
*
|
|
@@ -7188,7 +7363,10 @@ declare namespace __esri {
|
|
|
7188
7363
|
*
|
|
7189
7364
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#difference Read more...}
|
|
7190
7365
|
*/
|
|
7191
|
-
difference(
|
|
7366
|
+
difference(
|
|
7367
|
+
inputGeometry: geometryGeometry | geometryGeometry[],
|
|
7368
|
+
subtractor: geometryGeometry,
|
|
7369
|
+
): geometryGeometry | geometryGeometry[];
|
|
7192
7370
|
/**
|
|
7193
7371
|
* Indicates if one geometry is disjoint (doesn't intersect in any way) with another geometry.
|
|
7194
7372
|
*
|
|
@@ -7199,7 +7377,7 @@ declare namespace __esri {
|
|
|
7199
7377
|
*
|
|
7200
7378
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#disjoint Read more...}
|
|
7201
7379
|
*/
|
|
7202
|
-
disjoint(geometry1:
|
|
7380
|
+
disjoint(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7203
7381
|
/**
|
|
7204
7382
|
* Calculates the shortest planar distance between two geometries.
|
|
7205
7383
|
*
|
|
@@ -7211,7 +7389,7 @@ declare namespace __esri {
|
|
|
7211
7389
|
*
|
|
7212
7390
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#distance Read more...}
|
|
7213
7391
|
*/
|
|
7214
|
-
distance(geometry1:
|
|
7392
|
+
distance(geometry1: geometryGeometry, geometry2: geometryGeometry, distanceUnit?: LinearUnits): number;
|
|
7215
7393
|
/**
|
|
7216
7394
|
* Indicates if two geometries are equal.
|
|
7217
7395
|
*
|
|
@@ -7222,7 +7400,7 @@ declare namespace __esri {
|
|
|
7222
7400
|
*
|
|
7223
7401
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#equals Read more...}
|
|
7224
7402
|
*/
|
|
7225
|
-
equals(geometry1:
|
|
7403
|
+
equals(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7226
7404
|
/**
|
|
7227
7405
|
* Returns an object containing additional information about the input spatial reference.
|
|
7228
7406
|
*
|
|
@@ -7243,7 +7421,7 @@ declare namespace __esri {
|
|
|
7243
7421
|
*
|
|
7244
7422
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipHorizontal Read more...}
|
|
7245
7423
|
*/
|
|
7246
|
-
flipHorizontal(geometry:
|
|
7424
|
+
flipHorizontal(geometry: geometryGeometry, flipOrigin?: Point): geometryGeometry;
|
|
7247
7425
|
/**
|
|
7248
7426
|
* Flips a geometry on the vertical axis.
|
|
7249
7427
|
*
|
|
@@ -7254,7 +7432,7 @@ declare namespace __esri {
|
|
|
7254
7432
|
*
|
|
7255
7433
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipVertical Read more...}
|
|
7256
7434
|
*/
|
|
7257
|
-
flipVertical(geometry:
|
|
7435
|
+
flipVertical(geometry: geometryGeometry, flipOrigin?: Point): geometryGeometry;
|
|
7258
7436
|
/**
|
|
7259
7437
|
* Performs the generalize operation on the geometries in the cursor.
|
|
7260
7438
|
*
|
|
@@ -7268,11 +7446,11 @@ declare namespace __esri {
|
|
|
7268
7446
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#generalize Read more...}
|
|
7269
7447
|
*/
|
|
7270
7448
|
generalize(
|
|
7271
|
-
geometry:
|
|
7449
|
+
geometry: geometryGeometry,
|
|
7272
7450
|
maxDeviation: number,
|
|
7273
7451
|
removeDegenerateParts?: boolean,
|
|
7274
|
-
maxDeviationUnit?: LinearUnits,
|
|
7275
|
-
):
|
|
7452
|
+
maxDeviationUnit?: LinearUnits | number,
|
|
7453
|
+
): geometryGeometry;
|
|
7276
7454
|
/**
|
|
7277
7455
|
* Calculates the area of the input geometry.
|
|
7278
7456
|
*
|
|
@@ -7283,7 +7461,7 @@ declare namespace __esri {
|
|
|
7283
7461
|
*
|
|
7284
7462
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicArea Read more...}
|
|
7285
7463
|
*/
|
|
7286
|
-
geodesicArea(geometry: Polygon, unit?: AreaUnits): number;
|
|
7464
|
+
geodesicArea(geometry: Polygon, unit?: AreaUnits | number): number;
|
|
7287
7465
|
/**
|
|
7288
7466
|
* Creates geodesic buffer polygons at a specified distance around the input geometries.
|
|
7289
7467
|
*
|
|
@@ -7297,9 +7475,9 @@ declare namespace __esri {
|
|
|
7297
7475
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicBuffer Read more...}
|
|
7298
7476
|
*/
|
|
7299
7477
|
geodesicBuffer(
|
|
7300
|
-
geometry:
|
|
7478
|
+
geometry: geometryGeometry | geometryGeometry[],
|
|
7301
7479
|
distance: number | number[],
|
|
7302
|
-
unit?: LinearUnits,
|
|
7480
|
+
unit?: LinearUnits | number,
|
|
7303
7481
|
unionResults?: boolean,
|
|
7304
7482
|
): Polygon | Polygon[];
|
|
7305
7483
|
/**
|
|
@@ -7328,7 +7506,7 @@ declare namespace __esri {
|
|
|
7328
7506
|
*
|
|
7329
7507
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicLength Read more...}
|
|
7330
7508
|
*/
|
|
7331
|
-
geodesicLength(geometry:
|
|
7509
|
+
geodesicLength(geometry: geometryGeometry, unit?: LinearUnits | number): number;
|
|
7332
7510
|
/**
|
|
7333
7511
|
* Creates new geometries from the intersections between two geometries.
|
|
7334
7512
|
*
|
|
@@ -7339,7 +7517,10 @@ declare namespace __esri {
|
|
|
7339
7517
|
*
|
|
7340
7518
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersect Read more...}
|
|
7341
7519
|
*/
|
|
7342
|
-
intersect(
|
|
7520
|
+
intersect(
|
|
7521
|
+
geometry1: geometryGeometry | geometryGeometry[],
|
|
7522
|
+
geometry2: geometryGeometry,
|
|
7523
|
+
): geometryGeometry | geometryGeometry[];
|
|
7343
7524
|
/**
|
|
7344
7525
|
* Returns an array of points at the intersecting locations of two input polylines.
|
|
7345
7526
|
*
|
|
@@ -7361,7 +7542,7 @@ declare namespace __esri {
|
|
|
7361
7542
|
*
|
|
7362
7543
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersects Read more...}
|
|
7363
7544
|
*/
|
|
7364
|
-
intersects(geometry1:
|
|
7545
|
+
intersects(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7365
7546
|
/**
|
|
7366
7547
|
* Indicates if the given geometry is topologically simple.
|
|
7367
7548
|
*
|
|
@@ -7371,7 +7552,7 @@ declare namespace __esri {
|
|
|
7371
7552
|
*
|
|
7372
7553
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#isSimple Read more...}
|
|
7373
7554
|
*/
|
|
7374
|
-
isSimple(geometry:
|
|
7555
|
+
isSimple(geometry: geometryGeometry): boolean;
|
|
7375
7556
|
/**
|
|
7376
7557
|
* Finds the coordinate of the geometry that is closest to the specified point.
|
|
7377
7558
|
*
|
|
@@ -7382,7 +7563,7 @@ declare namespace __esri {
|
|
|
7382
7563
|
*
|
|
7383
7564
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestCoordinate Read more...}
|
|
7384
7565
|
*/
|
|
7385
|
-
nearestCoordinate(geometry:
|
|
7566
|
+
nearestCoordinate(geometry: geometryGeometry, inputPoint: Point): NearestPointResult;
|
|
7386
7567
|
/**
|
|
7387
7568
|
* Finds the vertex on the geometry nearest to the specified point.
|
|
7388
7569
|
*
|
|
@@ -7393,7 +7574,7 @@ declare namespace __esri {
|
|
|
7393
7574
|
*
|
|
7394
7575
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertex Read more...}
|
|
7395
7576
|
*/
|
|
7396
|
-
nearestVertex(geometry:
|
|
7577
|
+
nearestVertex(geometry: geometryGeometry, inputPoint: Point): NearestPointResult;
|
|
7397
7578
|
/**
|
|
7398
7579
|
* Finds all vertices in the given distance from the specified point, sorted from the closest to the furthest and
|
|
7399
7580
|
* returns them as an array of Objects.
|
|
@@ -7408,7 +7589,7 @@ declare namespace __esri {
|
|
|
7408
7589
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertices Read more...}
|
|
7409
7590
|
*/
|
|
7410
7591
|
nearestVertices(
|
|
7411
|
-
geometry:
|
|
7592
|
+
geometry: geometryGeometry,
|
|
7412
7593
|
inputPoint: Point,
|
|
7413
7594
|
searchRadius: number,
|
|
7414
7595
|
maxVertexCountToReturn: number,
|
|
@@ -7429,13 +7610,13 @@ declare namespace __esri {
|
|
|
7429
7610
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#offset Read more...}
|
|
7430
7611
|
*/
|
|
7431
7612
|
offset(
|
|
7432
|
-
geometry:
|
|
7613
|
+
geometry: geometryGeometry | geometryGeometry[],
|
|
7433
7614
|
offsetDistance: number,
|
|
7434
7615
|
offsetUnit?: LinearUnits,
|
|
7435
7616
|
joinType?: "round" | "bevel" | "miter" | "square",
|
|
7436
7617
|
bevelRatio?: number,
|
|
7437
7618
|
flattenError?: number,
|
|
7438
|
-
):
|
|
7619
|
+
): geometryGeometry | geometryGeometry[];
|
|
7439
7620
|
/**
|
|
7440
7621
|
* Indicates if one geometry overlaps another geometry.
|
|
7441
7622
|
*
|
|
@@ -7446,7 +7627,7 @@ declare namespace __esri {
|
|
|
7446
7627
|
*
|
|
7447
7628
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#overlaps Read more...}
|
|
7448
7629
|
*/
|
|
7449
|
-
overlaps(geometry1:
|
|
7630
|
+
overlaps(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7450
7631
|
/**
|
|
7451
7632
|
* Calculates the area of the input geometry.
|
|
7452
7633
|
*
|
|
@@ -7468,7 +7649,7 @@ declare namespace __esri {
|
|
|
7468
7649
|
*
|
|
7469
7650
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#planarLength Read more...}
|
|
7470
7651
|
*/
|
|
7471
|
-
planarLength(geometry:
|
|
7652
|
+
planarLength(geometry: geometryGeometry, unit?: LinearUnits | number): number;
|
|
7472
7653
|
/**
|
|
7473
7654
|
* Indicates if the given DE-9IM relation is true for the two geometries.
|
|
7474
7655
|
*
|
|
@@ -7480,7 +7661,7 @@ declare namespace __esri {
|
|
|
7480
7661
|
*
|
|
7481
7662
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#relate Read more...}
|
|
7482
7663
|
*/
|
|
7483
|
-
relate(geometry1:
|
|
7664
|
+
relate(geometry1: geometryGeometry, geometry2: geometryGeometry, relation: string): boolean;
|
|
7484
7665
|
/**
|
|
7485
7666
|
* Rotates a geometry counterclockwise by the specified number of degrees.
|
|
7486
7667
|
*
|
|
@@ -7492,7 +7673,7 @@ declare namespace __esri {
|
|
|
7492
7673
|
*
|
|
7493
7674
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#rotate Read more...}
|
|
7494
7675
|
*/
|
|
7495
|
-
rotate(geometry:
|
|
7676
|
+
rotate(geometry: geometryGeometry, angle: number, rotationOrigin?: Point): geometryGeometry;
|
|
7496
7677
|
/**
|
|
7497
7678
|
* Performs the simplify operation on the geometry, which alters the given geometries to make their definitions
|
|
7498
7679
|
* topologically legal with respect to their geometry type.
|
|
@@ -7503,7 +7684,7 @@ declare namespace __esri {
|
|
|
7503
7684
|
*
|
|
7504
7685
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#simplify Read more...}
|
|
7505
7686
|
*/
|
|
7506
|
-
simplify(geometry:
|
|
7687
|
+
simplify(geometry: geometryGeometry): geometryGeometry;
|
|
7507
7688
|
/**
|
|
7508
7689
|
* Creates the symmetric difference of two geometries.
|
|
7509
7690
|
*
|
|
@@ -7514,7 +7695,10 @@ declare namespace __esri {
|
|
|
7514
7695
|
*
|
|
7515
7696
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#symmetricDifference Read more...}
|
|
7516
7697
|
*/
|
|
7517
|
-
symmetricDifference(
|
|
7698
|
+
symmetricDifference(
|
|
7699
|
+
leftGeometry: geometryGeometry | geometryGeometry[],
|
|
7700
|
+
rightGeometry: geometryGeometry,
|
|
7701
|
+
): geometryGeometry | geometryGeometry[];
|
|
7518
7702
|
/**
|
|
7519
7703
|
* Indicates if one geometry touches another geometry.
|
|
7520
7704
|
*
|
|
@@ -7525,7 +7709,7 @@ declare namespace __esri {
|
|
|
7525
7709
|
*
|
|
7526
7710
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#touches Read more...}
|
|
7527
7711
|
*/
|
|
7528
|
-
touches(geometry1:
|
|
7712
|
+
touches(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
7529
7713
|
/**
|
|
7530
7714
|
* All inputs must be of the same type of geometries and share one spatial reference.
|
|
7531
7715
|
*
|
|
@@ -7535,7 +7719,7 @@ declare namespace __esri {
|
|
|
7535
7719
|
*
|
|
7536
7720
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#union Read more...}
|
|
7537
7721
|
*/
|
|
7538
|
-
union(geometries:
|
|
7722
|
+
union(geometries: geometryGeometry[]): geometryGeometry;
|
|
7539
7723
|
/**
|
|
7540
7724
|
* Indicates if one geometry is within another geometry.
|
|
7541
7725
|
*
|
|
@@ -7546,7 +7730,7 @@ declare namespace __esri {
|
|
|
7546
7730
|
*
|
|
7547
7731
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#within Read more...}
|
|
7548
7732
|
*/
|
|
7549
|
-
within(innerGeometry:
|
|
7733
|
+
within(innerGeometry: geometryGeometry, outerGeometry: geometryGeometry): boolean;
|
|
7550
7734
|
}
|
|
7551
7735
|
|
|
7552
7736
|
export const geometryEngine: geometryEngine;
|
|
@@ -7801,14 +7985,14 @@ declare namespace __esri {
|
|
|
7801
7985
|
/**
|
|
7802
7986
|
* Calculates the area of the input geometry.
|
|
7803
7987
|
*
|
|
7804
|
-
* @param geometry The input
|
|
7988
|
+
* @param geometry The input geometry.
|
|
7805
7989
|
* @param unit Measurement unit of the return value. Defaults to the units of the input geometries.
|
|
7806
7990
|
*
|
|
7807
7991
|
* @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticAreaOperator geodeticAreaOperator} instead.
|
|
7808
7992
|
*
|
|
7809
7993
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicArea Read more...}
|
|
7810
7994
|
*/
|
|
7811
|
-
geodesicArea(geometry:
|
|
7995
|
+
geodesicArea(geometry: Geometry, unit?: AreaUnits | number): Promise<number>;
|
|
7812
7996
|
/**
|
|
7813
7997
|
* Creates geodesic buffer polygons at a specified distance around the input geometries.
|
|
7814
7998
|
*
|
|
@@ -7830,7 +8014,7 @@ declare namespace __esri {
|
|
|
7830
8014
|
/**
|
|
7831
8015
|
* Returns a geodetically densified version of the input geometry.
|
|
7832
8016
|
*
|
|
7833
|
-
* @param geometry A
|
|
8017
|
+
* @param geometry A geometry to densify.
|
|
7834
8018
|
* @param maxSegmentLength The maximum segment length allowed (in meters if a `maxSegmentLengthUnit` is not provided). This must be a positive value.
|
|
7835
8019
|
* @param maxSegmentLengthUnit Measurement unit for `maxSegmentLength`. If not provided, the unit will default to `meters`.
|
|
7836
8020
|
*
|
|
@@ -7839,7 +8023,7 @@ declare namespace __esri {
|
|
|
7839
8023
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicDensify Read more...}
|
|
7840
8024
|
*/
|
|
7841
8025
|
geodesicDensify(
|
|
7842
|
-
geometry:
|
|
8026
|
+
geometry: geometryGeometry,
|
|
7843
8027
|
maxSegmentLength: number,
|
|
7844
8028
|
maxSegmentLengthUnit?: LinearUnits,
|
|
7845
8029
|
): Promise<Geometry>;
|
|
@@ -7933,11 +8117,11 @@ declare namespace __esri {
|
|
|
7933
8117
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#nearestVertices Read more...}
|
|
7934
8118
|
*/
|
|
7935
8119
|
nearestVertices(
|
|
7936
|
-
geometry:
|
|
8120
|
+
geometry: geometryGeometry,
|
|
7937
8121
|
inputPoint: Point,
|
|
7938
8122
|
searchRadius: number,
|
|
7939
8123
|
maxVertexCountToReturn: number,
|
|
7940
|
-
): Promise<NearestPointResult>;
|
|
8124
|
+
): Promise<NearestPointResult[]>;
|
|
7941
8125
|
/**
|
|
7942
8126
|
* The offset operation creates a geometry that is a constant planar distance from an input
|
|
7943
8127
|
* polyline or polygon.
|
|
@@ -7975,14 +8159,14 @@ declare namespace __esri {
|
|
|
7975
8159
|
/**
|
|
7976
8160
|
* Calculates the area of the input geometry.
|
|
7977
8161
|
*
|
|
7978
|
-
* @param geometry The input
|
|
8162
|
+
* @param geometry The input geometry.
|
|
7979
8163
|
* @param unit Measurement unit of the return value. Defaults to the units of the input geometries.
|
|
7980
8164
|
*
|
|
7981
8165
|
* @deprecated since 4.32. Use {@link module:esri/geometry/operators/areaOperator areaOperator} instead.
|
|
7982
8166
|
*
|
|
7983
8167
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#planarArea Read more...}
|
|
7984
8168
|
*/
|
|
7985
|
-
planarArea(geometry:
|
|
8169
|
+
planarArea(geometry: geometryGeometry, unit?: AreaUnits | number): Promise<number>;
|
|
7986
8170
|
/**
|
|
7987
8171
|
* Calculates the length of the input geometry.
|
|
7988
8172
|
*
|
|
@@ -8017,7 +8201,7 @@ declare namespace __esri {
|
|
|
8017
8201
|
*
|
|
8018
8202
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#rotate Read more...}
|
|
8019
8203
|
*/
|
|
8020
|
-
rotate(geometry:
|
|
8204
|
+
rotate(geometry: geometryGeometry, angle: number, rotationOrigin?: Point): Promise<geometryGeometry>;
|
|
8021
8205
|
/**
|
|
8022
8206
|
* Performs the simplify operation on the geometry, which alters the given geometries to make their definitions
|
|
8023
8207
|
* topologically legal with respect to their geometry type.
|
|
@@ -8719,7 +8903,7 @@ declare namespace __esri {
|
|
|
8719
8903
|
*
|
|
8720
8904
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#execute Read more...}
|
|
8721
8905
|
*/
|
|
8722
|
-
execute(geometry:
|
|
8906
|
+
execute(geometry: geometryGeometry, transformation: Transformation): geometryGeometry;
|
|
8723
8907
|
/**
|
|
8724
8908
|
* Executes an affine transformation on multiple geometries.
|
|
8725
8909
|
*
|
|
@@ -8728,7 +8912,7 @@ declare namespace __esri {
|
|
|
8728
8912
|
*
|
|
8729
8913
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#executeMany Read more...}
|
|
8730
8914
|
*/
|
|
8731
|
-
executeMany(geometries:
|
|
8915
|
+
executeMany(geometries: geometryGeometry[], transformation: Transformation): geometryGeometry[];
|
|
8732
8916
|
}
|
|
8733
8917
|
|
|
8734
8918
|
export const affineTransformOperator: affineTransformOperator;
|
|
@@ -8747,7 +8931,7 @@ declare namespace __esri {
|
|
|
8747
8931
|
*
|
|
8748
8932
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#execute Read more...}
|
|
8749
8933
|
*/
|
|
8750
|
-
execute(geometry:
|
|
8934
|
+
execute(geometry: geometryGeometry, alpha: number): ExecuteResult;
|
|
8751
8935
|
/**
|
|
8752
8936
|
* Calculates the alpha shape on a set of geometries with the option to aggregate the result.
|
|
8753
8937
|
*
|
|
@@ -8758,7 +8942,11 @@ declare namespace __esri {
|
|
|
8758
8942
|
*
|
|
8759
8943
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany Read more...}
|
|
8760
8944
|
*/
|
|
8761
|
-
executeMany(
|
|
8945
|
+
executeMany(
|
|
8946
|
+
geometries: geometryGeometry[],
|
|
8947
|
+
alpha: number,
|
|
8948
|
+
options?: alphaShapeOperatorExecuteManyOptions,
|
|
8949
|
+
): Polygon[];
|
|
8762
8950
|
}
|
|
8763
8951
|
|
|
8764
8952
|
export const alphaShapeOperator: alphaShapeOperator;
|
|
@@ -8792,7 +8980,7 @@ declare namespace __esri {
|
|
|
8792
8980
|
*
|
|
8793
8981
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-areaOperator.html#execute Read more...}
|
|
8794
8982
|
*/
|
|
8795
|
-
execute(geometry:
|
|
8983
|
+
execute(geometry: geometryGeometry, options?: areaOperatorExecuteOptions): number;
|
|
8796
8984
|
}
|
|
8797
8985
|
|
|
8798
8986
|
export const areaOperator: areaOperator;
|
|
@@ -8833,7 +9021,7 @@ declare namespace __esri {
|
|
|
8833
9021
|
*
|
|
8834
9022
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#execute Read more...}
|
|
8835
9023
|
*/
|
|
8836
|
-
execute(geometry:
|
|
9024
|
+
execute(geometry: geometryGeometry): geometryGeometry;
|
|
8837
9025
|
/**
|
|
8838
9026
|
* Calculates the boundaries on a set of geometries.
|
|
8839
9027
|
*
|
|
@@ -8841,7 +9029,7 @@ declare namespace __esri {
|
|
|
8841
9029
|
*
|
|
8842
9030
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#executeMany Read more...}
|
|
8843
9031
|
*/
|
|
8844
|
-
executeMany(geometries:
|
|
9032
|
+
executeMany(geometries: geometryGeometry[]): Geometry[];
|
|
8845
9033
|
}
|
|
8846
9034
|
|
|
8847
9035
|
export const boundaryOperator: boundaryOperator;
|
|
@@ -8862,7 +9050,7 @@ declare namespace __esri {
|
|
|
8862
9050
|
*
|
|
8863
9051
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#execute Read more...}
|
|
8864
9052
|
*/
|
|
8865
|
-
execute(geometry:
|
|
9053
|
+
execute(geometry: geometryGeometry, distance: number, options?: bufferOperatorExecuteOptions): geometryGeometry;
|
|
8866
9054
|
/**
|
|
8867
9055
|
* Creates a buffer around the input geometries.
|
|
8868
9056
|
*
|
|
@@ -8876,7 +9064,11 @@ declare namespace __esri {
|
|
|
8876
9064
|
*
|
|
8877
9065
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany Read more...}
|
|
8878
9066
|
*/
|
|
8879
|
-
executeMany(
|
|
9067
|
+
executeMany(
|
|
9068
|
+
geometries: geometryGeometry[],
|
|
9069
|
+
distances: number[],
|
|
9070
|
+
options?: bufferOperatorExecuteManyOptions,
|
|
9071
|
+
): geometryGeometry[];
|
|
8880
9072
|
}
|
|
8881
9073
|
|
|
8882
9074
|
export const bufferOperator: bufferOperator;
|
|
@@ -8905,7 +9097,7 @@ declare namespace __esri {
|
|
|
8905
9097
|
*
|
|
8906
9098
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-centroidOperator.html#execute Read more...}
|
|
8907
9099
|
*/
|
|
8908
|
-
execute(geometry:
|
|
9100
|
+
execute(geometry: geometryGeometry): Point;
|
|
8909
9101
|
}
|
|
8910
9102
|
|
|
8911
9103
|
export const centroidOperator: centroidOperator;
|
|
@@ -8924,7 +9116,7 @@ declare namespace __esri {
|
|
|
8924
9116
|
*
|
|
8925
9117
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-clipOperator.html#execute Read more...}
|
|
8926
9118
|
*/
|
|
8927
|
-
execute(geometry:
|
|
9119
|
+
execute(geometry: geometryGeometry, extent: Extent): geometryGeometry;
|
|
8928
9120
|
/**
|
|
8929
9121
|
* Perform the clip operation on the input geometries.
|
|
8930
9122
|
*
|
|
@@ -8933,7 +9125,7 @@ declare namespace __esri {
|
|
|
8933
9125
|
*
|
|
8934
9126
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-clipOperator.html#executeMany Read more...}
|
|
8935
9127
|
*/
|
|
8936
|
-
executeMany(geometries:
|
|
9128
|
+
executeMany(geometries: geometryGeometry[], extent: Extent): Geometry[];
|
|
8937
9129
|
}
|
|
8938
9130
|
|
|
8939
9131
|
export const clipOperator: clipOperator;
|
|
@@ -8951,7 +9143,7 @@ declare namespace __esri {
|
|
|
8951
9143
|
*
|
|
8952
9144
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#accelerateGeometry Read more...}
|
|
8953
9145
|
*/
|
|
8954
|
-
accelerateGeometry(geometry:
|
|
9146
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
8955
9147
|
/**
|
|
8956
9148
|
* Perform the contains operation on two geometries.
|
|
8957
9149
|
*
|
|
@@ -8960,7 +9152,7 @@ declare namespace __esri {
|
|
|
8960
9152
|
*
|
|
8961
9153
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#execute Read more...}
|
|
8962
9154
|
*/
|
|
8963
|
-
execute(geometry1:
|
|
9155
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
8964
9156
|
}
|
|
8965
9157
|
|
|
8966
9158
|
export const containsOperator: containsOperator;
|
|
@@ -8978,7 +9170,7 @@ declare namespace __esri {
|
|
|
8978
9170
|
*
|
|
8979
9171
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#execute Read more...}
|
|
8980
9172
|
*/
|
|
8981
|
-
execute(geometry:
|
|
9173
|
+
execute(geometry: geometryGeometry): geometryGeometry;
|
|
8982
9174
|
/**
|
|
8983
9175
|
* Calculates the convex hull.
|
|
8984
9176
|
*
|
|
@@ -8988,7 +9180,7 @@ declare namespace __esri {
|
|
|
8988
9180
|
*
|
|
8989
9181
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#executeMany Read more...}
|
|
8990
9182
|
*/
|
|
8991
|
-
executeMany(geometries:
|
|
9183
|
+
executeMany(geometries: geometryGeometry[], options?: convexHullOperatorExecuteManyOptions): Geometry[];
|
|
8992
9184
|
/**
|
|
8993
9185
|
* Checks if a geometry is convex.
|
|
8994
9186
|
*
|
|
@@ -8996,7 +9188,7 @@ declare namespace __esri {
|
|
|
8996
9188
|
*
|
|
8997
9189
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#isConvex Read more...}
|
|
8998
9190
|
*/
|
|
8999
|
-
isConvex(geometry:
|
|
9191
|
+
isConvex(geometry: geometryGeometry): boolean;
|
|
9000
9192
|
}
|
|
9001
9193
|
|
|
9002
9194
|
export const convexHullOperator: convexHullOperator;
|
|
@@ -9018,7 +9210,7 @@ declare namespace __esri {
|
|
|
9018
9210
|
*
|
|
9019
9211
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#accelerateGeometry Read more...}
|
|
9020
9212
|
*/
|
|
9021
|
-
accelerateGeometry(geometry:
|
|
9213
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
9022
9214
|
/**
|
|
9023
9215
|
* Perform the crosses operation on two geometries.
|
|
9024
9216
|
*
|
|
@@ -9027,7 +9219,7 @@ declare namespace __esri {
|
|
|
9027
9219
|
*
|
|
9028
9220
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#execute Read more...}
|
|
9029
9221
|
*/
|
|
9030
|
-
execute(geometry1:
|
|
9222
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
9031
9223
|
}
|
|
9032
9224
|
|
|
9033
9225
|
export const crossesOperator: crossesOperator;
|
|
@@ -9046,7 +9238,7 @@ declare namespace __esri {
|
|
|
9046
9238
|
*
|
|
9047
9239
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-cutOperator.html#execute Read more...}
|
|
9048
9240
|
*/
|
|
9049
|
-
execute(geometry:
|
|
9241
|
+
execute(geometry: geometryGeometry, polyline: Polyline): Geometry[];
|
|
9050
9242
|
}
|
|
9051
9243
|
|
|
9052
9244
|
export const cutOperator: cutOperator;
|
|
@@ -9069,7 +9261,11 @@ declare namespace __esri {
|
|
|
9069
9261
|
*
|
|
9070
9262
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute Read more...}
|
|
9071
9263
|
*/
|
|
9072
|
-
execute(
|
|
9264
|
+
execute(
|
|
9265
|
+
geometry: geometryGeometry,
|
|
9266
|
+
maxSegmentLength: number,
|
|
9267
|
+
options?: densifyOperatorExecuteOptions,
|
|
9268
|
+
): geometryGeometry;
|
|
9073
9269
|
/**
|
|
9074
9270
|
* Performs the Densify operation on the geometry set.
|
|
9075
9271
|
*
|
|
@@ -9083,10 +9279,10 @@ declare namespace __esri {
|
|
|
9083
9279
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#executeMany Read more...}
|
|
9084
9280
|
*/
|
|
9085
9281
|
executeMany(
|
|
9086
|
-
geometries:
|
|
9282
|
+
geometries: geometryGeometry[],
|
|
9087
9283
|
maxSegmentLength: number,
|
|
9088
9284
|
options?: densifyOperatorExecuteManyOptions,
|
|
9089
|
-
):
|
|
9285
|
+
): geometryGeometry[];
|
|
9090
9286
|
}
|
|
9091
9287
|
|
|
9092
9288
|
export const densifyOperator: densifyOperator;
|
|
@@ -9117,7 +9313,7 @@ declare namespace __esri {
|
|
|
9117
9313
|
*
|
|
9118
9314
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#execute Read more...}
|
|
9119
9315
|
*/
|
|
9120
|
-
execute(geometry:
|
|
9316
|
+
execute(geometry: geometryGeometry, subtractor: geometryGeometry): geometryGeometry;
|
|
9121
9317
|
/**
|
|
9122
9318
|
* Performs the Topological difference operation on the geometry set.
|
|
9123
9319
|
*
|
|
@@ -9126,7 +9322,7 @@ declare namespace __esri {
|
|
|
9126
9322
|
*
|
|
9127
9323
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#executeMany Read more...}
|
|
9128
9324
|
*/
|
|
9129
|
-
executeMany(geometries:
|
|
9325
|
+
executeMany(geometries: geometryGeometry[], subtractor: geometryGeometry): Geometry[];
|
|
9130
9326
|
}
|
|
9131
9327
|
|
|
9132
9328
|
export const differenceOperator: differenceOperator;
|
|
@@ -9144,7 +9340,7 @@ declare namespace __esri {
|
|
|
9144
9340
|
*
|
|
9145
9341
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#accelerateGeometry Read more...}
|
|
9146
9342
|
*/
|
|
9147
|
-
accelerateGeometry(geometry:
|
|
9343
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
9148
9344
|
/**
|
|
9149
9345
|
* Perform a disjoint operation on two geometries.
|
|
9150
9346
|
*
|
|
@@ -9153,7 +9349,7 @@ declare namespace __esri {
|
|
|
9153
9349
|
*
|
|
9154
9350
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#execute Read more...}
|
|
9155
9351
|
*/
|
|
9156
|
-
execute(geometry1:
|
|
9352
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
9157
9353
|
}
|
|
9158
9354
|
|
|
9159
9355
|
export const disjointOperator: disjointOperator;
|
|
@@ -9174,7 +9370,7 @@ declare namespace __esri {
|
|
|
9174
9370
|
*
|
|
9175
9371
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-distanceOperator.html#execute Read more...}
|
|
9176
9372
|
*/
|
|
9177
|
-
execute(geometry1:
|
|
9373
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry, options?: distanceOperatorExecuteOptions): number;
|
|
9178
9374
|
}
|
|
9179
9375
|
|
|
9180
9376
|
export const distanceOperator: distanceOperator;
|
|
@@ -9196,7 +9392,7 @@ declare namespace __esri {
|
|
|
9196
9392
|
*
|
|
9197
9393
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#accelerateGeometry Read more...}
|
|
9198
9394
|
*/
|
|
9199
|
-
accelerateGeometry(geometry:
|
|
9395
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
9200
9396
|
/**
|
|
9201
9397
|
* Perform the equals operation on two geometries.
|
|
9202
9398
|
*
|
|
@@ -9205,7 +9401,7 @@ declare namespace __esri {
|
|
|
9205
9401
|
*
|
|
9206
9402
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#execute Read more...}
|
|
9207
9403
|
*/
|
|
9208
|
-
execute(geometry1:
|
|
9404
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
9209
9405
|
}
|
|
9210
9406
|
|
|
9211
9407
|
export const equalsOperator: equalsOperator;
|
|
@@ -9260,7 +9456,11 @@ declare namespace __esri {
|
|
|
9260
9456
|
*
|
|
9261
9457
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#execute Read more...}
|
|
9262
9458
|
*/
|
|
9263
|
-
execute(
|
|
9459
|
+
execute(
|
|
9460
|
+
geometry: geometryGeometry,
|
|
9461
|
+
maxDeviation: number,
|
|
9462
|
+
options?: generalizeOperatorExecuteOptions,
|
|
9463
|
+
): geometryGeometry;
|
|
9264
9464
|
/**
|
|
9265
9465
|
* Performs the generalize operation on the input geometries.
|
|
9266
9466
|
*
|
|
@@ -9273,10 +9473,10 @@ declare namespace __esri {
|
|
|
9273
9473
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#executeMany Read more...}
|
|
9274
9474
|
*/
|
|
9275
9475
|
executeMany(
|
|
9276
|
-
geometries:
|
|
9476
|
+
geometries: geometryGeometry[],
|
|
9277
9477
|
maxDeviation: number,
|
|
9278
9478
|
options?: generalizeOperatorExecuteManyOptions,
|
|
9279
|
-
):
|
|
9479
|
+
): geometryGeometry[];
|
|
9280
9480
|
}
|
|
9281
9481
|
|
|
9282
9482
|
export const generalizeOperator: generalizeOperator;
|
|
@@ -9309,7 +9509,11 @@ declare namespace __esri {
|
|
|
9309
9509
|
*
|
|
9310
9510
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute Read more...}
|
|
9311
9511
|
*/
|
|
9312
|
-
execute(
|
|
9512
|
+
execute(
|
|
9513
|
+
geometry: geometryGeometry,
|
|
9514
|
+
distance: number,
|
|
9515
|
+
options?: geodesicBufferOperatorExecuteOptions,
|
|
9516
|
+
): geometryGeometry;
|
|
9313
9517
|
/**
|
|
9314
9518
|
* Creates a geodesic buffer around the input geometries.
|
|
9315
9519
|
*
|
|
@@ -9324,10 +9528,10 @@ declare namespace __esri {
|
|
|
9324
9528
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#executeMany Read more...}
|
|
9325
9529
|
*/
|
|
9326
9530
|
executeMany(
|
|
9327
|
-
geometries:
|
|
9531
|
+
geometries: geometryGeometry[],
|
|
9328
9532
|
distances: number[],
|
|
9329
9533
|
options?: geodesicBufferOperatorExecuteManyOptions,
|
|
9330
|
-
):
|
|
9534
|
+
): geometryGeometry[];
|
|
9331
9535
|
/**
|
|
9332
9536
|
* Indicates if all dependencies of this module have been loaded.
|
|
9333
9537
|
*
|
|
@@ -9345,14 +9549,14 @@ declare namespace __esri {
|
|
|
9345
9549
|
export const geodesicBufferOperator: geodesicBufferOperator;
|
|
9346
9550
|
|
|
9347
9551
|
export interface geodesicBufferOperatorExecuteManyOptions {
|
|
9348
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9552
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9349
9553
|
maxDeviation?: number;
|
|
9350
9554
|
union?: boolean;
|
|
9351
9555
|
unit?: LengthUnit;
|
|
9352
9556
|
}
|
|
9353
9557
|
|
|
9354
9558
|
export interface geodesicBufferOperatorExecuteOptions {
|
|
9355
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9559
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9356
9560
|
maxDeviation?: number;
|
|
9357
9561
|
unit?: LengthUnit;
|
|
9358
9562
|
}
|
|
@@ -9377,7 +9581,7 @@ declare namespace __esri {
|
|
|
9377
9581
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate Read more...}
|
|
9378
9582
|
*/
|
|
9379
9583
|
getNearestCoordinate(
|
|
9380
|
-
geometry:
|
|
9584
|
+
geometry: geometryGeometry,
|
|
9381
9585
|
point: Point,
|
|
9382
9586
|
options?: geodesicProximityOperatorGetNearestCoordinateOptions,
|
|
9383
9587
|
): ProximityResult;
|
|
@@ -9392,7 +9596,7 @@ declare namespace __esri {
|
|
|
9392
9596
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertex Read more...}
|
|
9393
9597
|
*/
|
|
9394
9598
|
getNearestVertex(
|
|
9395
|
-
geometry:
|
|
9599
|
+
geometry: geometryGeometry,
|
|
9396
9600
|
point: Point,
|
|
9397
9601
|
options?: geodesicProximityOperatorGetNearestVertexOptions,
|
|
9398
9602
|
): ProximityResult;
|
|
@@ -9409,7 +9613,7 @@ declare namespace __esri {
|
|
|
9409
9613
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices Read more...}
|
|
9410
9614
|
*/
|
|
9411
9615
|
getNearestVertices(
|
|
9412
|
-
geometry:
|
|
9616
|
+
geometry: geometryGeometry,
|
|
9413
9617
|
point: Point,
|
|
9414
9618
|
searchRadius: number,
|
|
9415
9619
|
maxVertexCountToReturn: number,
|
|
@@ -9475,7 +9679,7 @@ declare namespace __esri {
|
|
|
9475
9679
|
*
|
|
9476
9680
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#execute Read more...}
|
|
9477
9681
|
*/
|
|
9478
|
-
execute(geometry:
|
|
9682
|
+
execute(geometry: geometryGeometry, options?: geodeticAreaOperatorExecuteOptions): number;
|
|
9479
9683
|
/**
|
|
9480
9684
|
* Indicates if all dependencies of this module have been loaded.
|
|
9481
9685
|
*
|
|
@@ -9493,7 +9697,7 @@ declare namespace __esri {
|
|
|
9493
9697
|
export const geodeticAreaOperator: geodeticAreaOperator;
|
|
9494
9698
|
|
|
9495
9699
|
export interface geodeticAreaOperatorExecuteOptions {
|
|
9496
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9700
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9497
9701
|
unit?: AreaUnit;
|
|
9498
9702
|
}
|
|
9499
9703
|
|
|
@@ -9514,7 +9718,11 @@ declare namespace __esri {
|
|
|
9514
9718
|
*
|
|
9515
9719
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#execute Read more...}
|
|
9516
9720
|
*/
|
|
9517
|
-
execute(
|
|
9721
|
+
execute(
|
|
9722
|
+
geometry: geometryGeometry,
|
|
9723
|
+
maxSegmentLength: number,
|
|
9724
|
+
options?: geodeticDensifyOperatorExecuteOptions,
|
|
9725
|
+
): geometryGeometry;
|
|
9518
9726
|
/**
|
|
9519
9727
|
* Densifies the input geometries.
|
|
9520
9728
|
*
|
|
@@ -9527,7 +9735,7 @@ declare namespace __esri {
|
|
|
9527
9735
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#executeMany Read more...}
|
|
9528
9736
|
*/
|
|
9529
9737
|
executeMany(
|
|
9530
|
-
geometries:
|
|
9738
|
+
geometries: geometryGeometry[],
|
|
9531
9739
|
maxSegmentLength: number,
|
|
9532
9740
|
options?: geodeticDensifyOperatorExecuteManyOptions,
|
|
9533
9741
|
): Geometry[];
|
|
@@ -9548,12 +9756,12 @@ declare namespace __esri {
|
|
|
9548
9756
|
export const geodeticDensifyOperator: geodeticDensifyOperator;
|
|
9549
9757
|
|
|
9550
9758
|
export interface geodeticDensifyOperatorExecuteManyOptions {
|
|
9551
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9759
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9552
9760
|
unit?: LengthUnit;
|
|
9553
9761
|
}
|
|
9554
9762
|
|
|
9555
9763
|
export interface geodeticDensifyOperatorExecuteOptions {
|
|
9556
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9764
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9557
9765
|
unit?: LengthUnit;
|
|
9558
9766
|
}
|
|
9559
9767
|
|
|
@@ -9574,7 +9782,11 @@ declare namespace __esri {
|
|
|
9574
9782
|
*
|
|
9575
9783
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDistanceOperator.html#execute Read more...}
|
|
9576
9784
|
*/
|
|
9577
|
-
execute(
|
|
9785
|
+
execute(
|
|
9786
|
+
geometry1: geometryGeometry,
|
|
9787
|
+
geometry2: geometryGeometry,
|
|
9788
|
+
options?: geodeticDistanceOperatorExecuteOptions,
|
|
9789
|
+
): number;
|
|
9578
9790
|
/**
|
|
9579
9791
|
* Indicates if all dependencies of this module have been loaded.
|
|
9580
9792
|
*
|
|
@@ -9592,7 +9804,7 @@ declare namespace __esri {
|
|
|
9592
9804
|
export const geodeticDistanceOperator: geodeticDistanceOperator;
|
|
9593
9805
|
|
|
9594
9806
|
export interface geodeticDistanceOperatorExecuteOptions {
|
|
9595
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9807
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section";
|
|
9596
9808
|
unit?: LengthUnit;
|
|
9597
9809
|
}
|
|
9598
9810
|
|
|
@@ -9612,7 +9824,7 @@ declare namespace __esri {
|
|
|
9612
9824
|
*
|
|
9613
9825
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#execute Read more...}
|
|
9614
9826
|
*/
|
|
9615
|
-
execute(geometry:
|
|
9827
|
+
execute(geometry: geometryGeometry, options?: geodeticLengthOperatorExecuteOptions): number;
|
|
9616
9828
|
/**
|
|
9617
9829
|
* Indicates if all dependencies of this module have been loaded.
|
|
9618
9830
|
*
|
|
@@ -9630,7 +9842,7 @@ declare namespace __esri {
|
|
|
9630
9842
|
export const geodeticLengthOperator: geodeticLengthOperator;
|
|
9631
9843
|
|
|
9632
9844
|
export interface geodeticLengthOperatorExecuteOptions {
|
|
9633
|
-
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-
|
|
9845
|
+
curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
|
|
9634
9846
|
unit?: LengthUnit;
|
|
9635
9847
|
}
|
|
9636
9848
|
|
|
@@ -9657,12 +9869,12 @@ declare namespace __esri {
|
|
|
9657
9869
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany Read more...}
|
|
9658
9870
|
*/
|
|
9659
9871
|
executeMany(
|
|
9660
|
-
geometries:
|
|
9872
|
+
geometries: geometryGeometry[],
|
|
9661
9873
|
distances: number[],
|
|
9662
9874
|
joins: "round" | "miter" | "bevel",
|
|
9663
9875
|
caps: "round" | "butt" | "square",
|
|
9664
9876
|
options?: graphicBufferOperatorExecuteManyOptions,
|
|
9665
|
-
):
|
|
9877
|
+
): geometryGeometry[];
|
|
9666
9878
|
}
|
|
9667
9879
|
|
|
9668
9880
|
export const graphicBufferOperator: graphicBufferOperator;
|
|
@@ -9688,7 +9900,7 @@ declare namespace __esri {
|
|
|
9688
9900
|
*
|
|
9689
9901
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html#executeMany Read more...}
|
|
9690
9902
|
*/
|
|
9691
|
-
executeMany(geometries:
|
|
9903
|
+
executeMany(geometries: geometryGeometry[]): geometryGeometry[];
|
|
9692
9904
|
}
|
|
9693
9905
|
|
|
9694
9906
|
export const integrateOperator: integrateOperator;
|
|
@@ -9706,7 +9918,7 @@ declare namespace __esri {
|
|
|
9706
9918
|
*
|
|
9707
9919
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#accelerateGeometry Read more...}
|
|
9708
9920
|
*/
|
|
9709
|
-
accelerateGeometry(geometry:
|
|
9921
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
9710
9922
|
/**
|
|
9711
9923
|
* Performs the topological intersection operation on two geometries.
|
|
9712
9924
|
*
|
|
@@ -9715,7 +9927,7 @@ declare namespace __esri {
|
|
|
9715
9927
|
*
|
|
9716
9928
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#execute Read more...}
|
|
9717
9929
|
*/
|
|
9718
|
-
execute(geometry1:
|
|
9930
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): geometryGeometry;
|
|
9719
9931
|
/**
|
|
9720
9932
|
* Performs the topological intersection operation on the geometry set.
|
|
9721
9933
|
*
|
|
@@ -9724,7 +9936,7 @@ declare namespace __esri {
|
|
|
9724
9936
|
*
|
|
9725
9937
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#executeMany Read more...}
|
|
9726
9938
|
*/
|
|
9727
|
-
executeMany(geometries:
|
|
9939
|
+
executeMany(geometries: geometryGeometry[], intersector: geometryGeometry): geometryGeometry[];
|
|
9728
9940
|
}
|
|
9729
9941
|
|
|
9730
9942
|
export const intersectionOperator: intersectionOperator;
|
|
@@ -9742,7 +9954,7 @@ declare namespace __esri {
|
|
|
9742
9954
|
*
|
|
9743
9955
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#accelerateGeometry Read more...}
|
|
9744
9956
|
*/
|
|
9745
|
-
accelerateGeometry(geometry:
|
|
9957
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
9746
9958
|
/**
|
|
9747
9959
|
* Perform a intersects operation on two geometries.
|
|
9748
9960
|
*
|
|
@@ -9751,7 +9963,7 @@ declare namespace __esri {
|
|
|
9751
9963
|
*
|
|
9752
9964
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#execute Read more...}
|
|
9753
9965
|
*/
|
|
9754
|
-
execute(geometry1:
|
|
9966
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
9755
9967
|
}
|
|
9756
9968
|
|
|
9757
9969
|
export const intersectsOperator: intersectsOperator;
|
|
@@ -9774,9 +9986,9 @@ declare namespace __esri {
|
|
|
9774
9986
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html#execute Read more...}
|
|
9775
9987
|
*/
|
|
9776
9988
|
execute(
|
|
9777
|
-
geometry1:
|
|
9778
|
-
geometry2:
|
|
9779
|
-
distance:
|
|
9989
|
+
geometry1: geometryGeometry,
|
|
9990
|
+
geometry2: geometryGeometry,
|
|
9991
|
+
distance: number,
|
|
9780
9992
|
options?: isNearOperatorExecuteOptions,
|
|
9781
9993
|
): boolean;
|
|
9782
9994
|
}
|
|
@@ -9800,7 +10012,7 @@ declare namespace __esri {
|
|
|
9800
10012
|
*
|
|
9801
10013
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#execute Read more...}
|
|
9802
10014
|
*/
|
|
9803
|
-
execute(geometry:
|
|
10015
|
+
execute(geometry: geometryGeometry): Point;
|
|
9804
10016
|
/**
|
|
9805
10017
|
* Performs the label point operation on the geometry set.
|
|
9806
10018
|
*
|
|
@@ -9808,7 +10020,7 @@ declare namespace __esri {
|
|
|
9808
10020
|
*
|
|
9809
10021
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#executeMany Read more...}
|
|
9810
10022
|
*/
|
|
9811
|
-
executeMany(geometries:
|
|
10023
|
+
executeMany(geometries: geometryGeometry[]): Point[];
|
|
9812
10024
|
}
|
|
9813
10025
|
|
|
9814
10026
|
export const labelPointOperator: labelPointOperator;
|
|
@@ -9828,7 +10040,7 @@ declare namespace __esri {
|
|
|
9828
10040
|
*
|
|
9829
10041
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html#execute Read more...}
|
|
9830
10042
|
*/
|
|
9831
|
-
execute(geometry:
|
|
10043
|
+
execute(geometry: geometryGeometry, options?: lengthOperatorExecuteOptions): number;
|
|
9832
10044
|
}
|
|
9833
10045
|
|
|
9834
10046
|
export const lengthOperator: lengthOperator;
|
|
@@ -9850,7 +10062,7 @@ declare namespace __esri {
|
|
|
9850
10062
|
*
|
|
9851
10063
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html#executeMany Read more...}
|
|
9852
10064
|
*/
|
|
9853
|
-
executeMany(geometries:
|
|
10065
|
+
executeMany(geometries: geometryGeometry[]): Polygon[];
|
|
9854
10066
|
}
|
|
9855
10067
|
|
|
9856
10068
|
export const linesToPolygonsOperator: linesToPolygonsOperator;
|
|
@@ -9870,7 +10082,7 @@ declare namespace __esri {
|
|
|
9870
10082
|
*
|
|
9871
10083
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html#executeMany Read more...}
|
|
9872
10084
|
*/
|
|
9873
|
-
executeMany(geometries:
|
|
10085
|
+
executeMany(geometries: geometryGeometry[], startM: number, endM: number): geometryGeometry[];
|
|
9874
10086
|
}
|
|
9875
10087
|
|
|
9876
10088
|
export const locateBetweenOperator: locateBetweenOperator;
|
|
@@ -9888,7 +10100,7 @@ declare namespace __esri {
|
|
|
9888
10100
|
*
|
|
9889
10101
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#execute Read more...}
|
|
9890
10102
|
*/
|
|
9891
|
-
execute(geometry:
|
|
10103
|
+
execute(geometry: geometryGeometry): Polygon;
|
|
9892
10104
|
/**
|
|
9893
10105
|
* Performs the minimum bounding circle operation on the geometry set.
|
|
9894
10106
|
*
|
|
@@ -9898,7 +10110,7 @@ declare namespace __esri {
|
|
|
9898
10110
|
*
|
|
9899
10111
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany Read more...}
|
|
9900
10112
|
*/
|
|
9901
|
-
executeMany(geometries:
|
|
10113
|
+
executeMany(geometries: geometryGeometry[], options?: minimumBoundingCircleOperatorExecuteManyOptions): Polygon[];
|
|
9902
10114
|
}
|
|
9903
10115
|
|
|
9904
10116
|
export const minimumBoundingCircleOperator: minimumBoundingCircleOperator;
|
|
@@ -9922,7 +10134,10 @@ declare namespace __esri {
|
|
|
9922
10134
|
*
|
|
9923
10135
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany Read more...}
|
|
9924
10136
|
*/
|
|
9925
|
-
executeMany(
|
|
10137
|
+
executeMany(
|
|
10138
|
+
geometries: geometryGeometry[],
|
|
10139
|
+
options?: multiPartToSinglePartOperatorExecuteManyOptions,
|
|
10140
|
+
): geometryGeometry[];
|
|
9926
10141
|
}
|
|
9927
10142
|
|
|
9928
10143
|
export const multiPartToSinglePartOperator: multiPartToSinglePartOperator;
|
|
@@ -9950,7 +10165,7 @@ declare namespace __esri {
|
|
|
9950
10165
|
*
|
|
9951
10166
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute Read more...}
|
|
9952
10167
|
*/
|
|
9953
|
-
execute(geometry:
|
|
10168
|
+
execute(geometry: geometryGeometry, distance: number, options?: offsetOperatorExecuteOptions): geometryGeometry;
|
|
9954
10169
|
/**
|
|
9955
10170
|
* Creates offset versions of the input geometries.
|
|
9956
10171
|
*
|
|
@@ -9964,7 +10179,11 @@ declare namespace __esri {
|
|
|
9964
10179
|
*
|
|
9965
10180
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany Read more...}
|
|
9966
10181
|
*/
|
|
9967
|
-
executeMany(
|
|
10182
|
+
executeMany(
|
|
10183
|
+
geometries: geometryGeometry[],
|
|
10184
|
+
distance: number,
|
|
10185
|
+
options?: offsetOperatorExecuteManyOptions,
|
|
10186
|
+
): geometryGeometry[];
|
|
9968
10187
|
}
|
|
9969
10188
|
|
|
9970
10189
|
export const offsetOperator: offsetOperator;
|
|
@@ -9996,7 +10215,7 @@ declare namespace __esri {
|
|
|
9996
10215
|
*
|
|
9997
10216
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#accelerateGeometry Read more...}
|
|
9998
10217
|
*/
|
|
9999
|
-
accelerateGeometry(geometry:
|
|
10218
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
10000
10219
|
/**
|
|
10001
10220
|
* Perform the overlaps operation on two geometries.
|
|
10002
10221
|
*
|
|
@@ -10005,7 +10224,7 @@ declare namespace __esri {
|
|
|
10005
10224
|
*
|
|
10006
10225
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#execute Read more...}
|
|
10007
10226
|
*/
|
|
10008
|
-
execute(geometry1:
|
|
10227
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
10009
10228
|
}
|
|
10010
10229
|
|
|
10011
10230
|
export const overlapsOperator: overlapsOperator;
|
|
@@ -10029,7 +10248,7 @@ declare namespace __esri {
|
|
|
10029
10248
|
*
|
|
10030
10249
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany Read more...}
|
|
10031
10250
|
*/
|
|
10032
|
-
executeMany(geometries:
|
|
10251
|
+
executeMany(geometries: geometryGeometry[], options?: polygonOverlayOperatorExecuteManyOptions): geometryGeometry[];
|
|
10033
10252
|
}
|
|
10034
10253
|
|
|
10035
10254
|
export const polygonOverlayOperator: polygonOverlayOperator;
|
|
@@ -10132,7 +10351,7 @@ declare namespace __esri {
|
|
|
10132
10351
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate Read more...}
|
|
10133
10352
|
*/
|
|
10134
10353
|
getNearestCoordinate(
|
|
10135
|
-
geometry:
|
|
10354
|
+
geometry: geometryGeometry,
|
|
10136
10355
|
point: Point,
|
|
10137
10356
|
options?: proximityOperatorGetNearestCoordinateOptions,
|
|
10138
10357
|
): proximityOperatorProximityResult;
|
|
@@ -10147,7 +10366,7 @@ declare namespace __esri {
|
|
|
10147
10366
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertex Read more...}
|
|
10148
10367
|
*/
|
|
10149
10368
|
getNearestVertex(
|
|
10150
|
-
geometry:
|
|
10369
|
+
geometry: geometryGeometry,
|
|
10151
10370
|
point: Point,
|
|
10152
10371
|
options?: proximityOperatorGetNearestVertexOptions,
|
|
10153
10372
|
): proximityOperatorProximityResult;
|
|
@@ -10164,7 +10383,7 @@ declare namespace __esri {
|
|
|
10164
10383
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertices Read more...}
|
|
10165
10384
|
*/
|
|
10166
10385
|
getNearestVertices(
|
|
10167
|
-
geometry:
|
|
10386
|
+
geometry: geometryGeometry,
|
|
10168
10387
|
point: Point,
|
|
10169
10388
|
searchRadius: number,
|
|
10170
10389
|
maxVertexCountToReturn: number,
|
|
@@ -10214,11 +10433,11 @@ declare namespace __esri {
|
|
|
10214
10433
|
*
|
|
10215
10434
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html#accelerateGeometry Read more...}
|
|
10216
10435
|
*/
|
|
10217
|
-
accelerateGeometry(geometry:
|
|
10436
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
10218
10437
|
|
|
10219
|
-
execute(geometry1:
|
|
10438
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry, relation: string): boolean;
|
|
10220
10439
|
|
|
10221
|
-
isValidDE9IM(relation:
|
|
10440
|
+
isValidDE9IM(relation: string): void;
|
|
10222
10441
|
}
|
|
10223
10442
|
|
|
10224
10443
|
export const relateOperator: relateOperator;
|
|
@@ -10255,7 +10474,7 @@ declare namespace __esri {
|
|
|
10255
10474
|
*
|
|
10256
10475
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#execute Read more...}
|
|
10257
10476
|
*/
|
|
10258
|
-
execute(geometry:
|
|
10477
|
+
execute(geometry: geometryGeometry): geometryGeometry;
|
|
10259
10478
|
/**
|
|
10260
10479
|
* Performs the simplify operation on the geometry set.
|
|
10261
10480
|
*
|
|
@@ -10263,7 +10482,7 @@ declare namespace __esri {
|
|
|
10263
10482
|
*
|
|
10264
10483
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#executeMany Read more...}
|
|
10265
10484
|
*/
|
|
10266
|
-
executeMany(geometries:
|
|
10485
|
+
executeMany(geometries: geometryGeometry[]): Geometry[];
|
|
10267
10486
|
/**
|
|
10268
10487
|
* Indicates if the given geometry is topologically simple.
|
|
10269
10488
|
*
|
|
@@ -10271,7 +10490,7 @@ declare namespace __esri {
|
|
|
10271
10490
|
*
|
|
10272
10491
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#isSimple Read more...}
|
|
10273
10492
|
*/
|
|
10274
|
-
isSimple(geometry:
|
|
10493
|
+
isSimple(geometry: geometryGeometry): boolean;
|
|
10275
10494
|
}
|
|
10276
10495
|
|
|
10277
10496
|
export const simplifyOperator: simplifyOperator;
|
|
@@ -10406,7 +10625,7 @@ declare namespace __esri {
|
|
|
10406
10625
|
*
|
|
10407
10626
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#execute Read more...}
|
|
10408
10627
|
*/
|
|
10409
|
-
execute(leftGeometry:
|
|
10628
|
+
execute(leftGeometry: geometryGeometry, rightGeometry: geometryGeometry): geometryGeometry;
|
|
10410
10629
|
/**
|
|
10411
10630
|
* Performs the symmetric difference (XOR) operation on every geometry in `inputGeometries` with `rightGeometry`.
|
|
10412
10631
|
*
|
|
@@ -10415,7 +10634,7 @@ declare namespace __esri {
|
|
|
10415
10634
|
*
|
|
10416
10635
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#executeMany Read more...}
|
|
10417
10636
|
*/
|
|
10418
|
-
executeMany(inputGeometries:
|
|
10637
|
+
executeMany(inputGeometries: geometryGeometry[], rightGeometry: geometryGeometry): geometryGeometry[];
|
|
10419
10638
|
}
|
|
10420
10639
|
|
|
10421
10640
|
export const symmetricDifferenceOperator: symmetricDifferenceOperator;
|
|
@@ -10433,7 +10652,7 @@ declare namespace __esri {
|
|
|
10433
10652
|
*
|
|
10434
10653
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#accelerateGeometry Read more...}
|
|
10435
10654
|
*/
|
|
10436
|
-
accelerateGeometry(geometry:
|
|
10655
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
10437
10656
|
/**
|
|
10438
10657
|
* Perform a touches operation on two geometries.
|
|
10439
10658
|
*
|
|
@@ -10442,7 +10661,7 @@ declare namespace __esri {
|
|
|
10442
10661
|
*
|
|
10443
10662
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#execute Read more...}
|
|
10444
10663
|
*/
|
|
10445
|
-
execute(geometry1:
|
|
10664
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
|
|
10446
10665
|
}
|
|
10447
10666
|
|
|
10448
10667
|
export const touchesOperator: touchesOperator;
|
|
@@ -10461,7 +10680,7 @@ declare namespace __esri {
|
|
|
10461
10680
|
*
|
|
10462
10681
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-unionOperator.html#execute Read more...}
|
|
10463
10682
|
*/
|
|
10464
|
-
execute(geometry1:
|
|
10683
|
+
execute(geometry1: geometryGeometry, geometry2: geometryGeometry): geometryGeometry;
|
|
10465
10684
|
/**
|
|
10466
10685
|
* Perform a topological union operation on a geometry set.
|
|
10467
10686
|
*
|
|
@@ -10469,7 +10688,7 @@ declare namespace __esri {
|
|
|
10469
10688
|
*
|
|
10470
10689
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-unionOperator.html#executeMany Read more...}
|
|
10471
10690
|
*/
|
|
10472
|
-
executeMany(geometries:
|
|
10691
|
+
executeMany(geometries: geometryGeometry[]): geometryGeometry;
|
|
10473
10692
|
}
|
|
10474
10693
|
|
|
10475
10694
|
export const unionOperator: unionOperator;
|
|
@@ -10487,7 +10706,7 @@ declare namespace __esri {
|
|
|
10487
10706
|
*
|
|
10488
10707
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#accelerateGeometry Read more...}
|
|
10489
10708
|
*/
|
|
10490
|
-
accelerateGeometry(geometry:
|
|
10709
|
+
accelerateGeometry(geometry: geometryGeometry): boolean;
|
|
10491
10710
|
/**
|
|
10492
10711
|
* Perform a within operation on two geometries.
|
|
10493
10712
|
*
|
|
@@ -10496,7 +10715,7 @@ declare namespace __esri {
|
|
|
10496
10715
|
*
|
|
10497
10716
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#execute Read more...}
|
|
10498
10717
|
*/
|
|
10499
|
-
execute(inner:
|
|
10718
|
+
execute(inner: geometryGeometry, outer: geometryGeometry): boolean;
|
|
10500
10719
|
}
|
|
10501
10720
|
|
|
10502
10721
|
export const withinOperator: withinOperator;
|
|
@@ -12258,14 +12477,7 @@ declare namespace __esri {
|
|
|
12258
12477
|
*
|
|
12259
12478
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Geometry Read more...}
|
|
12260
12479
|
*/
|
|
12261
|
-
export type geometryGeometry = Extent | Multipoint | Point | Polygon | Polyline
|
|
12262
|
-
|
|
12263
|
-
/**
|
|
12264
|
-
* Mesh.
|
|
12265
|
-
*
|
|
12266
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Mesh Read more...}
|
|
12267
|
-
*/
|
|
12268
|
-
export type geometryMesh = Mesh;
|
|
12480
|
+
export type geometryGeometry = Extent | Multipoint | Point | Polygon | Polyline;
|
|
12269
12481
|
|
|
12270
12482
|
/**
|
|
12271
12483
|
* Multipoint.
|
|
@@ -16315,6 +16527,20 @@ declare namespace __esri {
|
|
|
16315
16527
|
attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
|
|
16316
16528
|
options?: FeatureLayerBaseQueryAttachmentsOptions,
|
|
16317
16529
|
): Promise<any>;
|
|
16530
|
+
/**
|
|
16531
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
16532
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
16533
|
+
*
|
|
16534
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
16535
|
+
* @param options An object with the following properties.
|
|
16536
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
16537
|
+
*
|
|
16538
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#queryAttributeBins Read more...}
|
|
16539
|
+
*/
|
|
16540
|
+
queryAttributeBins(
|
|
16541
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
16542
|
+
options?: FeatureLayerBaseQueryAttributeBinsOptions,
|
|
16543
|
+
): Promise<FeatureSet>;
|
|
16318
16544
|
/**
|
|
16319
16545
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
16320
16546
|
*
|
|
@@ -17041,6 +17267,20 @@ declare namespace __esri {
|
|
|
17041
17267
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#getFieldDomain Read more...}
|
|
17042
17268
|
*/
|
|
17043
17269
|
getFieldDomain(fieldName: string, options?: CSVLayerGetFieldDomainOptions): Domain;
|
|
17270
|
+
/**
|
|
17271
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
17272
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
17273
|
+
*
|
|
17274
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
17275
|
+
* @param options An object with the following properties.
|
|
17276
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
17277
|
+
*
|
|
17278
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#queryAttributeBins Read more...}
|
|
17279
|
+
*/
|
|
17280
|
+
queryAttributeBins(
|
|
17281
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
17282
|
+
options?: CSVLayerQueryAttributeBinsOptions,
|
|
17283
|
+
): Promise<FeatureSet>;
|
|
17044
17284
|
/**
|
|
17045
17285
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the CSV data and
|
|
17046
17286
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -17415,6 +17655,10 @@ declare namespace __esri {
|
|
|
17415
17655
|
feature: Graphic;
|
|
17416
17656
|
}
|
|
17417
17657
|
|
|
17658
|
+
export interface CSVLayerQueryAttributeBinsOptions {
|
|
17659
|
+
signal?: AbortSignal;
|
|
17660
|
+
}
|
|
17661
|
+
|
|
17418
17662
|
export interface CSVLayerQueryExtentOptions {
|
|
17419
17663
|
signal?: AbortSignal;
|
|
17420
17664
|
}
|
|
@@ -18370,6 +18614,20 @@ declare namespace __esri {
|
|
|
18370
18614
|
attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
|
|
18371
18615
|
options?: FeatureLayerBaseQueryAttachmentsOptions,
|
|
18372
18616
|
): Promise<any>;
|
|
18617
|
+
/**
|
|
18618
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
18619
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
18620
|
+
*
|
|
18621
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
18622
|
+
* @param options An object with the following properties.
|
|
18623
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
18624
|
+
*
|
|
18625
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryAttributeBins Read more...}
|
|
18626
|
+
*/
|
|
18627
|
+
queryAttributeBins(
|
|
18628
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
18629
|
+
options?: FeatureLayerBaseQueryAttributeBinsOptions,
|
|
18630
|
+
): Promise<FeatureSet>;
|
|
18373
18631
|
/**
|
|
18374
18632
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and
|
|
18375
18633
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -19522,6 +19780,20 @@ declare namespace __esri {
|
|
|
19522
19780
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#getFieldDomain Read more...}
|
|
19523
19781
|
*/
|
|
19524
19782
|
getFieldDomain(fieldName: string, options?: GeoJSONLayerGetFieldDomainOptions): Domain;
|
|
19783
|
+
/**
|
|
19784
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
19785
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
19786
|
+
*
|
|
19787
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
19788
|
+
* @param options An object with the following properties.
|
|
19789
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
19790
|
+
*
|
|
19791
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#queryAttributeBins Read more...}
|
|
19792
|
+
*/
|
|
19793
|
+
queryAttributeBins(
|
|
19794
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
19795
|
+
options?: GeoJSONLayerQueryAttributeBinsOptions,
|
|
19796
|
+
): Promise<FeatureSet>;
|
|
19525
19797
|
/**
|
|
19526
19798
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the layer and
|
|
19527
19799
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -19907,6 +20179,10 @@ declare namespace __esri {
|
|
|
19907
20179
|
feature: Graphic;
|
|
19908
20180
|
}
|
|
19909
20181
|
|
|
20182
|
+
export interface GeoJSONLayerQueryAttributeBinsOptions {
|
|
20183
|
+
signal?: AbortSignal;
|
|
20184
|
+
}
|
|
20185
|
+
|
|
19910
20186
|
export interface GeoJSONLayerQueryExtentOptions {
|
|
19911
20187
|
signal?: AbortSignal;
|
|
19912
20188
|
}
|
|
@@ -25919,6 +26195,20 @@ declare namespace __esri {
|
|
|
25919
26195
|
attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
|
|
25920
26196
|
options?: FeatureLayerBaseQueryAttachmentsOptions,
|
|
25921
26197
|
): Promise<any>;
|
|
26198
|
+
/**
|
|
26199
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
26200
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
26201
|
+
*
|
|
26202
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
26203
|
+
* @param options An object with the following properties.
|
|
26204
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
26205
|
+
*
|
|
26206
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#queryAttributeBins Read more...}
|
|
26207
|
+
*/
|
|
26208
|
+
queryAttributeBins(
|
|
26209
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
26210
|
+
options?: FeatureLayerBaseQueryAttributeBinsOptions,
|
|
26211
|
+
): Promise<FeatureSet>;
|
|
25922
26212
|
/**
|
|
25923
26213
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RelationshipQuery.html RelationshipQuery} against the feature service and
|
|
25924
26214
|
* returns {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSets} grouped by source layer or table objectIds.
|
|
@@ -26045,6 +26335,10 @@ declare namespace __esri {
|
|
|
26045
26335
|
signal?: AbortSignal;
|
|
26046
26336
|
}
|
|
26047
26337
|
|
|
26338
|
+
export interface FeatureLayerBaseQueryAttributeBinsOptions {
|
|
26339
|
+
signal?: AbortSignal;
|
|
26340
|
+
}
|
|
26341
|
+
|
|
26048
26342
|
export interface FeatureLayerBaseQueryRelatedFeaturesCountOptions {
|
|
26049
26343
|
signal?: AbortSignal;
|
|
26050
26344
|
}
|
|
@@ -30779,6 +31073,20 @@ declare namespace __esri {
|
|
|
30779
31073
|
attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
|
|
30780
31074
|
options?: FeatureLayerBaseQueryAttachmentsOptions,
|
|
30781
31075
|
): Promise<any>;
|
|
31076
|
+
/**
|
|
31077
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
31078
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
31079
|
+
*
|
|
31080
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
31081
|
+
* @param options An object with the following properties.
|
|
31082
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
31083
|
+
*
|
|
31084
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#queryAttributeBins Read more...}
|
|
31085
|
+
*/
|
|
31086
|
+
queryAttributeBins(
|
|
31087
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
31088
|
+
options?: FeatureLayerBaseQueryAttributeBinsOptions,
|
|
31089
|
+
): Promise<FeatureSet>;
|
|
30782
31090
|
/**
|
|
30783
31091
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and
|
|
30784
31092
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -45211,6 +45519,20 @@ declare namespace __esri {
|
|
|
45211
45519
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#getFieldDomain Read more...}
|
|
45212
45520
|
*/
|
|
45213
45521
|
getFieldDomain(fieldName: string, options?: WFSLayerGetFieldDomainOptions): Domain;
|
|
45522
|
+
/**
|
|
45523
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
45524
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
45525
|
+
*
|
|
45526
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
45527
|
+
* @param options An object with the following properties.
|
|
45528
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
45529
|
+
*
|
|
45530
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#queryAttributeBins Read more...}
|
|
45531
|
+
*/
|
|
45532
|
+
queryAttributeBins(
|
|
45533
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
45534
|
+
options?: WFSLayerQueryAttributeBinsOptions,
|
|
45535
|
+
): Promise<FeatureSet>;
|
|
45214
45536
|
/**
|
|
45215
45537
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the layer and
|
|
45216
45538
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -45596,6 +45918,10 @@ declare namespace __esri {
|
|
|
45596
45918
|
feature: Graphic;
|
|
45597
45919
|
}
|
|
45598
45920
|
|
|
45921
|
+
export interface WFSLayerQueryAttributeBinsOptions {
|
|
45922
|
+
signal?: AbortSignal;
|
|
45923
|
+
}
|
|
45924
|
+
|
|
45599
45925
|
export interface WFSLayerQueryExtentOptions {
|
|
45600
45926
|
signal?: AbortSignal;
|
|
45601
45927
|
}
|
|
@@ -58922,7 +59248,7 @@ declare namespace __esri {
|
|
|
58922
59248
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html#RequestResponse Read more...}
|
|
58923
59249
|
*/
|
|
58924
59250
|
export interface RequestResponse {
|
|
58925
|
-
data
|
|
59251
|
+
data: any;
|
|
58926
59252
|
getHeader?: GetHeader;
|
|
58927
59253
|
getAllHeaders?: GetAllHeaders;
|
|
58928
59254
|
httpStatus?: number;
|
|
@@ -64419,23 +64745,442 @@ declare namespace __esri {
|
|
|
64419
64745
|
where?: string;
|
|
64420
64746
|
}
|
|
64421
64747
|
|
|
64422
|
-
export
|
|
64423
|
-
|
|
64424
|
-
|
|
64748
|
+
export interface AttributeBinsQuery extends Accessor, JSONSupport, QueryMixin {}
|
|
64749
|
+
|
|
64750
|
+
export class AttributeBinsQuery {
|
|
64751
|
+
/**
|
|
64752
|
+
* This class configures parameters for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryAttributeBins queryAttributeBins()} method, which groups features in a layer or layer view into bins
|
|
64753
|
+
* based on numeric or date fields.
|
|
64754
|
+
*
|
|
64755
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html Read more...}
|
|
64756
|
+
*/
|
|
64757
|
+
|
|
64758
|
+
constructor(properties?: AttributeBinsQueryProperties);
|
|
64759
|
+
|
|
64760
|
+
/**
|
|
64761
|
+
* Bins can be returned in ascending or descending order.
|
|
64762
|
+
*
|
|
64763
|
+
* @default "ascending"
|
|
64764
|
+
*
|
|
64765
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binOrder Read more...}
|
|
64766
|
+
*/
|
|
64767
|
+
binOrder: "ascending" | "descending";
|
|
64768
|
+
/**
|
|
64769
|
+
* Bin parameters describe the characteristics of the bins, including their size and starting value.
|
|
64770
|
+
*
|
|
64771
|
+
* @default null
|
|
64772
|
+
*
|
|
64773
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters Read more...}
|
|
64774
|
+
*/
|
|
64775
|
+
binParameters:
|
|
64776
|
+
| AutoIntervalBinParameters
|
|
64777
|
+
| FixedIntervalBinParameters
|
|
64778
|
+
| FixedBoundariesBinParameters
|
|
64779
|
+
| DateBinParameters;
|
|
64780
|
+
/**
|
|
64781
|
+
* Indicates if the service should cache the query results.
|
|
64782
|
+
*
|
|
64783
|
+
* @default undefined
|
|
64784
|
+
*
|
|
64785
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#cacheHint Read more...}
|
|
64786
|
+
*/
|
|
64787
|
+
declare cacheHint: QueryMixin["cacheHint"];
|
|
64788
|
+
/**
|
|
64789
|
+
* Datum transformation used for projecting geometries in the query results when
|
|
64790
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference outSpatialReference} is different than the layer's spatial reference.
|
|
64791
|
+
*
|
|
64792
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#datumTransformation Read more...}
|
|
64793
|
+
*/
|
|
64794
|
+
datumTransformation: number | QuerySimpleTransformation | QueryCompositeTransformation;
|
|
64795
|
+
/**
|
|
64796
|
+
* Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry} in a spatial query.
|
|
64797
|
+
*
|
|
64798
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance Read more...}
|
|
64799
|
+
*/
|
|
64800
|
+
declare distance: QueryMixin["distance"];
|
|
64801
|
+
/**
|
|
64802
|
+
* The geometry to apply to the spatial filter.
|
|
64803
|
+
*
|
|
64804
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry Read more...}
|
|
64805
|
+
*/
|
|
64806
|
+
declare geometry: QueryMixin["geometry"];
|
|
64807
|
+
/**
|
|
64808
|
+
* Sets the name of the lower boundary property in the response.
|
|
64809
|
+
*
|
|
64810
|
+
* @default null
|
|
64811
|
+
*
|
|
64812
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#lowerBoundaryAlias Read more...}
|
|
64813
|
+
*/
|
|
64814
|
+
lowerBoundaryAlias: string;
|
|
64815
|
+
/**
|
|
64816
|
+
* The spatial reference for the returned geometry.
|
|
64817
|
+
*
|
|
64818
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference Read more...}
|
|
64819
|
+
*/
|
|
64820
|
+
declare outSpatialReference: QueryMixin["outSpatialReference"];
|
|
64821
|
+
/**
|
|
64822
|
+
* The definitions for one or more field-based statistics to be calculated.
|
|
64823
|
+
*
|
|
64824
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outStatistics Read more...}
|
|
64825
|
+
*/
|
|
64826
|
+
outStatistics: StatisticDefinition[];
|
|
64827
|
+
/**
|
|
64828
|
+
* Defines the [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) used for bin calculations when the bin parameter field is a date field.
|
|
64829
|
+
*
|
|
64830
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outTimeZone Read more...}
|
|
64831
|
+
*/
|
|
64832
|
+
outTimeZone: string;
|
|
64833
|
+
/**
|
|
64834
|
+
* If `true` then the query returns distinct values based on the field(s) specified in {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outFields outFields}.
|
|
64835
|
+
*
|
|
64836
|
+
* @default false
|
|
64837
|
+
*
|
|
64838
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#returnDistinctValues Read more...}
|
|
64839
|
+
*/
|
|
64840
|
+
returnDistinctValues: boolean;
|
|
64841
|
+
/**
|
|
64842
|
+
* For spatial queries, this parameter defines the spatial relationship to query features in the layer or layer view against the input {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry}.
|
|
64843
|
+
*
|
|
64844
|
+
* @default intersects
|
|
64845
|
+
*
|
|
64846
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#spatialRelationship Read more...}
|
|
64847
|
+
*/
|
|
64848
|
+
declare spatialRelationship: QueryMixin["spatialRelationship"];
|
|
64849
|
+
/**
|
|
64850
|
+
* The unit for calculating the buffer distance when {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance distance} is specified in spatial queries.
|
|
64851
|
+
*
|
|
64852
|
+
* @default null
|
|
64853
|
+
*
|
|
64854
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#units Read more...}
|
|
64855
|
+
*/
|
|
64856
|
+
declare units: QueryMixin["units"];
|
|
64857
|
+
/**
|
|
64858
|
+
* Sets the name of the upper boundary property in the response.
|
|
64859
|
+
*
|
|
64860
|
+
* @default null
|
|
64861
|
+
*
|
|
64862
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#upperBoundaryAlias Read more...}
|
|
64863
|
+
*/
|
|
64864
|
+
upperBoundaryAlias: string;
|
|
64865
|
+
/**
|
|
64866
|
+
* A where clause for the query.
|
|
64867
|
+
*
|
|
64868
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#where Read more...}
|
|
64869
|
+
*/
|
|
64870
|
+
declare where: QueryMixin["where"];
|
|
64871
|
+
|
|
64872
|
+
/**
|
|
64873
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
64874
|
+
*
|
|
64875
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#toJSON Read more...}
|
|
64876
|
+
*/
|
|
64877
|
+
toJSON(): any;
|
|
64878
|
+
|
|
64879
|
+
/**
|
|
64880
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
64881
|
+
* generated from an ArcGIS product.
|
|
64882
|
+
*
|
|
64883
|
+
* @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.
|
|
64884
|
+
*
|
|
64885
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#fromJSON Read more...}
|
|
64886
|
+
*/
|
|
64887
|
+
static fromJSON(json: any): any;
|
|
64888
|
+
static fromJSON(json: any): AttributeBinsQuery;
|
|
64425
64889
|
}
|
|
64426
64890
|
|
|
64427
|
-
interface
|
|
64428
|
-
|
|
64429
|
-
|
|
64891
|
+
interface AttributeBinsQueryProperties extends QueryMixinProperties {
|
|
64892
|
+
/**
|
|
64893
|
+
* Bins can be returned in ascending or descending order.
|
|
64894
|
+
*
|
|
64895
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binOrder Read more...}
|
|
64896
|
+
*/
|
|
64897
|
+
binOrder?: "ascending" | "descending";
|
|
64898
|
+
/**
|
|
64899
|
+
* Bin parameters describe the characteristics of the bins, including their size and starting value.
|
|
64900
|
+
*
|
|
64901
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters Read more...}
|
|
64902
|
+
*/
|
|
64903
|
+
binParameters?:
|
|
64904
|
+
| (AutoIntervalBinParametersProperties & { type: "auto-interval" })
|
|
64905
|
+
| (FixedIntervalBinParametersProperties & { type: "fixed-interval" })
|
|
64906
|
+
| (FixedBoundariesBinParametersProperties & { type: "fixed-boundaries" })
|
|
64907
|
+
| (DateBinParametersProperties & { type: "date" });
|
|
64908
|
+
/**
|
|
64909
|
+
* Indicates if the service should cache the query results.
|
|
64910
|
+
*
|
|
64911
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#cacheHint Read more...}
|
|
64912
|
+
*/
|
|
64913
|
+
cacheHint?: QueryMixinProperties["cacheHint"];
|
|
64914
|
+
/**
|
|
64915
|
+
* Datum transformation used for projecting geometries in the query results when
|
|
64916
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference outSpatialReference} is different than the layer's spatial reference.
|
|
64917
|
+
*
|
|
64918
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#datumTransformation Read more...}
|
|
64919
|
+
*/
|
|
64920
|
+
datumTransformation?: number | QuerySimpleTransformation | QueryCompositeTransformation;
|
|
64921
|
+
/**
|
|
64922
|
+
* Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry} in a spatial query.
|
|
64923
|
+
*
|
|
64924
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance Read more...}
|
|
64925
|
+
*/
|
|
64926
|
+
distance?: QueryMixinProperties["distance"];
|
|
64927
|
+
/**
|
|
64928
|
+
* The geometry to apply to the spatial filter.
|
|
64929
|
+
*
|
|
64930
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry Read more...}
|
|
64931
|
+
*/
|
|
64932
|
+
geometry?: QueryMixinProperties["geometry"];
|
|
64933
|
+
/**
|
|
64934
|
+
* Sets the name of the lower boundary property in the response.
|
|
64935
|
+
*
|
|
64936
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#lowerBoundaryAlias Read more...}
|
|
64937
|
+
*/
|
|
64938
|
+
lowerBoundaryAlias?: string;
|
|
64939
|
+
/**
|
|
64940
|
+
* The spatial reference for the returned geometry.
|
|
64941
|
+
*
|
|
64942
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference Read more...}
|
|
64943
|
+
*/
|
|
64944
|
+
outSpatialReference?: QueryMixinProperties["outSpatialReference"];
|
|
64945
|
+
/**
|
|
64946
|
+
* The definitions for one or more field-based statistics to be calculated.
|
|
64947
|
+
*
|
|
64948
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outStatistics Read more...}
|
|
64949
|
+
*/
|
|
64950
|
+
outStatistics?: StatisticDefinitionProperties[];
|
|
64951
|
+
/**
|
|
64952
|
+
* Defines the [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) used for bin calculations when the bin parameter field is a date field.
|
|
64953
|
+
*
|
|
64954
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outTimeZone Read more...}
|
|
64955
|
+
*/
|
|
64956
|
+
outTimeZone?: string;
|
|
64957
|
+
/**
|
|
64958
|
+
* If `true` then the query returns distinct values based on the field(s) specified in {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outFields outFields}.
|
|
64959
|
+
*
|
|
64960
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#returnDistinctValues Read more...}
|
|
64961
|
+
*/
|
|
64962
|
+
returnDistinctValues?: boolean;
|
|
64963
|
+
/**
|
|
64964
|
+
* For spatial queries, this parameter defines the spatial relationship to query features in the layer or layer view against the input {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry}.
|
|
64965
|
+
*
|
|
64966
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#spatialRelationship Read more...}
|
|
64967
|
+
*/
|
|
64968
|
+
spatialRelationship?: QueryMixinProperties["spatialRelationship"];
|
|
64969
|
+
/**
|
|
64970
|
+
* The unit for calculating the buffer distance when {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance distance} is specified in spatial queries.
|
|
64971
|
+
*
|
|
64972
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#units Read more...}
|
|
64973
|
+
*/
|
|
64974
|
+
units?: QueryMixinProperties["units"];
|
|
64975
|
+
/**
|
|
64976
|
+
* Sets the name of the upper boundary property in the response.
|
|
64977
|
+
*
|
|
64978
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#upperBoundaryAlias Read more...}
|
|
64979
|
+
*/
|
|
64980
|
+
upperBoundaryAlias?: string;
|
|
64981
|
+
/**
|
|
64982
|
+
* A where clause for the query.
|
|
64983
|
+
*
|
|
64984
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#where Read more...}
|
|
64985
|
+
*/
|
|
64986
|
+
where?: QueryMixinProperties["where"];
|
|
64987
|
+
}
|
|
64988
|
+
|
|
64989
|
+
export interface AutoIntervalBinParameters extends Accessor, JSONSupport {}
|
|
64990
|
+
|
|
64991
|
+
export class AutoIntervalBinParameters {
|
|
64992
|
+
/**
|
|
64993
|
+
* AutoIntervalBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
|
|
64994
|
+
*
|
|
64995
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html Read more...}
|
|
64996
|
+
*/
|
|
64997
|
+
|
|
64998
|
+
constructor(properties?: AutoIntervalBinParametersProperties);
|
|
64999
|
+
|
|
65000
|
+
/**
|
|
65001
|
+
* The end value of bins to generate.
|
|
65002
|
+
*
|
|
65003
|
+
* @default null
|
|
65004
|
+
*
|
|
65005
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end Read more...}
|
|
65006
|
+
*/
|
|
65007
|
+
end: number | Date;
|
|
65008
|
+
/**
|
|
65009
|
+
* The field name used to generate bins.
|
|
65010
|
+
*
|
|
65011
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
|
|
65012
|
+
*/
|
|
65013
|
+
field: string;
|
|
65014
|
+
/**
|
|
65015
|
+
* The number of bins to generate.
|
|
65016
|
+
*
|
|
65017
|
+
* @default null
|
|
65018
|
+
*
|
|
65019
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins Read more...}
|
|
65020
|
+
*/
|
|
65021
|
+
numBins: number;
|
|
65022
|
+
/**
|
|
65023
|
+
* The start value of bins to generate.
|
|
65024
|
+
*
|
|
65025
|
+
* @default null
|
|
65026
|
+
*
|
|
65027
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start Read more...}
|
|
65028
|
+
*/
|
|
65029
|
+
start: number | Date;
|
|
65030
|
+
/**
|
|
65031
|
+
* The type of bin parameters.
|
|
65032
|
+
*
|
|
65033
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#type Read more...}
|
|
65034
|
+
*/
|
|
65035
|
+
readonly type: "auto-interval";
|
|
65036
|
+
|
|
65037
|
+
/**
|
|
65038
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
65039
|
+
*
|
|
65040
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#toJSON Read more...}
|
|
65041
|
+
*/
|
|
65042
|
+
toJSON(): any;
|
|
65043
|
+
|
|
65044
|
+
/**
|
|
65045
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
65046
|
+
* generated from an ArcGIS product.
|
|
65047
|
+
*
|
|
65048
|
+
* @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.
|
|
65049
|
+
*
|
|
65050
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#fromJSON Read more...}
|
|
65051
|
+
*/
|
|
65052
|
+
static fromJSON(json: any): any;
|
|
65053
|
+
static fromJSON(json: any): AutoIntervalBinParameters;
|
|
65054
|
+
}
|
|
65055
|
+
|
|
65056
|
+
interface AutoIntervalBinParametersProperties {
|
|
65057
|
+
/**
|
|
65058
|
+
* The end value of bins to generate.
|
|
65059
|
+
*
|
|
65060
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end Read more...}
|
|
65061
|
+
*/
|
|
65062
|
+
end?: number | DateProperties;
|
|
65063
|
+
/**
|
|
65064
|
+
* The field name used to generate bins.
|
|
65065
|
+
*
|
|
65066
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
|
|
65067
|
+
*/
|
|
65068
|
+
field?: string;
|
|
65069
|
+
/**
|
|
65070
|
+
* The number of bins to generate.
|
|
65071
|
+
*
|
|
65072
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins Read more...}
|
|
65073
|
+
*/
|
|
65074
|
+
numBins?: number;
|
|
65075
|
+
/**
|
|
65076
|
+
* The start value of bins to generate.
|
|
65077
|
+
*
|
|
65078
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start Read more...}
|
|
65079
|
+
*/
|
|
65080
|
+
start?: number | DateProperties;
|
|
64430
65081
|
}
|
|
64431
65082
|
|
|
65083
|
+
export interface BaseImageMeasureParameters extends Accessor, JSONSupport {}
|
|
65084
|
+
|
|
65085
|
+
export class BaseImageMeasureParameters {
|
|
65086
|
+
/**
|
|
65087
|
+
* Base class for imagery mensuration operations.
|
|
65088
|
+
*
|
|
65089
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html Read more...}
|
|
65090
|
+
*/
|
|
65091
|
+
|
|
65092
|
+
constructor(properties?: BaseImageMeasureParametersProperties);
|
|
65093
|
+
|
|
65094
|
+
/**
|
|
65095
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
65096
|
+
*
|
|
65097
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#toJSON Read more...}
|
|
65098
|
+
*/
|
|
65099
|
+
toJSON(): any;
|
|
65100
|
+
|
|
65101
|
+
/**
|
|
65102
|
+
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
65103
|
+
* when the measure is computed.
|
|
65104
|
+
*
|
|
65105
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#mosaicRule Read more...}
|
|
65106
|
+
*/
|
|
65107
|
+
static mosaicRule: MosaicRule;
|
|
65108
|
+
/**
|
|
65109
|
+
* Specifies the pixel size.
|
|
65110
|
+
*
|
|
65111
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#pixelSize Read more...}
|
|
65112
|
+
*/
|
|
65113
|
+
static pixelSize: Point;
|
|
65114
|
+
|
|
65115
|
+
/**
|
|
65116
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
65117
|
+
* generated from an ArcGIS product.
|
|
65118
|
+
*
|
|
65119
|
+
* @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.
|
|
65120
|
+
*
|
|
65121
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#fromJSON Read more...}
|
|
65122
|
+
*/
|
|
65123
|
+
static fromJSON(json: any): any;
|
|
65124
|
+
static fromJSON(json: any): BaseImageMeasureParameters;
|
|
65125
|
+
}
|
|
65126
|
+
|
|
65127
|
+
interface BaseImageMeasureParametersProperties {}
|
|
65128
|
+
|
|
65129
|
+
export interface BaseImageMeasureResult extends Accessor, JSONSupport {}
|
|
65130
|
+
|
|
64432
65131
|
export class BaseImageMeasureResult {
|
|
65132
|
+
/**
|
|
65133
|
+
* Base class for image service measure result.
|
|
65134
|
+
*
|
|
65135
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html Read more...}
|
|
65136
|
+
*/
|
|
65137
|
+
|
|
65138
|
+
constructor(properties?: BaseImageMeasureResultProperties);
|
|
65139
|
+
|
|
65140
|
+
/**
|
|
65141
|
+
* Name of the raster dataset used in the area and height measurement.
|
|
65142
|
+
*
|
|
65143
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#name Read more...}
|
|
65144
|
+
*/
|
|
64433
65145
|
name: string;
|
|
65146
|
+
/**
|
|
65147
|
+
* Sensor name of the raster dataset used in the area and height measurement.
|
|
65148
|
+
*
|
|
65149
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#sensorName Read more...}
|
|
65150
|
+
*/
|
|
64434
65151
|
sensorName: string;
|
|
65152
|
+
|
|
65153
|
+
/**
|
|
65154
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
65155
|
+
*
|
|
65156
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#toJSON Read more...}
|
|
65157
|
+
*/
|
|
65158
|
+
toJSON(): any;
|
|
65159
|
+
|
|
65160
|
+
/**
|
|
65161
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
65162
|
+
* generated from an ArcGIS product.
|
|
65163
|
+
*
|
|
65164
|
+
* @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.
|
|
65165
|
+
*
|
|
65166
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#fromJSON Read more...}
|
|
65167
|
+
*/
|
|
65168
|
+
static fromJSON(json: any): any;
|
|
65169
|
+
static fromJSON(json: any): BaseImageMeasureResult;
|
|
64435
65170
|
}
|
|
64436
65171
|
|
|
64437
65172
|
interface BaseImageMeasureResultProperties {
|
|
65173
|
+
/**
|
|
65174
|
+
* Name of the raster dataset used in the area and height measurement.
|
|
65175
|
+
*
|
|
65176
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#name Read more...}
|
|
65177
|
+
*/
|
|
64438
65178
|
name?: string;
|
|
65179
|
+
/**
|
|
65180
|
+
* Sensor name of the raster dataset used in the area and height measurement.
|
|
65181
|
+
*
|
|
65182
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#sensorName Read more...}
|
|
65183
|
+
*/
|
|
64439
65184
|
sensorName?: string;
|
|
64440
65185
|
}
|
|
64441
65186
|
|
|
@@ -65838,6 +66583,160 @@ declare namespace __esri {
|
|
|
65838
66583
|
where?: string;
|
|
65839
66584
|
}
|
|
65840
66585
|
|
|
66586
|
+
export interface DateBinParameters extends Accessor, JSONSupport {}
|
|
66587
|
+
|
|
66588
|
+
export class DateBinParameters {
|
|
66589
|
+
/**
|
|
66590
|
+
* DateBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
|
|
66591
|
+
*
|
|
66592
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html Read more...}
|
|
66593
|
+
*/
|
|
66594
|
+
|
|
66595
|
+
constructor(properties?: DateBinParametersProperties);
|
|
66596
|
+
|
|
66597
|
+
/**
|
|
66598
|
+
* The end date value for bins to generate.
|
|
66599
|
+
*
|
|
66600
|
+
* @default null
|
|
66601
|
+
*
|
|
66602
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
|
|
66603
|
+
*/
|
|
66604
|
+
end: Date | string | number;
|
|
66605
|
+
/**
|
|
66606
|
+
* Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
|
|
66607
|
+
*
|
|
66608
|
+
* @default null
|
|
66609
|
+
*
|
|
66610
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#interval Read more...}
|
|
66611
|
+
*/
|
|
66612
|
+
interval: DateBinTimeInterval;
|
|
66613
|
+
/**
|
|
66614
|
+
* Defines an offset to the bin's starting position.
|
|
66615
|
+
*
|
|
66616
|
+
* @default null
|
|
66617
|
+
*
|
|
66618
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#offset Read more...}
|
|
66619
|
+
*/
|
|
66620
|
+
offset: DateBinTimeInterval;
|
|
66621
|
+
/**
|
|
66622
|
+
* The start date value for bins to generate.
|
|
66623
|
+
*
|
|
66624
|
+
* @default null
|
|
66625
|
+
*
|
|
66626
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#start Read more...}
|
|
66627
|
+
*/
|
|
66628
|
+
start: Date | string | number;
|
|
66629
|
+
/**
|
|
66630
|
+
* The type of bin parameters.
|
|
66631
|
+
*
|
|
66632
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#type Read more...}
|
|
66633
|
+
*/
|
|
66634
|
+
readonly type: "date";
|
|
66635
|
+
|
|
66636
|
+
/**
|
|
66637
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
66638
|
+
*
|
|
66639
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#toJSON Read more...}
|
|
66640
|
+
*/
|
|
66641
|
+
toJSON(): any;
|
|
66642
|
+
|
|
66643
|
+
/**
|
|
66644
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
66645
|
+
* generated from an ArcGIS product.
|
|
66646
|
+
*
|
|
66647
|
+
* @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.
|
|
66648
|
+
*
|
|
66649
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#fromJSON Read more...}
|
|
66650
|
+
*/
|
|
66651
|
+
static fromJSON(json: any): any;
|
|
66652
|
+
static fromJSON(json: any): DateBinParameters;
|
|
66653
|
+
}
|
|
66654
|
+
|
|
66655
|
+
interface DateBinParametersProperties {
|
|
66656
|
+
/**
|
|
66657
|
+
* The end date value for bins to generate.
|
|
66658
|
+
*
|
|
66659
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
|
|
66660
|
+
*/
|
|
66661
|
+
end?: DateProperties | string | number;
|
|
66662
|
+
/**
|
|
66663
|
+
* Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
|
|
66664
|
+
*
|
|
66665
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#interval Read more...}
|
|
66666
|
+
*/
|
|
66667
|
+
interval?: DateBinTimeIntervalProperties;
|
|
66668
|
+
/**
|
|
66669
|
+
* Defines an offset to the bin's starting position.
|
|
66670
|
+
*
|
|
66671
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#offset Read more...}
|
|
66672
|
+
*/
|
|
66673
|
+
offset?: DateBinTimeIntervalProperties;
|
|
66674
|
+
/**
|
|
66675
|
+
* The start date value for bins to generate.
|
|
66676
|
+
*
|
|
66677
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#start Read more...}
|
|
66678
|
+
*/
|
|
66679
|
+
start?: DateProperties | string | number;
|
|
66680
|
+
}
|
|
66681
|
+
|
|
66682
|
+
export interface DateBinTimeInterval extends Accessor, JSONSupport {}
|
|
66683
|
+
|
|
66684
|
+
export class DateBinTimeInterval {
|
|
66685
|
+
/**
|
|
66686
|
+
* DateBinTimeInterval describes a length of time for a bin query in one of the temporal units such as `days`, `weeks`, or `years`.
|
|
66687
|
+
*
|
|
66688
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html Read more...}
|
|
66689
|
+
*/
|
|
66690
|
+
|
|
66691
|
+
constructor(properties?: DateBinTimeIntervalProperties);
|
|
66692
|
+
|
|
66693
|
+
/**
|
|
66694
|
+
* Temporal unit used to generate bins or defines and an offset.
|
|
66695
|
+
*
|
|
66696
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit Read more...}
|
|
66697
|
+
*/
|
|
66698
|
+
unit: "years" | "quarters" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds";
|
|
66699
|
+
/**
|
|
66700
|
+
* The numerical value of the time extent.
|
|
66701
|
+
*
|
|
66702
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#value Read more...}
|
|
66703
|
+
*/
|
|
66704
|
+
value: number;
|
|
66705
|
+
|
|
66706
|
+
/**
|
|
66707
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
66708
|
+
*
|
|
66709
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#toJSON Read more...}
|
|
66710
|
+
*/
|
|
66711
|
+
toJSON(): any;
|
|
66712
|
+
|
|
66713
|
+
/**
|
|
66714
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
66715
|
+
* generated from an ArcGIS product.
|
|
66716
|
+
*
|
|
66717
|
+
* @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.
|
|
66718
|
+
*
|
|
66719
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#fromJSON Read more...}
|
|
66720
|
+
*/
|
|
66721
|
+
static fromJSON(json: any): any;
|
|
66722
|
+
static fromJSON(json: any): DateBinTimeInterval;
|
|
66723
|
+
}
|
|
66724
|
+
|
|
66725
|
+
interface DateBinTimeIntervalProperties {
|
|
66726
|
+
/**
|
|
66727
|
+
* Temporal unit used to generate bins or defines and an offset.
|
|
66728
|
+
*
|
|
66729
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit Read more...}
|
|
66730
|
+
*/
|
|
66731
|
+
unit?: "years" | "quarters" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds";
|
|
66732
|
+
/**
|
|
66733
|
+
* The numerical value of the time extent.
|
|
66734
|
+
*
|
|
66735
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#value Read more...}
|
|
66736
|
+
*/
|
|
66737
|
+
value?: number;
|
|
66738
|
+
}
|
|
66739
|
+
|
|
65841
66740
|
export class DensifyParameters extends Accessor {
|
|
65842
66741
|
/**
|
|
65843
66742
|
* Input parameters for the densify() method on
|
|
@@ -67153,6 +68052,140 @@ declare namespace __esri {
|
|
|
67153
68052
|
value?: string | number;
|
|
67154
68053
|
}
|
|
67155
68054
|
|
|
68055
|
+
export interface FixedBoundariesBinParameters extends Accessor, JSONSupport {}
|
|
68056
|
+
|
|
68057
|
+
export class FixedBoundariesBinParameters {
|
|
68058
|
+
/**
|
|
68059
|
+
* FixedBoundariesBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
|
|
68060
|
+
*
|
|
68061
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html Read more...}
|
|
68062
|
+
*/
|
|
68063
|
+
|
|
68064
|
+
constructor(properties?: FixedBoundariesBinParametersProperties);
|
|
68065
|
+
|
|
68066
|
+
/**
|
|
68067
|
+
* Array of values representing bin boundaries.
|
|
68068
|
+
*
|
|
68069
|
+
* @default null
|
|
68070
|
+
*
|
|
68071
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
|
|
68072
|
+
*/
|
|
68073
|
+
boundaries: number[] | Date[];
|
|
68074
|
+
/**
|
|
68075
|
+
* The type of bin parameters.
|
|
68076
|
+
*
|
|
68077
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#type Read more...}
|
|
68078
|
+
*/
|
|
68079
|
+
readonly type: "fixed-boundaries";
|
|
68080
|
+
|
|
68081
|
+
/**
|
|
68082
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68083
|
+
*
|
|
68084
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#toJSON Read more...}
|
|
68085
|
+
*/
|
|
68086
|
+
toJSON(): any;
|
|
68087
|
+
|
|
68088
|
+
/**
|
|
68089
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68090
|
+
* generated from an ArcGIS product.
|
|
68091
|
+
*
|
|
68092
|
+
* @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.
|
|
68093
|
+
*
|
|
68094
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#fromJSON Read more...}
|
|
68095
|
+
*/
|
|
68096
|
+
static fromJSON(json: any): any;
|
|
68097
|
+
static fromJSON(json: any): FixedBoundariesBinParameters;
|
|
68098
|
+
}
|
|
68099
|
+
|
|
68100
|
+
interface FixedBoundariesBinParametersProperties {
|
|
68101
|
+
/**
|
|
68102
|
+
* Array of values representing bin boundaries.
|
|
68103
|
+
*
|
|
68104
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
|
|
68105
|
+
*/
|
|
68106
|
+
boundaries?: number[] | DateProperties[];
|
|
68107
|
+
}
|
|
68108
|
+
|
|
68109
|
+
export interface FixedIntervalBinParameters extends Accessor, JSONSupport {}
|
|
68110
|
+
|
|
68111
|
+
export class FixedIntervalBinParameters {
|
|
68112
|
+
/**
|
|
68113
|
+
* FixedIntervalBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
|
|
68114
|
+
*
|
|
68115
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html Read more...}
|
|
68116
|
+
*/
|
|
68117
|
+
|
|
68118
|
+
constructor(properties?: FixedIntervalBinParametersProperties);
|
|
68119
|
+
|
|
68120
|
+
/**
|
|
68121
|
+
* The end value of bins to generate.
|
|
68122
|
+
*
|
|
68123
|
+
* @default null
|
|
68124
|
+
*
|
|
68125
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
|
|
68126
|
+
*/
|
|
68127
|
+
end: number | Date;
|
|
68128
|
+
/**
|
|
68129
|
+
* Represents the interval of values to be included in each bin.
|
|
68130
|
+
*
|
|
68131
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#interval Read more...}
|
|
68132
|
+
*/
|
|
68133
|
+
interval: number;
|
|
68134
|
+
/**
|
|
68135
|
+
* The start value of bins to generate.
|
|
68136
|
+
*
|
|
68137
|
+
* @default null
|
|
68138
|
+
*
|
|
68139
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#start Read more...}
|
|
68140
|
+
*/
|
|
68141
|
+
start: number | Date;
|
|
68142
|
+
/**
|
|
68143
|
+
* The type of bin parameters.
|
|
68144
|
+
*
|
|
68145
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#type Read more...}
|
|
68146
|
+
*/
|
|
68147
|
+
readonly type: "fixed-interval";
|
|
68148
|
+
|
|
68149
|
+
/**
|
|
68150
|
+
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68151
|
+
*
|
|
68152
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#toJSON Read more...}
|
|
68153
|
+
*/
|
|
68154
|
+
toJSON(): any;
|
|
68155
|
+
|
|
68156
|
+
/**
|
|
68157
|
+
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68158
|
+
* generated from an ArcGIS product.
|
|
68159
|
+
*
|
|
68160
|
+
* @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.
|
|
68161
|
+
*
|
|
68162
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#fromJSON Read more...}
|
|
68163
|
+
*/
|
|
68164
|
+
static fromJSON(json: any): any;
|
|
68165
|
+
static fromJSON(json: any): FixedIntervalBinParameters;
|
|
68166
|
+
}
|
|
68167
|
+
|
|
68168
|
+
interface FixedIntervalBinParametersProperties {
|
|
68169
|
+
/**
|
|
68170
|
+
* The end value of bins to generate.
|
|
68171
|
+
*
|
|
68172
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
|
|
68173
|
+
*/
|
|
68174
|
+
end?: number | DateProperties;
|
|
68175
|
+
/**
|
|
68176
|
+
* Represents the interval of values to be included in each bin.
|
|
68177
|
+
*
|
|
68178
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#interval Read more...}
|
|
68179
|
+
*/
|
|
68180
|
+
interval?: number;
|
|
68181
|
+
/**
|
|
68182
|
+
* The start value of bins to generate.
|
|
68183
|
+
*
|
|
68184
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#start Read more...}
|
|
68185
|
+
*/
|
|
68186
|
+
start?: number | DateProperties;
|
|
68187
|
+
}
|
|
68188
|
+
|
|
67156
68189
|
export interface GeneralizeParameters extends Accessor, JSONSupport {}
|
|
67157
68190
|
|
|
67158
68191
|
export class GeneralizeParameters {
|
|
@@ -67854,9 +68887,7 @@ declare namespace __esri {
|
|
|
67854
68887
|
up?: number;
|
|
67855
68888
|
}
|
|
67856
68889
|
|
|
67857
|
-
export
|
|
67858
|
-
|
|
67859
|
-
export class ImageAreaParameters {
|
|
68890
|
+
export class ImageAreaParameters extends BaseImageMeasureParameters {
|
|
67860
68891
|
/**
|
|
67861
68892
|
* Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureAreaAndPerimeter ImageryLayer.measureAreaAndPerimeter()}
|
|
67862
68893
|
* and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureAreaAndPerimeter imageService.measureAreaAndPerimeter()} methods to perform imagery
|
|
@@ -67910,19 +68941,6 @@ declare namespace __esri {
|
|
|
67910
68941
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#linearUnit Read more...}
|
|
67911
68942
|
*/
|
|
67912
68943
|
linearUnit: LengthUnit | "decimal-degrees" | "points" | "unknown";
|
|
67913
|
-
/**
|
|
67914
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
67915
|
-
* when the measure is computed.
|
|
67916
|
-
*
|
|
67917
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#mosaicRule Read more...}
|
|
67918
|
-
*/
|
|
67919
|
-
declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
|
|
67920
|
-
/**
|
|
67921
|
-
* Specifies the pixel size.
|
|
67922
|
-
*
|
|
67923
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#pixelSize Read more...}
|
|
67924
|
-
*/
|
|
67925
|
-
declare pixelSize: BaseImageMeasureParameters["pixelSize"];
|
|
67926
68944
|
/**
|
|
67927
68945
|
* The string value representing the type of imagery mensuration.
|
|
67928
68946
|
*
|
|
@@ -67930,22 +68948,6 @@ declare namespace __esri {
|
|
|
67930
68948
|
*/
|
|
67931
68949
|
readonly type: "area-perimeter";
|
|
67932
68950
|
|
|
67933
|
-
/**
|
|
67934
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
67935
|
-
*
|
|
67936
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#toJSON Read more...}
|
|
67937
|
-
*/
|
|
67938
|
-
toJSON(): any;
|
|
67939
|
-
|
|
67940
|
-
/**
|
|
67941
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
67942
|
-
* generated from an ArcGIS product.
|
|
67943
|
-
*
|
|
67944
|
-
* @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.
|
|
67945
|
-
*
|
|
67946
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#fromJSON Read more...}
|
|
67947
|
-
*/
|
|
67948
|
-
static fromJSON(json: any): any;
|
|
67949
68951
|
static fromJSON(json: any): ImageAreaParameters;
|
|
67950
68952
|
}
|
|
67951
68953
|
|
|
@@ -67987,24 +68989,9 @@ declare namespace __esri {
|
|
|
67987
68989
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#linearUnit Read more...}
|
|
67988
68990
|
*/
|
|
67989
68991
|
linearUnit?: LengthUnit | "decimal-degrees" | "points" | "unknown";
|
|
67990
|
-
/**
|
|
67991
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
67992
|
-
* when the measure is computed.
|
|
67993
|
-
*
|
|
67994
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#mosaicRule Read more...}
|
|
67995
|
-
*/
|
|
67996
|
-
mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
|
|
67997
|
-
/**
|
|
67998
|
-
* Specifies the pixel size.
|
|
67999
|
-
*
|
|
68000
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#pixelSize Read more...}
|
|
68001
|
-
*/
|
|
68002
|
-
pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
|
|
68003
68992
|
}
|
|
68004
68993
|
|
|
68005
|
-
export
|
|
68006
|
-
|
|
68007
|
-
export class ImageAreaResult {
|
|
68994
|
+
export class ImageAreaResult extends BaseImageMeasureResult {
|
|
68008
68995
|
/**
|
|
68009
68996
|
* Image service area and perimeter measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureAreaAndPerimeter ImageryLayer.measureAreaAndPerimeter()}
|
|
68010
68997
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureAreaAndPerimeter imageService.measureAreaAndPerimeter()} methods resolve successfully.
|
|
@@ -68020,41 +69007,13 @@ declare namespace __esri {
|
|
|
68020
69007
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#area Read more...}
|
|
68021
69008
|
*/
|
|
68022
69009
|
area: MeasurementValue;
|
|
68023
|
-
/**
|
|
68024
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68025
|
-
*
|
|
68026
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#name Read more...}
|
|
68027
|
-
*/
|
|
68028
|
-
declare name: BaseImageMeasureResult["name"];
|
|
68029
69010
|
/**
|
|
68030
69011
|
* An object containing results of the perimeter measurement.
|
|
68031
69012
|
*
|
|
68032
69013
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#perimeter Read more...}
|
|
68033
69014
|
*/
|
|
68034
69015
|
perimeter: MeasurementValue;
|
|
68035
|
-
/**
|
|
68036
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68037
|
-
*
|
|
68038
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#sensorName Read more...}
|
|
68039
|
-
*/
|
|
68040
|
-
declare sensorName: BaseImageMeasureResult["sensorName"];
|
|
68041
69016
|
|
|
68042
|
-
/**
|
|
68043
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68044
|
-
*
|
|
68045
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#toJSON Read more...}
|
|
68046
|
-
*/
|
|
68047
|
-
toJSON(): any;
|
|
68048
|
-
|
|
68049
|
-
/**
|
|
68050
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68051
|
-
* generated from an ArcGIS product.
|
|
68052
|
-
*
|
|
68053
|
-
* @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.
|
|
68054
|
-
*
|
|
68055
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#fromJSON Read more...}
|
|
68056
|
-
*/
|
|
68057
|
-
static fromJSON(json: any): any;
|
|
68058
69017
|
static fromJSON(json: any): ImageAreaResult;
|
|
68059
69018
|
}
|
|
68060
69019
|
|
|
@@ -68065,24 +69024,12 @@ declare namespace __esri {
|
|
|
68065
69024
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#area Read more...}
|
|
68066
69025
|
*/
|
|
68067
69026
|
area?: MeasurementValue;
|
|
68068
|
-
/**
|
|
68069
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68070
|
-
*
|
|
68071
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#name Read more...}
|
|
68072
|
-
*/
|
|
68073
|
-
name?: BaseImageMeasureResultProperties["name"];
|
|
68074
69027
|
/**
|
|
68075
69028
|
* An object containing results of the perimeter measurement.
|
|
68076
69029
|
*
|
|
68077
69030
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#perimeter Read more...}
|
|
68078
69031
|
*/
|
|
68079
69032
|
perimeter?: MeasurementValue;
|
|
68080
|
-
/**
|
|
68081
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68082
|
-
*
|
|
68083
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#sensorName Read more...}
|
|
68084
|
-
*/
|
|
68085
|
-
sensorName?: BaseImageMeasureResultProperties["sensorName"];
|
|
68086
69033
|
}
|
|
68087
69034
|
|
|
68088
69035
|
export interface ImageBoundaryParameters extends Accessor, JSONSupport {}
|
|
@@ -68191,9 +69138,7 @@ declare namespace __esri {
|
|
|
68191
69138
|
geometry?: (PolygonProperties & { type: "polygon" }) | (ExtentProperties & { type: "extent" });
|
|
68192
69139
|
}
|
|
68193
69140
|
|
|
68194
|
-
export
|
|
68195
|
-
|
|
68196
|
-
export class ImageDistanceParameters {
|
|
69141
|
+
export class ImageDistanceParameters extends BaseImageMeasureParameters {
|
|
68197
69142
|
/**
|
|
68198
69143
|
* Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureDistanceAndAngle ImageryLayer.measureDistanceAndAngle()}
|
|
68199
69144
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureDistanceAndAngle imageService.measureDistanceAndAngle()} methods to perform imagery
|
|
@@ -68234,19 +69179,6 @@ declare namespace __esri {
|
|
|
68234
69179
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#linearUnit Read more...}
|
|
68235
69180
|
*/
|
|
68236
69181
|
linearUnit: LengthUnit;
|
|
68237
|
-
/**
|
|
68238
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
68239
|
-
* when the measure is computed.
|
|
68240
|
-
*
|
|
68241
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#mosaicRule Read more...}
|
|
68242
|
-
*/
|
|
68243
|
-
declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
|
|
68244
|
-
/**
|
|
68245
|
-
* Specifies the pixel size.
|
|
68246
|
-
*
|
|
68247
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#pixelSize Read more...}
|
|
68248
|
-
*/
|
|
68249
|
-
declare pixelSize: BaseImageMeasureParameters["pixelSize"];
|
|
68250
69182
|
/**
|
|
68251
69183
|
* A point that defines the to location of the distance and angle measurement.
|
|
68252
69184
|
*
|
|
@@ -68260,22 +69192,6 @@ declare namespace __esri {
|
|
|
68260
69192
|
*/
|
|
68261
69193
|
readonly type: "distance-angle";
|
|
68262
69194
|
|
|
68263
|
-
/**
|
|
68264
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68265
|
-
*
|
|
68266
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#toJSON Read more...}
|
|
68267
|
-
*/
|
|
68268
|
-
toJSON(): any;
|
|
68269
|
-
|
|
68270
|
-
/**
|
|
68271
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68272
|
-
* generated from an ArcGIS product.
|
|
68273
|
-
*
|
|
68274
|
-
* @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.
|
|
68275
|
-
*
|
|
68276
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#fromJSON Read more...}
|
|
68277
|
-
*/
|
|
68278
|
-
static fromJSON(json: any): any;
|
|
68279
69195
|
static fromJSON(json: any): ImageDistanceParameters;
|
|
68280
69196
|
}
|
|
68281
69197
|
|
|
@@ -68304,19 +69220,6 @@ declare namespace __esri {
|
|
|
68304
69220
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#linearUnit Read more...}
|
|
68305
69221
|
*/
|
|
68306
69222
|
linearUnit?: LengthUnit;
|
|
68307
|
-
/**
|
|
68308
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
68309
|
-
* when the measure is computed.
|
|
68310
|
-
*
|
|
68311
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#mosaicRule Read more...}
|
|
68312
|
-
*/
|
|
68313
|
-
mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
|
|
68314
|
-
/**
|
|
68315
|
-
* Specifies the pixel size.
|
|
68316
|
-
*
|
|
68317
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#pixelSize Read more...}
|
|
68318
|
-
*/
|
|
68319
|
-
pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
|
|
68320
69223
|
/**
|
|
68321
69224
|
* A point that defines the to location of the distance and angle measurement.
|
|
68322
69225
|
*
|
|
@@ -68325,9 +69228,7 @@ declare namespace __esri {
|
|
|
68325
69228
|
toGeometry?: PointProperties;
|
|
68326
69229
|
}
|
|
68327
69230
|
|
|
68328
|
-
export
|
|
68329
|
-
|
|
68330
|
-
export class ImageDistanceResult {
|
|
69231
|
+
export class ImageDistanceResult extends BaseImageMeasureResult {
|
|
68331
69232
|
/**
|
|
68332
69233
|
* Image service distance and angle measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureDistanceAndAngle ImageryLayer.measureDistanceAndAngle()}
|
|
68333
69234
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureDistanceAndAngle imageService.measureDistanceAndAngle()} methods resolve successfully.
|
|
@@ -68355,35 +69256,7 @@ declare namespace __esri {
|
|
|
68355
69256
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#elevationAngle Read more...}
|
|
68356
69257
|
*/
|
|
68357
69258
|
elevationAngle: MeasurementValue;
|
|
68358
|
-
/**
|
|
68359
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68360
|
-
*
|
|
68361
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#name Read more...}
|
|
68362
|
-
*/
|
|
68363
|
-
declare name: BaseImageMeasureResult["name"];
|
|
68364
|
-
/**
|
|
68365
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68366
|
-
*
|
|
68367
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#sensorName Read more...}
|
|
68368
|
-
*/
|
|
68369
|
-
declare sensorName: BaseImageMeasureResult["sensorName"];
|
|
68370
69259
|
|
|
68371
|
-
/**
|
|
68372
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68373
|
-
*
|
|
68374
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#toJSON Read more...}
|
|
68375
|
-
*/
|
|
68376
|
-
toJSON(): any;
|
|
68377
|
-
|
|
68378
|
-
/**
|
|
68379
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68380
|
-
* generated from an ArcGIS product.
|
|
68381
|
-
*
|
|
68382
|
-
* @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.
|
|
68383
|
-
*
|
|
68384
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#fromJSON Read more...}
|
|
68385
|
-
*/
|
|
68386
|
-
static fromJSON(json: any): any;
|
|
68387
69260
|
static fromJSON(json: any): ImageDistanceResult;
|
|
68388
69261
|
}
|
|
68389
69262
|
|
|
@@ -68406,18 +69279,6 @@ declare namespace __esri {
|
|
|
68406
69279
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#elevationAngle Read more...}
|
|
68407
69280
|
*/
|
|
68408
69281
|
elevationAngle?: MeasurementValue;
|
|
68409
|
-
/**
|
|
68410
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68411
|
-
*
|
|
68412
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#name Read more...}
|
|
68413
|
-
*/
|
|
68414
|
-
name?: BaseImageMeasureResultProperties["name"];
|
|
68415
|
-
/**
|
|
68416
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68417
|
-
*
|
|
68418
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#sensorName Read more...}
|
|
68419
|
-
*/
|
|
68420
|
-
sensorName?: BaseImageMeasureResultProperties["sensorName"];
|
|
68421
69282
|
}
|
|
68422
69283
|
|
|
68423
69284
|
export class ImageGPSInfo extends JSONSupport {
|
|
@@ -68716,9 +69577,7 @@ declare namespace __esri {
|
|
|
68716
69577
|
images?: ImageGPSInfoProperties[];
|
|
68717
69578
|
}
|
|
68718
69579
|
|
|
68719
|
-
export
|
|
68720
|
-
|
|
68721
|
-
export class ImageHeightParameters {
|
|
69580
|
+
export class ImageHeightParameters extends BaseImageMeasureParameters {
|
|
68722
69581
|
/**
|
|
68723
69582
|
* Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureHeight ImageryLayer.measureHeight()}
|
|
68724
69583
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureHeight imageService.measureHeight()} methods to perform imagery
|
|
@@ -68743,13 +69602,6 @@ declare namespace __esri {
|
|
|
68743
69602
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#linearUnit Read more...}
|
|
68744
69603
|
*/
|
|
68745
69604
|
linearUnit: LengthUnit;
|
|
68746
|
-
/**
|
|
68747
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
68748
|
-
* when the measure is computed.
|
|
68749
|
-
*
|
|
68750
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#mosaicRule Read more...}
|
|
68751
|
-
*/
|
|
68752
|
-
declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
|
|
68753
69605
|
/**
|
|
68754
69606
|
* Determines how the height will be measured when the sensor info is available.
|
|
68755
69607
|
*
|
|
@@ -68758,12 +69610,6 @@ declare namespace __esri {
|
|
|
68758
69610
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#operationType Read more...}
|
|
68759
69611
|
*/
|
|
68760
69612
|
operationType: "base-and-top" | "base-and-top-shadow" | "top-and-top-shadow";
|
|
68761
|
-
/**
|
|
68762
|
-
* Specifies the pixel size.
|
|
68763
|
-
*
|
|
68764
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#pixelSize Read more...}
|
|
68765
|
-
*/
|
|
68766
|
-
declare pixelSize: BaseImageMeasureParameters["pixelSize"];
|
|
68767
69613
|
/**
|
|
68768
69614
|
* A point that defines the to location of the height measurement.
|
|
68769
69615
|
*
|
|
@@ -68777,22 +69623,6 @@ declare namespace __esri {
|
|
|
68777
69623
|
*/
|
|
68778
69624
|
readonly type: "height";
|
|
68779
69625
|
|
|
68780
|
-
/**
|
|
68781
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68782
|
-
*
|
|
68783
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#toJSON Read more...}
|
|
68784
|
-
*/
|
|
68785
|
-
toJSON(): any;
|
|
68786
|
-
|
|
68787
|
-
/**
|
|
68788
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68789
|
-
* generated from an ArcGIS product.
|
|
68790
|
-
*
|
|
68791
|
-
* @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.
|
|
68792
|
-
*
|
|
68793
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#fromJSON Read more...}
|
|
68794
|
-
*/
|
|
68795
|
-
static fromJSON(json: any): any;
|
|
68796
69626
|
static fromJSON(json: any): ImageHeightParameters;
|
|
68797
69627
|
}
|
|
68798
69628
|
|
|
@@ -68809,25 +69639,12 @@ declare namespace __esri {
|
|
|
68809
69639
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#linearUnit Read more...}
|
|
68810
69640
|
*/
|
|
68811
69641
|
linearUnit?: LengthUnit;
|
|
68812
|
-
/**
|
|
68813
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
68814
|
-
* when the measure is computed.
|
|
68815
|
-
*
|
|
68816
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#mosaicRule Read more...}
|
|
68817
|
-
*/
|
|
68818
|
-
mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
|
|
68819
69642
|
/**
|
|
68820
69643
|
* Determines how the height will be measured when the sensor info is available.
|
|
68821
69644
|
*
|
|
68822
69645
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#operationType Read more...}
|
|
68823
69646
|
*/
|
|
68824
69647
|
operationType?: "base-and-top" | "base-and-top-shadow" | "top-and-top-shadow";
|
|
68825
|
-
/**
|
|
68826
|
-
* Specifies the pixel size.
|
|
68827
|
-
*
|
|
68828
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#pixelSize Read more...}
|
|
68829
|
-
*/
|
|
68830
|
-
pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
|
|
68831
69648
|
/**
|
|
68832
69649
|
* A point that defines the to location of the height measurement.
|
|
68833
69650
|
*
|
|
@@ -68836,9 +69653,7 @@ declare namespace __esri {
|
|
|
68836
69653
|
toGeometry?: PointProperties;
|
|
68837
69654
|
}
|
|
68838
69655
|
|
|
68839
|
-
export
|
|
68840
|
-
|
|
68841
|
-
export class ImageHeightResult {
|
|
69656
|
+
export class ImageHeightResult extends BaseImageMeasureResult {
|
|
68842
69657
|
/**
|
|
68843
69658
|
* Image service height mensuration result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureHeight ImageryLayer.measureHeight()}
|
|
68844
69659
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureHeight imageService.measureHeight()} methods resolve successfully.
|
|
@@ -68854,35 +69669,7 @@ declare namespace __esri {
|
|
|
68854
69669
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#height Read more...}
|
|
68855
69670
|
*/
|
|
68856
69671
|
height: MeasurementValue;
|
|
68857
|
-
/**
|
|
68858
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68859
|
-
*
|
|
68860
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#name Read more...}
|
|
68861
|
-
*/
|
|
68862
|
-
declare name: BaseImageMeasureResult["name"];
|
|
68863
|
-
/**
|
|
68864
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68865
|
-
*
|
|
68866
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#sensorName Read more...}
|
|
68867
|
-
*/
|
|
68868
|
-
declare sensorName: BaseImageMeasureResult["sensorName"];
|
|
68869
69672
|
|
|
68870
|
-
/**
|
|
68871
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
68872
|
-
*
|
|
68873
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#toJSON Read more...}
|
|
68874
|
-
*/
|
|
68875
|
-
toJSON(): any;
|
|
68876
|
-
|
|
68877
|
-
/**
|
|
68878
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
68879
|
-
* generated from an ArcGIS product.
|
|
68880
|
-
*
|
|
68881
|
-
* @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.
|
|
68882
|
-
*
|
|
68883
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#fromJSON Read more...}
|
|
68884
|
-
*/
|
|
68885
|
-
static fromJSON(json: any): any;
|
|
68886
69673
|
static fromJSON(json: any): ImageHeightResult;
|
|
68887
69674
|
}
|
|
68888
69675
|
|
|
@@ -68893,18 +69680,6 @@ declare namespace __esri {
|
|
|
68893
69680
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#height Read more...}
|
|
68894
69681
|
*/
|
|
68895
69682
|
height?: MeasurementValue;
|
|
68896
|
-
/**
|
|
68897
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
68898
|
-
*
|
|
68899
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#name Read more...}
|
|
68900
|
-
*/
|
|
68901
|
-
name?: BaseImageMeasureResultProperties["name"];
|
|
68902
|
-
/**
|
|
68903
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
68904
|
-
*
|
|
68905
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#sensorName Read more...}
|
|
68906
|
-
*/
|
|
68907
|
-
sensorName?: BaseImageMeasureResultProperties["sensorName"];
|
|
68908
69683
|
}
|
|
68909
69684
|
|
|
68910
69685
|
export interface ImageHistogramParameters extends Accessor, JSONSupport {}
|
|
@@ -69764,9 +70539,7 @@ declare namespace __esri {
|
|
|
69764
70539
|
geometries?: any[];
|
|
69765
70540
|
}
|
|
69766
70541
|
|
|
69767
|
-
export
|
|
69768
|
-
|
|
69769
|
-
export class ImagePointParameters {
|
|
70542
|
+
export class ImagePointParameters extends BaseImageMeasureParameters {
|
|
69770
70543
|
/**
|
|
69771
70544
|
* Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measurePointOrCentroid ImageryLayer.measurePointOrCentroid()}
|
|
69772
70545
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measurePointOrCentroid imageService.measurePointOrCentroid()} methods to perform imagery
|
|
@@ -69791,19 +70564,6 @@ declare namespace __esri {
|
|
|
69791
70564
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#is3D Read more...}
|
|
69792
70565
|
*/
|
|
69793
70566
|
is3D: boolean;
|
|
69794
|
-
/**
|
|
69795
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
69796
|
-
* when the measure is computed.
|
|
69797
|
-
*
|
|
69798
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#mosaicRule Read more...}
|
|
69799
|
-
*/
|
|
69800
|
-
declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
|
|
69801
|
-
/**
|
|
69802
|
-
* Specifies the pixel size.
|
|
69803
|
-
*
|
|
69804
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#pixelSize Read more...}
|
|
69805
|
-
*/
|
|
69806
|
-
declare pixelSize: BaseImageMeasureParameters["pixelSize"];
|
|
69807
70567
|
/**
|
|
69808
70568
|
* The string value representing the type of imagery mensuration.
|
|
69809
70569
|
*
|
|
@@ -69811,22 +70571,6 @@ declare namespace __esri {
|
|
|
69811
70571
|
*/
|
|
69812
70572
|
readonly type: "point";
|
|
69813
70573
|
|
|
69814
|
-
/**
|
|
69815
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
69816
|
-
*
|
|
69817
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#toJSON Read more...}
|
|
69818
|
-
*/
|
|
69819
|
-
toJSON(): any;
|
|
69820
|
-
|
|
69821
|
-
/**
|
|
69822
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
69823
|
-
* generated from an ArcGIS product.
|
|
69824
|
-
*
|
|
69825
|
-
* @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.
|
|
69826
|
-
*
|
|
69827
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#fromJSON Read more...}
|
|
69828
|
-
*/
|
|
69829
|
-
static fromJSON(json: any): any;
|
|
69830
70574
|
static fromJSON(json: any): ImagePointParameters;
|
|
69831
70575
|
}
|
|
69832
70576
|
|
|
@@ -69846,24 +70590,9 @@ declare namespace __esri {
|
|
|
69846
70590
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#is3D Read more...}
|
|
69847
70591
|
*/
|
|
69848
70592
|
is3D?: boolean;
|
|
69849
|
-
/**
|
|
69850
|
-
* Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
|
|
69851
|
-
* when the measure is computed.
|
|
69852
|
-
*
|
|
69853
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#mosaicRule Read more...}
|
|
69854
|
-
*/
|
|
69855
|
-
mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
|
|
69856
|
-
/**
|
|
69857
|
-
* Specifies the pixel size.
|
|
69858
|
-
*
|
|
69859
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#pixelSize Read more...}
|
|
69860
|
-
*/
|
|
69861
|
-
pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
|
|
69862
70593
|
}
|
|
69863
70594
|
|
|
69864
|
-
export
|
|
69865
|
-
|
|
69866
|
-
export class ImagePointResult {
|
|
70595
|
+
export class ImagePointResult extends BaseImageMeasureResult {
|
|
69867
70596
|
/**
|
|
69868
70597
|
* Image service point or centroid measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measurePointOrCentroid ImageryLayer.measurePointOrCentroid()}
|
|
69869
70598
|
* or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measurePointOrCentroid imageService.measurePointOrCentroid()} methods resolve successfully.
|
|
@@ -69873,63 +70602,23 @@ declare namespace __esri {
|
|
|
69873
70602
|
|
|
69874
70603
|
constructor(properties?: ImagePointResultProperties);
|
|
69875
70604
|
|
|
69876
|
-
/**
|
|
69877
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
69878
|
-
*
|
|
69879
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#name Read more...}
|
|
69880
|
-
*/
|
|
69881
|
-
declare name: BaseImageMeasureResult["name"];
|
|
69882
70605
|
/**
|
|
69883
70606
|
* The measured point on an image service.
|
|
69884
70607
|
*
|
|
69885
70608
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#point Read more...}
|
|
69886
70609
|
*/
|
|
69887
70610
|
point: Point;
|
|
69888
|
-
/**
|
|
69889
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
69890
|
-
*
|
|
69891
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#sensorName Read more...}
|
|
69892
|
-
*/
|
|
69893
|
-
declare sensorName: BaseImageMeasureResult["sensorName"];
|
|
69894
70611
|
|
|
69895
|
-
/**
|
|
69896
|
-
* Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
|
|
69897
|
-
*
|
|
69898
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#toJSON Read more...}
|
|
69899
|
-
*/
|
|
69900
|
-
toJSON(): any;
|
|
69901
|
-
|
|
69902
|
-
/**
|
|
69903
|
-
* Creates a new instance of this class and initializes it with values from a JSON object
|
|
69904
|
-
* generated from an ArcGIS product.
|
|
69905
|
-
*
|
|
69906
|
-
* @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.
|
|
69907
|
-
*
|
|
69908
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#fromJSON Read more...}
|
|
69909
|
-
*/
|
|
69910
|
-
static fromJSON(json: any): any;
|
|
69911
70612
|
static fromJSON(json: any): ImagePointResult;
|
|
69912
70613
|
}
|
|
69913
70614
|
|
|
69914
70615
|
interface ImagePointResultProperties extends BaseImageMeasureResultProperties {
|
|
69915
|
-
/**
|
|
69916
|
-
* Name of the raster dataset used in the area and height measurement.
|
|
69917
|
-
*
|
|
69918
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#name Read more...}
|
|
69919
|
-
*/
|
|
69920
|
-
name?: BaseImageMeasureResultProperties["name"];
|
|
69921
70616
|
/**
|
|
69922
70617
|
* The measured point on an image service.
|
|
69923
70618
|
*
|
|
69924
70619
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#point Read more...}
|
|
69925
70620
|
*/
|
|
69926
70621
|
point?: PointProperties;
|
|
69927
|
-
/**
|
|
69928
|
-
* Sensor name of the raster dataset used in the area and height measurement.
|
|
69929
|
-
*
|
|
69930
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#sensorName Read more...}
|
|
69931
|
-
*/
|
|
69932
|
-
sensorName?: BaseImageMeasureResultProperties["sensorName"];
|
|
69933
70622
|
}
|
|
69934
70623
|
|
|
69935
70624
|
export interface ImageSample extends Accessor, JSONSupport {}
|
|
@@ -72798,7 +73487,7 @@ declare namespace __esri {
|
|
|
72798
73487
|
*
|
|
72799
73488
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#datumTransformation Read more...}
|
|
72800
73489
|
*/
|
|
72801
|
-
datumTransformation: number |
|
|
73490
|
+
datumTransformation: number | QuerySimpleTransformation | QueryCompositeTransformation;
|
|
72802
73491
|
/**
|
|
72803
73492
|
* Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#geometry geometry} in a spatial query.
|
|
72804
73493
|
*
|
|
@@ -73089,7 +73778,7 @@ declare namespace __esri {
|
|
|
73089
73778
|
*
|
|
73090
73779
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#datumTransformation Read more...}
|
|
73091
73780
|
*/
|
|
73092
|
-
datumTransformation?: number |
|
|
73781
|
+
datumTransformation?: number | QuerySimpleTransformation | QueryCompositeTransformation;
|
|
73093
73782
|
/**
|
|
73094
73783
|
* Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#geometry geometry} in a spatial query.
|
|
73095
73784
|
*
|
|
@@ -73319,6 +74008,10 @@ declare namespace __esri {
|
|
|
73319
74008
|
geoTransforms: CompositeTransformationGeoTransforms[];
|
|
73320
74009
|
}
|
|
73321
74010
|
|
|
74011
|
+
export interface QueryCompositeTransformation {
|
|
74012
|
+
geoTransforms: CompositeTransformationGeoTransforms1[];
|
|
74013
|
+
}
|
|
74014
|
+
|
|
73322
74015
|
export interface QueryQuantizationParameters {
|
|
73323
74016
|
extent?: Extent;
|
|
73324
74017
|
mode?: "view" | "edit";
|
|
@@ -73335,11 +74028,20 @@ declare namespace __esri {
|
|
|
73335
74028
|
wkid: number;
|
|
73336
74029
|
}
|
|
73337
74030
|
|
|
74031
|
+
export interface QuerySimpleTransformation {
|
|
74032
|
+
wkid: number;
|
|
74033
|
+
}
|
|
74034
|
+
|
|
73338
74035
|
export interface CompositeTransformationGeoTransforms {
|
|
73339
74036
|
wkid: number;
|
|
73340
74037
|
transformForward: boolean;
|
|
73341
74038
|
}
|
|
73342
74039
|
|
|
74040
|
+
export interface CompositeTransformationGeoTransforms1 {
|
|
74041
|
+
wkid: number;
|
|
74042
|
+
transformForward: boolean;
|
|
74043
|
+
}
|
|
74044
|
+
|
|
73343
74045
|
export class QueryMixin {
|
|
73344
74046
|
cacheHint: boolean;
|
|
73345
74047
|
distance: number;
|
|
@@ -86909,8 +87611,7 @@ declare namespace __esri {
|
|
|
86909
87611
|
*/
|
|
86910
87612
|
styleOrigin: StyleOrigin;
|
|
86911
87613
|
/**
|
|
86912
|
-
* A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects
|
|
86913
|
-
* used to visualize the graphic or feature.
|
|
87614
|
+
* A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects used to visualize the graphic or feature.
|
|
86914
87615
|
*
|
|
86915
87616
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3D.html#symbolLayers Read more...}
|
|
86916
87617
|
*/
|
|
@@ -86933,8 +87634,7 @@ declare namespace __esri {
|
|
|
86933
87634
|
*/
|
|
86934
87635
|
styleOrigin?: StyleOriginProperties;
|
|
86935
87636
|
/**
|
|
86936
|
-
* A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects
|
|
86937
|
-
* used to visualize the graphic or feature.
|
|
87637
|
+
* A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects used to visualize the graphic or feature.
|
|
86938
87638
|
*
|
|
86939
87639
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3D.html#symbolLayers Read more...}
|
|
86940
87640
|
*/
|
|
@@ -87883,6 +88583,58 @@ declare namespace __esri {
|
|
|
87883
88583
|
order?: "asc" | "desc";
|
|
87884
88584
|
}
|
|
87885
88585
|
|
|
88586
|
+
/**
|
|
88587
|
+
* A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableElement.html AttributeTableElement} classes
|
|
88588
|
+
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
88589
|
+
*
|
|
88590
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html Read more...}
|
|
88591
|
+
*/
|
|
88592
|
+
namespace tablesElements {
|
|
88593
|
+
/**
|
|
88594
|
+
* Attribute table element types.
|
|
88595
|
+
*
|
|
88596
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableElement Read more...}
|
|
88597
|
+
*/
|
|
88598
|
+
export type AttributeTableElement =
|
|
88599
|
+
| __esri.AttributeTableFieldElement
|
|
88600
|
+
| __esri.AttributeTableGroupElement
|
|
88601
|
+
| __esri.AttributeTableRelationshipElement
|
|
88602
|
+
| __esri.AttributeTableAttachmentElement;
|
|
88603
|
+
|
|
88604
|
+
/**
|
|
88605
|
+
* `AttributeTableFieldElement` defines how a feature layer's field participates in the attribute table.
|
|
88606
|
+
*
|
|
88607
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableFieldElement Read more...}
|
|
88608
|
+
*/
|
|
88609
|
+
export type AttributeTableFieldElement = __esri.AttributeTableFieldElement;
|
|
88610
|
+
export const AttributeTableFieldElement: typeof __esri.AttributeTableFieldElement;
|
|
88611
|
+
|
|
88612
|
+
/**
|
|
88613
|
+
* `AttributeTableGroupElement` defines a container that holds a set of attribute table elements
|
|
88614
|
+
* that can be displayed together.
|
|
88615
|
+
*
|
|
88616
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableGroupElement Read more...}
|
|
88617
|
+
*/
|
|
88618
|
+
export type AttributeTableGroupElement = __esri.AttributeTableGroupElement;
|
|
88619
|
+
export const AttributeTableGroupElement: typeof __esri.AttributeTableGroupElement;
|
|
88620
|
+
|
|
88621
|
+
/**
|
|
88622
|
+
* `AttributeTableRelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
|
|
88623
|
+
*
|
|
88624
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableRelationshipElement Read more...}
|
|
88625
|
+
*/
|
|
88626
|
+
export type AttributeTableRelationshipElement = __esri.AttributeTableRelationshipElement;
|
|
88627
|
+
export const AttributeTableRelationshipElement: typeof __esri.AttributeTableRelationshipElement;
|
|
88628
|
+
|
|
88629
|
+
/**
|
|
88630
|
+
* `AttributeTableAttachmentElement` defines how one or more attachments can participate in the attribute table.
|
|
88631
|
+
*
|
|
88632
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableAttachmentElement Read more...}
|
|
88633
|
+
*/
|
|
88634
|
+
export type AttributeTableAttachmentElement = __esri.AttributeTableAttachmentElement;
|
|
88635
|
+
export const AttributeTableAttachmentElement: typeof __esri.AttributeTableAttachmentElement;
|
|
88636
|
+
}
|
|
88637
|
+
|
|
87886
88638
|
export class AttributeTableAttachmentElement extends AttributeTableElement {
|
|
87887
88639
|
/**
|
|
87888
88640
|
* An `AttributeTableAttachmentElement` defines how attachments display within a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
|
|
@@ -88119,14 +88871,44 @@ declare namespace __esri {
|
|
|
88119
88871
|
}
|
|
88120
88872
|
|
|
88121
88873
|
/**
|
|
88122
|
-
*
|
|
88123
|
-
* when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
|
|
88874
|
+
* `AttributeTableAttachmentElement` defines how one or more attachments can participate in the attribute table.
|
|
88124
88875
|
*
|
|
88125
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-
|
|
88876
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableAttachmentElement Read more...}
|
|
88126
88877
|
*/
|
|
88127
|
-
|
|
88878
|
+
export type elementsAttributeTableAttachmentElement = AttributeTableAttachmentElement;
|
|
88128
88879
|
|
|
88129
|
-
|
|
88880
|
+
/**
|
|
88881
|
+
* Attribute table element types.
|
|
88882
|
+
*
|
|
88883
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableElement Read more...}
|
|
88884
|
+
*/
|
|
88885
|
+
export type elementsAttributeTableElement =
|
|
88886
|
+
| AttributeTableFieldElement
|
|
88887
|
+
| AttributeTableGroupElement
|
|
88888
|
+
| AttributeTableRelationshipElement
|
|
88889
|
+
| AttributeTableAttachmentElement;
|
|
88890
|
+
|
|
88891
|
+
/**
|
|
88892
|
+
* `AttributeTableFieldElement` defines how a feature layer's field participates in the attribute table.
|
|
88893
|
+
*
|
|
88894
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableFieldElement Read more...}
|
|
88895
|
+
*/
|
|
88896
|
+
export type elementsAttributeTableFieldElement = AttributeTableFieldElement;
|
|
88897
|
+
|
|
88898
|
+
/**
|
|
88899
|
+
* `AttributeTableGroupElement` defines a container that holds a set of attribute table elements
|
|
88900
|
+
* that can be displayed together.
|
|
88901
|
+
*
|
|
88902
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableGroupElement Read more...}
|
|
88903
|
+
*/
|
|
88904
|
+
export type elementsAttributeTableGroupElement = AttributeTableGroupElement;
|
|
88905
|
+
|
|
88906
|
+
/**
|
|
88907
|
+
* `AttributeTableRelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
|
|
88908
|
+
*
|
|
88909
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableRelationshipElement Read more...}
|
|
88910
|
+
*/
|
|
88911
|
+
export type elementsAttributeTableRelationshipElement = AttributeTableRelationshipElement;
|
|
88130
88912
|
|
|
88131
88913
|
export interface TimeExtent extends Accessor, JSONSupport {}
|
|
88132
88914
|
|
|
@@ -92454,6 +93236,20 @@ declare namespace __esri {
|
|
|
92454
93236
|
query?: Query | QueryProperties,
|
|
92455
93237
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
92456
93238
|
): Promise<FeatureSet>;
|
|
93239
|
+
/**
|
|
93240
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
93241
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
93242
|
+
*
|
|
93243
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
93244
|
+
* @param options An object with the following properties.
|
|
93245
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
93246
|
+
*
|
|
93247
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-CatalogFootprintLayerView.html#queryAttributeBins Read more...}
|
|
93248
|
+
*/
|
|
93249
|
+
queryAttributeBins(
|
|
93250
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
93251
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
93252
|
+
): Promise<FeatureSet>;
|
|
92457
93253
|
/**
|
|
92458
93254
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
92459
93255
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -92697,6 +93493,20 @@ declare namespace __esri {
|
|
|
92697
93493
|
query?: Query | QueryProperties,
|
|
92698
93494
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
92699
93495
|
): Promise<FeatureSet>;
|
|
93496
|
+
/**
|
|
93497
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
93498
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
93499
|
+
*
|
|
93500
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
93501
|
+
* @param options An object with the following properties.
|
|
93502
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
93503
|
+
*
|
|
93504
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-CSVLayerView.html#queryAttributeBins Read more...}
|
|
93505
|
+
*/
|
|
93506
|
+
queryAttributeBins(
|
|
93507
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
93508
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
93509
|
+
): Promise<FeatureSet>;
|
|
92700
93510
|
/**
|
|
92701
93511
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
92702
93512
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -92981,6 +93791,20 @@ declare namespace __esri {
|
|
|
92981
93791
|
query?: Query | QueryProperties,
|
|
92982
93792
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
92983
93793
|
): Promise<FeatureSet>;
|
|
93794
|
+
/**
|
|
93795
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
93796
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
93797
|
+
*
|
|
93798
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
93799
|
+
* @param options An object with the following properties.
|
|
93800
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
93801
|
+
*
|
|
93802
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html#queryAttributeBins Read more...}
|
|
93803
|
+
*/
|
|
93804
|
+
queryAttributeBins(
|
|
93805
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
93806
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
93807
|
+
): Promise<FeatureSet>;
|
|
92984
93808
|
/**
|
|
92985
93809
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
92986
93810
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -93113,6 +93937,20 @@ declare namespace __esri {
|
|
|
93113
93937
|
query?: Query | QueryProperties,
|
|
93114
93938
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
93115
93939
|
): Promise<FeatureSet>;
|
|
93940
|
+
/**
|
|
93941
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
93942
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
93943
|
+
*
|
|
93944
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
93945
|
+
* @param options An object with the following properties.
|
|
93946
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
93947
|
+
*
|
|
93948
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#queryAttributeBins Read more...}
|
|
93949
|
+
*/
|
|
93950
|
+
queryAttributeBins(
|
|
93951
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
93952
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
93953
|
+
): Promise<FeatureSet>;
|
|
93116
93954
|
/**
|
|
93117
93955
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
93118
93956
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -93179,6 +94017,10 @@ declare namespace __esri {
|
|
|
93179
94017
|
signal?: AbortSignal;
|
|
93180
94018
|
}
|
|
93181
94019
|
|
|
94020
|
+
export interface FeatureLayerViewMixinQueryAttributeBinsOptions {
|
|
94021
|
+
signal?: AbortSignal;
|
|
94022
|
+
}
|
|
94023
|
+
|
|
93182
94024
|
export interface FeatureLayerViewMixinQueryExtentOptions {
|
|
93183
94025
|
signal?: AbortSignal;
|
|
93184
94026
|
}
|
|
@@ -93311,6 +94153,20 @@ declare namespace __esri {
|
|
|
93311
94153
|
query?: Query | QueryProperties,
|
|
93312
94154
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
93313
94155
|
): Promise<FeatureSet>;
|
|
94156
|
+
/**
|
|
94157
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
94158
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
94159
|
+
*
|
|
94160
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
94161
|
+
* @param options An object with the following properties.
|
|
94162
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
94163
|
+
*
|
|
94164
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-GeoJSONLayerView.html#queryAttributeBins Read more...}
|
|
94165
|
+
*/
|
|
94166
|
+
queryAttributeBins(
|
|
94167
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
94168
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
94169
|
+
): Promise<FeatureSet>;
|
|
93314
94170
|
/**
|
|
93315
94171
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
93316
94172
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -93907,6 +94763,20 @@ declare namespace __esri {
|
|
|
93907
94763
|
query?: Query | QueryProperties,
|
|
93908
94764
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
93909
94765
|
): Promise<FeatureSet>;
|
|
94766
|
+
/**
|
|
94767
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
94768
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
94769
|
+
*
|
|
94770
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
94771
|
+
* @param options An object with the following properties.
|
|
94772
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
94773
|
+
*
|
|
94774
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-OGCFeatureLayerView.html#queryAttributeBins Read more...}
|
|
94775
|
+
*/
|
|
94776
|
+
queryAttributeBins(
|
|
94777
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
94778
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
94779
|
+
): Promise<FeatureSet>;
|
|
93910
94780
|
/**
|
|
93911
94781
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
93912
94782
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -94612,6 +95482,20 @@ declare namespace __esri {
|
|
|
94612
95482
|
query?: Query | QueryProperties,
|
|
94613
95483
|
options?: FeatureLayerViewMixinQueryAggregatesOptions,
|
|
94614
95484
|
): Promise<FeatureSet>;
|
|
95485
|
+
/**
|
|
95486
|
+
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
|
|
95487
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
|
|
95488
|
+
*
|
|
95489
|
+
* @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
|
|
95490
|
+
* @param options An object with the following properties.
|
|
95491
|
+
* @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
|
|
95492
|
+
*
|
|
95493
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-WFSLayerView.html#queryAttributeBins Read more...}
|
|
95494
|
+
*/
|
|
95495
|
+
queryAttributeBins(
|
|
95496
|
+
binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
|
|
95497
|
+
options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
|
|
95498
|
+
): Promise<FeatureSet>;
|
|
94615
95499
|
/**
|
|
94616
95500
|
* Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
|
|
94617
95501
|
* returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
|
|
@@ -95965,6 +96849,7 @@ declare namespace __esri {
|
|
|
95965
96849
|
| (RainyWeatherProperties & { type: "rainy" })
|
|
95966
96850
|
| (SnowyWeatherProperties & { type: "snowy" })
|
|
95967
96851
|
| (FoggyWeatherProperties & { type: "foggy" });
|
|
96852
|
+
weatherAvailable?: boolean;
|
|
95968
96853
|
starsEnabled?: boolean;
|
|
95969
96854
|
}
|
|
95970
96855
|
|
|
@@ -95973,6 +96858,7 @@ declare namespace __esri {
|
|
|
95973
96858
|
lighting?: SunLighting | VirtualLighting;
|
|
95974
96859
|
atmosphereEnabled?: boolean;
|
|
95975
96860
|
weather?: SunnyWeather | CloudyWeather | RainyWeather | SnowyWeather | FoggyWeather;
|
|
96861
|
+
weatherAvailable?: boolean;
|
|
95976
96862
|
starsEnabled?: boolean;
|
|
95977
96863
|
}
|
|
95978
96864
|
|
|
@@ -96370,7 +97256,7 @@ declare namespace __esri {
|
|
|
96370
97256
|
*/
|
|
96371
97257
|
allLayerViews: Collection<LayerView>;
|
|
96372
97258
|
/**
|
|
96373
|
-
* Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-
|
|
97259
|
+
* Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#goTo goTo()}.
|
|
96374
97260
|
*
|
|
96375
97261
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#animation Read more...}
|
|
96376
97262
|
*/
|
|
@@ -96817,7 +97703,7 @@ declare namespace __esri {
|
|
|
96817
97703
|
*/
|
|
96818
97704
|
allLayerViews?: CollectionProperties<LayerViewProperties>;
|
|
96819
97705
|
/**
|
|
96820
|
-
* Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-
|
|
97706
|
+
* Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#goTo goTo()}.
|
|
96821
97707
|
*
|
|
96822
97708
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#animation Read more...}
|
|
96823
97709
|
*/
|
|
@@ -99230,7 +100116,7 @@ declare namespace __esri {
|
|
|
99230
100116
|
|
|
99231
100117
|
relationshipCount: number;
|
|
99232
100118
|
|
|
99233
|
-
addRecords(records: IdTypePair[]): Promise<void>;
|
|
100119
|
+
addRecords(records: IdTypePair[], options?: AddRecordsOptions): Promise<void>;
|
|
99234
100120
|
|
|
99235
100121
|
applyLayout(
|
|
99236
100122
|
layoutMode:
|
|
@@ -99248,18 +100134,18 @@ declare namespace __esri {
|
|
|
99248
100134
|
|
|
99249
100135
|
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
99250
100136
|
|
|
99251
|
-
connectBetweenEntities(entityIds: string[]): IdTypePair[];
|
|
100137
|
+
connectBetweenEntities(entityIds: string[], options?: GeneralOptions): IdTypePair[];
|
|
99252
100138
|
|
|
99253
|
-
connectFromEntities(entityIds: string[]): IdTypePair[];
|
|
100139
|
+
connectFromEntities(entityIds: string[], options?: GeneralOptions): IdTypePair[];
|
|
99254
100140
|
/**
|
|
99255
100141
|
* todo: more doc description.
|
|
99256
100142
|
*
|
|
99257
100143
|
* @param nodeIds Array of entity IDs to expand from
|
|
99258
|
-
* @param
|
|
100144
|
+
* @param options
|
|
99259
100145
|
*
|
|
99260
100146
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand Read more...}
|
|
99261
100147
|
*/
|
|
99262
|
-
expand(nodeIds: string[],
|
|
100148
|
+
expand(nodeIds: string[], options?: ExpandOptions): IdTypePair[];
|
|
99263
100149
|
|
|
99264
100150
|
getMemberIdsByType(typeName: string): string[];
|
|
99265
100151
|
|
|
@@ -99288,12 +100174,26 @@ declare namespace __esri {
|
|
|
99288
100174
|
relationshipCount?: number;
|
|
99289
100175
|
}
|
|
99290
100176
|
|
|
100177
|
+
export interface AddRecordsOptions {
|
|
100178
|
+
signal?: AbortSignal;
|
|
100179
|
+
cascadeAddRelationshipEndNodes?: boolean;
|
|
100180
|
+
}
|
|
100181
|
+
|
|
99291
100182
|
export interface ApplyNewLayoutOptions {
|
|
99292
100183
|
lockedNodeLocations?: globalThis.Map<string, Point>;
|
|
99293
100184
|
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
99294
100185
|
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
99295
100186
|
}
|
|
99296
100187
|
|
|
100188
|
+
export interface ExpandOptions {
|
|
100189
|
+
relationshipTypeNames?: string[];
|
|
100190
|
+
signal?: AbortSignal;
|
|
100191
|
+
}
|
|
100192
|
+
|
|
100193
|
+
export interface GeneralOptions {
|
|
100194
|
+
signal?: AbortSignal;
|
|
100195
|
+
}
|
|
100196
|
+
|
|
99297
100197
|
export class WebMap extends WebDocument2D {
|
|
99298
100198
|
/**
|
|
99299
100199
|
* Loads a [WebMap](https://doc.arcgis.com/en/arcgis-online/create-maps/make-your-first-map.htm)
|
|
@@ -102051,7 +102951,9 @@ declare namespace __esri {
|
|
|
102051
102951
|
visibleElements?: BasemapLayerListVisibleElements;
|
|
102052
102952
|
}
|
|
102053
102953
|
|
|
102054
|
-
export
|
|
102954
|
+
export interface BasemapLayerListViewModel extends Accessor, Evented {}
|
|
102955
|
+
|
|
102956
|
+
export class BasemapLayerListViewModel {
|
|
102055
102957
|
/**
|
|
102056
102958
|
* Provides logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html BasemapLayerList} widget.
|
|
102057
102959
|
*
|
|
@@ -102122,6 +103024,33 @@ declare namespace __esri {
|
|
|
102122
103024
|
*/
|
|
102123
103025
|
view: MapView | SceneView;
|
|
102124
103026
|
|
|
103027
|
+
/**
|
|
103028
|
+
* Emits an event on the instance.
|
|
103029
|
+
*
|
|
103030
|
+
* @param type The name of the event.
|
|
103031
|
+
* @param event The event payload.
|
|
103032
|
+
*
|
|
103033
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#emit Read more...}
|
|
103034
|
+
*/
|
|
103035
|
+
emit(type: string, event?: any): boolean;
|
|
103036
|
+
/**
|
|
103037
|
+
* Indicates whether there is an event listener on the instance that matches
|
|
103038
|
+
* the provided event name.
|
|
103039
|
+
*
|
|
103040
|
+
* @param type The name of the event.
|
|
103041
|
+
*
|
|
103042
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#hasEventListener Read more...}
|
|
103043
|
+
*/
|
|
103044
|
+
hasEventListener(type: string): boolean;
|
|
103045
|
+
/**
|
|
103046
|
+
* Registers an event handler on the instance.
|
|
103047
|
+
*
|
|
103048
|
+
* @param type An {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#events-summary event} or an array of events to listen for.
|
|
103049
|
+
* @param listener The function to call when the event fires.
|
|
103050
|
+
*
|
|
103051
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#on Read more...}
|
|
103052
|
+
*/
|
|
103053
|
+
on(type: string | string[], listener: EventHandler): IHandle;
|
|
102125
103054
|
/**
|
|
102126
103055
|
* Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#event-trigger-action trigger-action} event and executes
|
|
102127
103056
|
* the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
|
|
@@ -102665,7 +103594,7 @@ declare namespace __esri {
|
|
|
102665
103594
|
visibleElements?: BookmarksVisibleElements;
|
|
102666
103595
|
}
|
|
102667
103596
|
|
|
102668
|
-
export interface BookmarksViewModel extends Accessor, GoTo {}
|
|
103597
|
+
export interface BookmarksViewModel extends Accessor, GoTo, Evented {}
|
|
102669
103598
|
|
|
102670
103599
|
export class BookmarksViewModel {
|
|
102671
103600
|
/**
|
|
@@ -102746,6 +103675,15 @@ declare namespace __esri {
|
|
|
102746
103675
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#editBookmark Read more...}
|
|
102747
103676
|
*/
|
|
102748
103677
|
editBookmark(bookmark: Bookmark, options?: BookmarkOptions): Promise<Bookmark>;
|
|
103678
|
+
/**
|
|
103679
|
+
* Emits an event on the instance.
|
|
103680
|
+
*
|
|
103681
|
+
* @param type The name of the event.
|
|
103682
|
+
* @param event The event payload.
|
|
103683
|
+
*
|
|
103684
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#emit Read more...}
|
|
103685
|
+
*/
|
|
103686
|
+
emit(type: string, event?: any): boolean;
|
|
102749
103687
|
/**
|
|
102750
103688
|
* Zoom to a specific bookmark.
|
|
102751
103689
|
*
|
|
@@ -102754,6 +103692,24 @@ declare namespace __esri {
|
|
|
102754
103692
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#goTo Read more...}
|
|
102755
103693
|
*/
|
|
102756
103694
|
goTo(bookmark: Bookmark): Promise<any>;
|
|
103695
|
+
/**
|
|
103696
|
+
* Indicates whether there is an event listener on the instance that matches
|
|
103697
|
+
* the provided event name.
|
|
103698
|
+
*
|
|
103699
|
+
* @param type The name of the event.
|
|
103700
|
+
*
|
|
103701
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#hasEventListener Read more...}
|
|
103702
|
+
*/
|
|
103703
|
+
hasEventListener(type: string): boolean;
|
|
103704
|
+
/**
|
|
103705
|
+
* Registers an event handler on the instance.
|
|
103706
|
+
*
|
|
103707
|
+
* @param type An {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#events-summary event} or an array of events to listen for.
|
|
103708
|
+
* @param listener The function to call when the event fires.
|
|
103709
|
+
*
|
|
103710
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#on Read more...}
|
|
103711
|
+
*/
|
|
103712
|
+
on(type: string | string[], listener: EventHandler): IHandle;
|
|
102757
103713
|
}
|
|
102758
103714
|
|
|
102759
103715
|
interface BookmarksViewModelProperties extends GoToProperties {
|
|
@@ -103427,7 +104383,9 @@ declare namespace __esri {
|
|
|
103427
104383
|
visibleElements?: CatalogLayerListVisibleElements;
|
|
103428
104384
|
}
|
|
103429
104385
|
|
|
103430
|
-
export
|
|
104386
|
+
export interface CatalogLayerListViewModel extends Accessor, Evented {}
|
|
104387
|
+
|
|
104388
|
+
export class CatalogLayerListViewModel {
|
|
103431
104389
|
/**
|
|
103432
104390
|
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html CatalogLayerList} widget.
|
|
103433
104391
|
*
|
|
@@ -103493,6 +104451,24 @@ declare namespace __esri {
|
|
|
103493
104451
|
*/
|
|
103494
104452
|
view: MapView | SceneView;
|
|
103495
104453
|
|
|
104454
|
+
/**
|
|
104455
|
+
* Emits an event on the instance.
|
|
104456
|
+
*
|
|
104457
|
+
* @param type The name of the event.
|
|
104458
|
+
* @param event The event payload.
|
|
104459
|
+
*
|
|
104460
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#emit Read more...}
|
|
104461
|
+
*/
|
|
104462
|
+
emit(type: string, event?: any): boolean;
|
|
104463
|
+
/**
|
|
104464
|
+
* Indicates whether there is an event listener on the instance that matches
|
|
104465
|
+
* the provided event name.
|
|
104466
|
+
*
|
|
104467
|
+
* @param type The name of the event.
|
|
104468
|
+
*
|
|
104469
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#hasEventListener Read more...}
|
|
104470
|
+
*/
|
|
104471
|
+
hasEventListener(type: string): boolean;
|
|
103496
104472
|
/**
|
|
103497
104473
|
* Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#event-trigger-action trigger-action} event and executes
|
|
103498
104474
|
* the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
|
|
@@ -115346,7 +116322,9 @@ declare namespace __esri {
|
|
|
115346
116322
|
visibleElements?: LayerListVisibleElements;
|
|
115347
116323
|
}
|
|
115348
116324
|
|
|
115349
|
-
export
|
|
116325
|
+
export interface LayerListViewModel extends Accessor, Evented {}
|
|
116326
|
+
|
|
116327
|
+
export class LayerListViewModel {
|
|
115350
116328
|
/**
|
|
115351
116329
|
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html LayerList} widget.
|
|
115352
116330
|
*
|
|
@@ -115403,6 +116381,24 @@ declare namespace __esri {
|
|
|
115403
116381
|
*/
|
|
115404
116382
|
view: MapView | SceneView;
|
|
115405
116383
|
|
|
116384
|
+
/**
|
|
116385
|
+
* Emits an event on the instance.
|
|
116386
|
+
*
|
|
116387
|
+
* @param type The name of the event.
|
|
116388
|
+
* @param event The event payload.
|
|
116389
|
+
*
|
|
116390
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-LayerListViewModel.html#emit Read more...}
|
|
116391
|
+
*/
|
|
116392
|
+
emit(type: string, event?: any): boolean;
|
|
116393
|
+
/**
|
|
116394
|
+
* Indicates whether there is an event listener on the instance that matches
|
|
116395
|
+
* the provided event name.
|
|
116396
|
+
*
|
|
116397
|
+
* @param type The name of the event.
|
|
116398
|
+
*
|
|
116399
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-LayerListViewModel.html#hasEventListener Read more...}
|
|
116400
|
+
*/
|
|
116401
|
+
hasEventListener(type: string): boolean;
|
|
115406
116402
|
/**
|
|
115407
116403
|
* Moves a list item from one position to another in the LayerList widget.
|
|
115408
116404
|
*
|
|
@@ -126621,7 +127617,9 @@ declare namespace __esri {
|
|
|
126621
127617
|
*/
|
|
126622
127618
|
export type TableListItemPanelContent = string | Widget | HTMLElement;
|
|
126623
127619
|
|
|
126624
|
-
export
|
|
127620
|
+
export interface TableListViewModel extends Accessor, Evented {}
|
|
127621
|
+
|
|
127622
|
+
export class TableListViewModel {
|
|
126625
127623
|
/**
|
|
126626
127624
|
* Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget.
|
|
126627
127625
|
*
|
|
@@ -126686,6 +127684,24 @@ declare namespace __esri {
|
|
|
126686
127684
|
*/
|
|
126687
127685
|
readonly totalItems: number;
|
|
126688
127686
|
|
|
127687
|
+
/**
|
|
127688
|
+
* Emits an event on the instance.
|
|
127689
|
+
*
|
|
127690
|
+
* @param type The name of the event.
|
|
127691
|
+
* @param event The event payload.
|
|
127692
|
+
*
|
|
127693
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#emit Read more...}
|
|
127694
|
+
*/
|
|
127695
|
+
emit(type: string, event?: any): boolean;
|
|
127696
|
+
/**
|
|
127697
|
+
* Indicates whether there is an event listener on the instance that matches
|
|
127698
|
+
* the provided event name.
|
|
127699
|
+
*
|
|
127700
|
+
* @param type The name of the event.
|
|
127701
|
+
*
|
|
127702
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#hasEventListener Read more...}
|
|
127703
|
+
*/
|
|
127704
|
+
hasEventListener(type: string): boolean;
|
|
126689
127705
|
/**
|
|
126690
127706
|
* Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#event-trigger-action trigger-action} event and executes
|
|
126691
127707
|
* the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
|
|
@@ -135641,6 +136657,36 @@ declare module "esri/rest/support/AddressCandidate" {
|
|
|
135641
136657
|
export = AddressCandidate;
|
|
135642
136658
|
}
|
|
135643
136659
|
|
|
136660
|
+
declare module "esri/rest/support/AttributeBinsQuery" {
|
|
136661
|
+
import AttributeBinsQuery = __esri.AttributeBinsQuery;
|
|
136662
|
+
export = AttributeBinsQuery;
|
|
136663
|
+
}
|
|
136664
|
+
|
|
136665
|
+
declare module "esri/rest/support/AutoIntervalBinParameters" {
|
|
136666
|
+
import AutoIntervalBinParameters = __esri.AutoIntervalBinParameters;
|
|
136667
|
+
export = AutoIntervalBinParameters;
|
|
136668
|
+
}
|
|
136669
|
+
|
|
136670
|
+
declare module "esri/rest/support/FixedBoundariesBinParameters" {
|
|
136671
|
+
import FixedBoundariesBinParameters = __esri.FixedBoundariesBinParameters;
|
|
136672
|
+
export = FixedBoundariesBinParameters;
|
|
136673
|
+
}
|
|
136674
|
+
|
|
136675
|
+
declare module "esri/rest/support/FixedIntervalBinParameters" {
|
|
136676
|
+
import FixedIntervalBinParameters = __esri.FixedIntervalBinParameters;
|
|
136677
|
+
export = FixedIntervalBinParameters;
|
|
136678
|
+
}
|
|
136679
|
+
|
|
136680
|
+
declare module "esri/rest/support/DateBinParameters" {
|
|
136681
|
+
import DateBinParameters = __esri.DateBinParameters;
|
|
136682
|
+
export = DateBinParameters;
|
|
136683
|
+
}
|
|
136684
|
+
|
|
136685
|
+
declare module "esri/rest/support/DateBinTimeInterval" {
|
|
136686
|
+
import DateBinTimeInterval = __esri.DateBinTimeInterval;
|
|
136687
|
+
export = DateBinTimeInterval;
|
|
136688
|
+
}
|
|
136689
|
+
|
|
135644
136690
|
declare module "esri/rest/support/AlgorithmicColorRamp" {
|
|
135645
136691
|
import AlgorithmicColorRamp = __esri.AlgorithmicColorRamp;
|
|
135646
136692
|
export = AlgorithmicColorRamp;
|
|
@@ -135661,6 +136707,16 @@ declare module "esri/rest/support/AttachmentQuery" {
|
|
|
135661
136707
|
export = AttachmentQuery;
|
|
135662
136708
|
}
|
|
135663
136709
|
|
|
136710
|
+
declare module "esri/rest/support/BaseImageMeasureParameters" {
|
|
136711
|
+
import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
|
|
136712
|
+
export = BaseImageMeasureParameters;
|
|
136713
|
+
}
|
|
136714
|
+
|
|
136715
|
+
declare module "esri/rest/support/BaseImageMeasureResult" {
|
|
136716
|
+
import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
|
|
136717
|
+
export = BaseImageMeasureResult;
|
|
136718
|
+
}
|
|
136719
|
+
|
|
135664
136720
|
declare module "esri/rest/support/BufferParameters" {
|
|
135665
136721
|
import BufferParameters = __esri.BufferParameters;
|
|
135666
136722
|
export = BufferParameters;
|
|
@@ -138106,16 +139162,6 @@ declare module "esri/renderers/mixins/VisualVariablesMixin" {
|
|
|
138106
139162
|
export = VisualVariablesMixin;
|
|
138107
139163
|
}
|
|
138108
139164
|
|
|
138109
|
-
declare module "esri/rest/support/BaseImageMeasureParameters" {
|
|
138110
|
-
import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
|
|
138111
|
-
export = BaseImageMeasureParameters;
|
|
138112
|
-
}
|
|
138113
|
-
|
|
138114
|
-
declare module "esri/rest/support/BaseImageMeasureResult" {
|
|
138115
|
-
import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
|
|
138116
|
-
export = BaseImageMeasureResult;
|
|
138117
|
-
}
|
|
138118
|
-
|
|
138119
139165
|
declare module "esri/rest/support/QueryMixin" {
|
|
138120
139166
|
type QueryMixin = __esri.QueryMixin;
|
|
138121
139167
|
export = QueryMixin;
|
|
@@ -138202,7 +139248,7 @@ declare module "esri/core/promiseUtils" {
|
|
|
138202
139248
|
}
|
|
138203
139249
|
|
|
138204
139250
|
declare module "esri/core/quantity" {
|
|
138205
|
-
|
|
139251
|
+
import quantity = __esri.quantity;
|
|
138206
139252
|
export = quantity;
|
|
138207
139253
|
}
|
|
138208
139254
|
|
|
@@ -138241,17 +139287,12 @@ declare module "esri/core/workers" {
|
|
|
138241
139287
|
export = workers;
|
|
138242
139288
|
}
|
|
138243
139289
|
|
|
138244
|
-
declare module "esri/form/elements/inputs
|
|
139290
|
+
declare module "esri/form/elements/inputs" {
|
|
138245
139291
|
import inputs = __esri.inputs;
|
|
138246
139292
|
export = inputs;
|
|
138247
139293
|
}
|
|
138248
139294
|
|
|
138249
|
-
declare module "esri/form/elements
|
|
138250
|
-
import supportInputs = __esri.supportInputs;
|
|
138251
|
-
export = supportInputs;
|
|
138252
|
-
}
|
|
138253
|
-
|
|
138254
|
-
declare module "esri/form/support/elements" {
|
|
139295
|
+
declare module "esri/form/elements" {
|
|
138255
139296
|
import elements = __esri.elements;
|
|
138256
139297
|
export = elements;
|
|
138257
139298
|
}
|
|
@@ -139051,9 +140092,9 @@ declare module "esri/symbols/support/symbolUtils" {
|
|
|
139051
140092
|
export = symbolUtils;
|
|
139052
140093
|
}
|
|
139053
140094
|
|
|
139054
|
-
declare module "esri/tables/
|
|
139055
|
-
import
|
|
139056
|
-
export =
|
|
140095
|
+
declare module "esri/tables/elements" {
|
|
140096
|
+
import tablesElements = __esri.tablesElements;
|
|
140097
|
+
export = tablesElements;
|
|
139057
140098
|
}
|
|
139058
140099
|
|
|
139059
140100
|
declare module "esri/versionManagement/utils" {
|
|
@@ -139171,11 +140212,6 @@ declare module "esri/applications/Components/reactiveUtils" {
|
|
|
139171
140212
|
export = ComponentsReactiveUtils;
|
|
139172
140213
|
}
|
|
139173
140214
|
|
|
139174
|
-
declare module "esri/applications/Components/sceneViewUtils" {
|
|
139175
|
-
import sceneViewUtils = __esri.sceneViewUtils;
|
|
139176
|
-
export = sceneViewUtils;
|
|
139177
|
-
}
|
|
139178
|
-
|
|
139179
140215
|
declare module "esri/applications/Components/SelectionOperation" {
|
|
139180
140216
|
import SelectionOperation = __esri.SelectionOperation;
|
|
139181
140217
|
export = SelectionOperation;
|