require(["esri/rest/identify"], (identify) => { /* code goes here */ });
import * as identify from "@arcgis/core/rest/identify.js";
esri/rest/identify
Performs an identify operation on the layers of a map service exposed by the ArcGIS Server REST API. Use IdentifyParameters to set the parameters for the identify operation and IdentifyResult to work with the results.
Known Limitations
The identify operation is currently not supported if attempting to be used in a 3D SceneView
Method Overview
Name | Return Type | Summary | Object |
---|---|---|---|
Sends a request to the ArcGIS REST map service resource to identify features based on the IdentifyParameters specified. | identify |
Method Details
-
Sends a request to the ArcGIS REST map service resource to identify features based on the IdentifyParameters specified.
Parametersurl StringURL to the ArcGIS Server REST resource that represents a map service.
params IdentifyParametersSpecifies the criteria used to identify the features.
requestOptions ObjectoptionalAdditional options to be used for the data request.
ReturnsType Description Promise<object> Resolves to an object with the following properties: Property Type Description results IdentifyResult[] An array of objects containing the result features of the Identify task. exceededTransferLimit Boolean If maxRecordCount
is configured for a service,exceededTransferLimit
will betrue
if an identify matches more than themaxRecordCount
features. It will befalse
otherwise. Supported by ArcGIS Server version 10.1 and later.