| Package | com.esri.ags.tasks |
| Class | public class RouteSolveResult |
Note: RouteSolveResult, and other routing related classes, were added in version 1.2 and requires ArcGIS Server 9.3.1 or above (with a "route" layer).
See also
| Property | Defined by | ||
|---|---|---|---|
| barriers : Array
The barriers are an array of graphics.
| RouteSolveResult | ||
| messages : Array
The solution messages (if returned in the server response) are an array of GPMessage instances.
| RouteSolveResult | ||
| routeResults : Array
The route results is an array of RouteResult instances.
| RouteSolveResult | ||
| barriers | property |
public var barriers:ArrayThe barriers are an array of graphics. They are returned only if RouteParameters.returnBarriers was set to true (which is not the default). If you send in the barriers as a featureSet (instead of using DataLayer), you already have the barriers and might not need to request them back from the server.
This property can be used as the source for data binding.
See also
| messages | property |
public var messages:ArrayThe solution messages (if returned in the server response) are an array of GPMessage instances.
This property can be used as the source for data binding.
See also
| routeResults | property |
public var routeResults:ArrayThe route results is an array of RouteResult instances.
This property can be used as the source for data binding.
See also