Skip to content
import ImageSampleParameters from "@arcgis/core/rest/support/ImageSampleParameters.js";
Inheritance:
ImageSampleParametersAccessor
Since
ArcGIS Maps SDK for JavaScript 4.20

Input parameters for the ImageryLayer.getSamples() method on ImageryLayer.

See also

Constructors

Constructor

Constructor
Parameters
ParameterTypeDescriptionRequired
properties
See the properties table for a list of all the properties that may be passed into the constructor.

Properties

Any properties can be set, retrieved or listened to. See the Watch for changes topic.

declaredClass

readonlyinherited Property
Type
string
Inherited from: Accessor

The name of the class. The declared class name is formatted as esri.folder.className.

geometry

autocast Property
Type
Point | Multipoint | Polyline | Extent | Polygon

Input geometry that defines the locations to be sampled. The geometry can be a Point, Multipoint, Polyline, Extent or a Polygon.

The locations property can be used to set an array of points for convenience if the geometry is a multipoint. If you set the locations property, the array of points will be converted to a multipoint geometry at runtime.

interpolation

Property
Type
RasterInterpolation

Defines how to interpolate pixel values.

Default value
"nearest"

locations

autocast Property
Type
Point[] | null | undefined

When sampling multiple locations, you can use an array of points instead of providing a Multipoint for the geometry property. The array of points will be converted to a multipoint and used as the geometry at runtime. The first point's spatial reference is used in getSamples operation.

mosaicRule

autocast Property
Type
MosaicRule | null | undefined

Specifies the mosaic rule defining the image sort order and selection. When a mosaic rule is not specified, the current settings on the ImageryLayer will be used.

outFields

Property
Type
string[] | null | undefined

The list of fields associated with the rasters to be included in the response.

pixelSize

autocast Property
Type
Point | null | undefined

Specifies the pixel size (or the resolution) that will be used for the sampling. If pixel size is not specified, pixelSize will default to the base resolution of the image service. The raster at the specified pixel size in the mosaic dataset will be used for this operation.

returnFirstValueOnly

Property
Type
boolean

When true, returns the first valid pixel value that meets specified conditions at each sampling point location. When false, all pixel values are returned.

Default value
true

sampleCount

Property
Type
number | null | undefined

Specifies the approximate number of locations to sample from the provided geometry when the input geometry is Polyline, Polygon or Extent. Either sampleDistance or sampleCount is needed to perform densification on the input Polyline to sample points. The unit of the geometry's spatial reference will be used for the densification.

sampleDistance

Property
Type
number | null | undefined

Specifies the distance interval to sample points from the provided geometry when input geometry is Polyline. Either sampleDistance or sampleCount is needed to perform densification on the input Polyline to sample points. The unit of the geometry's spatial reference will be used for the densification.

sliceId

Property
Type
number | null | undefined

Specifies the slice id of a multidimensional raster. This parameter is supported at ArcGIS Server 10.9 and later.

timeExtent

autocast Property
Type
TimeExtent | null | undefined

The time extent for which to perform sampling. This parameter is supported at ArcGIS Server 10.9 and later.

Methods

MethodSignatureClass
fromJSON
inherited static
fromJSON(json: any): any
toJSON
inherited
toJSON(): any

fromJSON

inheritedstatic Method
Signature
fromJSON (json: any): any
Inherited from: JSONSupportMixin

Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product. The object passed into the input json parameter often comes from a response to a query operation in the REST API or a toJSON() method from another ArcGIS product. See the Using fromJSON() topic in the Guide for details and examples of when and how to use this function.

Parameters
ParameterTypeDescriptionRequired
json
any

A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects.

Returns
any

Returns a new instance of this class.

toJSON

inherited Method
Signature
toJSON (): any
Inherited from: JSONSupportMixin

Converts an instance of this class to its ArcGIS portal JSON representation. See the Using fromJSON() guide topic for more information.

Returns
any

The ArcGIS portal JSON representation of an instance of this class.