Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: IdentifyTask

dojo.require("esri.tasks.identify");

Description

(Added at v1.0)
Performs an identify operation on the layers of a map service resource exposed by the ArcGIS Server REST API.

Samples

Search for samples that use this class.

Constructors

NameSummary
new esri.tasks.IdentifyTask(url, options?)Creates a new IdentifyTask object.

Properties

NameTypeSummary
urlStringURL to the ArcGIS Server REST resource that represents a map service.

Methods

NameReturn typeSummary
execute(identifyParameters, callback?, errback?)DeferredSends a request to the ArcGIS REST map service resource to identify features based on the IdentifyParameters specified in the identifyParameters argument.

Events

[ On Style Events | Connect Style Event ]
All On Style event listeners receive a single event object. Additionally, the event object also contains a 'target' property whose value is the object which fired the event.

Events

NameEvent ObjectSummary
complete
{
  results: <IdentifyResult[]>
}
Fires when the identify operation is complete.
error
{
  error: <Error>
}
Fires when an error occurs when executing the task.
Constructor Details

new esri.tasks.IdentifyTask(url, options?)

Creates a new IdentifyTask object. A URL is a required parameter.
Parameters:
<String> url Required URL to the ArcGIS Server REST resource that represents a map service. An example is https://www.example.com/argis/rest/services/Portland/Portland_ESRI_LandBase_AGO/MapServer.
<Object> options Optional Optional parameters. See options list.
options properties:
<String> gdbVersion Optional Specify the geodatabase version to display. (As of v2.7). Requires ArcGIS Server service 10.1 or greater
Sample:
var identify = new esri.tasks.IdentifyTask("https://www.example.com/argis/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer");
Property Details

<String> url

URL to the ArcGIS Server REST resource that represents a map service. To obtain the URL, use Services Directory.
Method Details

execute(identifyParameters, callback?, errback?)

Sends a request to the ArcGIS REST map service resource to identify features based on the IdentifyParameters specified in the identifyParameters argument. On completion, the onComplete event is fired and the optional callback function is invoked.
Return type: Deferred
Parameters:
<IdentifyParameters> identifyParameters Required Specifies the criteria used to identify the features.
<Function> callback Optional The function to call when the method has completed. The arguments in the function are the same as the onComplete event.
<Function> errback Optional An error object is returned if an error occurs on the Server during task execution. (As of v1.3)
Sample:
identifyParams.geometry = geometry;
identifyParams.mapExtent = map.extent;
identify.execute(identifyParams);
Event Details
[ On Style Events | Connect Style Event ]

complete

Fires when the identify operation is complete. Should be used in favor of onComplete. (Added at v3.5)
Event Object Properties:
<IdentifyResult[]> results The result of an identify operation
See also: execute()

error

Fires when an error occurs when executing the task. (Added at v3.6)
Event Object Properties:
<Error> error ArcGIS Server error message returned in a JavaScript error object.
See also: execute()
Show Modal