Packagecom.esri.ags.tasks.supportClasses
Classpublic class ServiceAreaSolveResult
InheritanceServiceAreaSolveResult Inheritance flash.events.EventDispatcher

Since : ArcGIS API for Flex 2.0

The result from a ServiceAreaTask operation.

Note: ServiceAreaSolveResult, and other service area related classes, requires ArcGIS Server 10.0 or above and a "service area" layer. A "service area" layer is a layer of type "esriNAServerServiceAreaLayer".

See also

com.esri.ags.tasks.ServiceAreaTask


Public Properties
 PropertyDefined By
  facilities : Array
Array of facilities.
ServiceAreaSolveResult
  messages : Array
The solution messages (if returned in the server response) are an array of NAMessage instances.
ServiceAreaSolveResult
  pointBarriers : Array
The point barriers is an array of graphic having point geometry.
ServiceAreaSolveResult
  polygonBarriers : Array
The polygon barriers is an array of graphic having polygon geometry.
ServiceAreaSolveResult
  polylineBarriers : Array
The polyline barriers is an array of graphic having polyline geometry.
ServiceAreaSolveResult
  serviceAreaPolygons : Array
Array of service area polygons.
ServiceAreaSolveResult
  serviceAreaPolylines : Array
Array of service area polylines.
ServiceAreaSolveResult
Property Detail
facilitiesproperty
facilities:Array

Array of facilities. A facility is an instance of Graphic.

This property can be used as the source for data binding.


Implementation
    public function get facilities():Array
    public function set facilities(value:Array):void

See also

messagesproperty 
messages:Array

The solution messages (if returned in the server response) are an array of NAMessage instances.

This property can be used as the source for data binding.


Implementation
    public function get messages():Array
    public function set messages(value:Array):void

See also

pointBarriersproperty 
pointBarriers:Array

The point barriers is an array of graphic having point geometry. They are returned only if ServiceAreaParameters.returnPointBarriers was set to true (which is not the default). If you send in the point barriers as a featureSet (instead of using DataLayer), you already have the barrers and might not need to request them back from the server.

This property can be used as the source for data binding.


Implementation
    public function get pointBarriers():Array
    public function set pointBarriers(value:Array):void

See also

polygonBarriersproperty 
polygonBarriers:Array

The polygon barriers is an array of graphic having polygon geometry. They are returned only if ServiceAreaParameters.returnPolygonBarriers was set to true (which is not the default). If you send in the polygon 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.


Implementation
    public function get polygonBarriers():Array
    public function set polygonBarriers(value:Array):void

See also

polylineBarriersproperty 
polylineBarriers:Array

The polyline barriers is an array of graphic having polyline geometry. They are returned only if ServiceAreaParameters.returnPolylineBarriers was set to true (which is not the default). If you send in the polyline 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.


Implementation
    public function get polylineBarriers():Array
    public function set polylineBarriers(value:Array):void

See also

serviceAreaPolygonsproperty 
serviceAreaPolygons:Array

Array of service area polygons. A serviceAreaPolygon is an instance of Graphic.

This property can be used as the source for data binding.


Implementation
    public function get serviceAreaPolygons():Array
    public function set serviceAreaPolygons(value:Array):void

See also

serviceAreaPolylinesproperty 
serviceAreaPolylines:Array

Array of service area polylines. A serviceAreaPolyline is an instance of Graphic.

This property can be used as the source for data binding.


Implementation
    public function get serviceAreaPolylines():Array
    public function set serviceAreaPolylines(value:Array):void

See also