Packagecom.esri.bao.tasks.geofence
Classpublic class GeofenceInfoOutput
InheritanceGeofenceInfoOutput Inheritance Object

The GeofenceInfoOutput class specifies results returned by a Geofence Info task. An instance of this class contains an array of IDNamePair type items. Additionally, it can contain a feature record set and an output map image data.

See also

GeofenceInfoTask


Public Properties
 PropertyDefined By
  mapImage : MapImage
[read-only] MapImage returned by a GeofenceInfo task.
GeofenceInfoOutput
  recordSet : FeatureSet
[read-only] Feature record set returned by a GeofenceInfo task.
GeofenceInfoOutput
  stdGeographiesFeatures : Array
[read-only] Array of feature IDs and names returned by a GeofenceInfo task.
GeofenceInfoOutput
Public Methods
 MethodDefined By
  
GeofenceInfoOutput(recordSet:FeatureSet, mapImage:MapImage, stdGeographiesFeatures:Array)
Creates a new instance of the GeofenceInfoOutput class.
GeofenceInfoOutput
Property Detail
mapImageproperty
mapImage:MapImage  [read-only]

MapImage returned by a GeofenceInfo task.


Implementation
    public function get mapImage():MapImage

See also

recordSetproperty 
recordSet:FeatureSet  [read-only]

Feature record set returned by a GeofenceInfo task.


Implementation
    public function get recordSet():FeatureSet

See also

stdGeographiesFeaturesproperty 
stdGeographiesFeatures:Array  [read-only]

Array of feature IDs and names returned by a GeofenceInfo task. This array contains items of the IDNamePair type. If no matching features were found by the query criteria or all of the features were rejected by the geofence constraints, the array will be null.


Implementation
    public function get stdGeographiesFeatures():Array

See also

Constructor Detail
GeofenceInfoOutput()Constructor
public function GeofenceInfoOutput(recordSet:FeatureSet, mapImage:MapImage, stdGeographiesFeatures:Array)

Creates a new instance of the GeofenceInfoOutput class.

Parameters
recordSet:FeatureSet — Feature record set.
 
mapImage:MapImage — Map image.
 
stdGeographiesFeatures:Array — Array of IDNamePair items.

See also