import * as identify from "@arcgis/core/rest/identify.js";
const identify = await $arcgis.import("@arcgis/core/rest/identify.js");
@arcgis/core/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 |
|---|---|---|---|
Promise<Object> | Sends a request to the ArcGIS REST map service resource to identify features based on the IdentifyParameters specified. | identify |
Method Details
-
identify
Methodidentify(url, params, requestOptions){Promise<Object>} -
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 RequestOptionsoptionalAdditional 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 maxRecordCountis configured for a service,exceededTransferLimitwill betrueif an identify matches more than themaxRecordCountfeatures. It will befalseotherwise. Supported by ArcGIS Server version 10.1 and later.