ArcGIS Runtime SDK for iOS
100.15
|
Result returned by AGSRouteTask
.
Instances of this class represent the result of solveRouteWithParameters:completion: (AGSRouteTask)
. The result is a collection of computed routes, barriers used in the computation, and messages generated during the process.
Properties | |
NSString * | directionsLanguage |
NSArray< NSString * > * | messages |
NSArray< AGSPointBarrier * > * | pointBarriers |
NSArray< AGSPolygonBarrier * > * | polygonBarriers |
NSArray< AGSPolylineBarrier * > * | polylineBarriers |
NSArray< AGSRoute * > * | routes |
|
readnonatomiccopy |
The language used when computing directions. For example, en, fr, pt-BR, zh-Hans, etc. The list of languages supported is available in AGSRouteTaskInfo::supportedLanguages
AGSRouteParameters::directionsLanguage
to specify which language to use
|
readnonatomiccopy |
Informational messages that were generated while computing routes.
|
readnonatomiccopy |
Point barriers used in the route computation. Barriers are only returned if AGSRouteParameters::returnPointBarriers
is YES
.
- setPointBarriers: (AGSRouteParameters)
or - setPointBarriersWithFeatureTable:queryParameters: (AGSRouteParameters)
to specify the barriers to use
|
readnonatomiccopy |
Polygon barriers used in the route computation. Barriers are only returned if AGSRouteParameters::returnPolygonBarriers
is YES
.
- setPolygonBarriers: (AGSRouteParameters)
or - setPolygonBarriersWithFeatureTable:queryParameters: (AGSRouteParameters)
to specify the barriers to use
|
readnonatomiccopy |
Polyline barriers used in the route computation. Barriers are only returned if AGSRouteParameters::returnPolylineBarriers
is YES
.
- setPolylineBarriers: (AGSRouteParameters)
or - setPolylineBarriersWithFeatureTable:queryParameters: (AGSRouteParameters)
to specify the barriers to use
|
readnonatomiccopy |
Each elements represents an indepdendent route with its own driving directions. Stops are grouped into diffrent routes based on AGSStop::routeName
. Only available if AGSRouteParameters::returnRoutes
was enabled.
AGSRoute