Find routes between two or more locations and optionally get driving directions. The RouteTask uses ArcGIS Server network analysis services to calculate routes. Network analysis services allow you to solve simple routing problems as well as complex ones that take into account multiple stops, barriers, and time windows.
To work directly with the RouteTask, the basic pattern is:
- Create the task
- Configure the parameters
- Solve the route and then specify what to do with its results and handle any errors that may be returned.
Constructors
new RouteTask(properties)
properties Object See the properties for a list of all the properties that may be passed into the constructor. |
Property Overview
Name | Type | Summary | |
---|---|---|---|
String | The name of the class. more details | more details | |
Object | The options to be used for data requests. more details | more details | |
String | URL to the ArcGIS Server REST resource that represents a network analysis service. more details | more details |
Property Details
declaredClassStringreadonly
The name of the class. The declared class name is formatted as
esri.folder.className
.requestOptionsObject
The options to be used for data requests. These options can also be controlled through the
requestOptions
method parameter.urlString
URL to the ArcGIS Server REST resource that represents a network analysis service.
Method Overview
Name | Return Type | Summary | |
---|---|---|---|
Promise | Solves the route against the route layer with the route parameters. more details | more details |
Method Details
solve(params, requestOptions){Promise}
Solves the route against the route layer with the route parameters.
Parameters:params RouteParametersRoute parameters used as input to generate the route.
optionalrequestOptions ObjectAdditional options to be used for the data request (will override requestOptions defined during construction).
Returns:Type Description Promise When resolved, returns an instance of RouteResult.