| Package | com.esri.ags.tasks.supportClasses |
| Class | public class DataLayer |
| Inheritance | DataLayer Object |
| Since : | ArcGIS API for Flex 1.2 |
See also
| Property | Defined By | ||
|---|---|---|---|
| geometry : Geometry
The geometry to apply to the spatial filter. | DataLayer | ||
| name : String
The name of the data layer in the map service that is being referenced. | DataLayer | ||
| spatialRelationship : String = esriSpatialRelIntersects
The spatial relationship to be applied on the input geometry while performing the query. | DataLayer | ||
| where : String
A where clause for the query. | DataLayer | ||
| Constant | Defined By | ||
|---|---|---|---|
| SPATIAL_REL_CONTAINS : String = esriSpatialRelContains [static]
Part or all of a feature from feature class 1 is contained within a feature from feature class 2. | DataLayer | ||
| SPATIAL_REL_CROSSES : String = esriSpatialRelCrosses [static]
The feature from feature class 1 crosses a feature from feature class 2. | DataLayer | ||
| SPATIAL_REL_ENVELOPEINTERSECTS : String = esriSpatialRelEnvelopeIntersects [static]
The envelope of feature class 1 intersects with the envelope of feature class 2. | DataLayer | ||
| SPATIAL_REL_INDEXINTERSECTS : String = esriSpatialRelIndexIntersects [static]
The envelope of the query feature class intersects the index entry for the target feature class. | DataLayer | ||
| SPATIAL_REL_INTERSECTS : String = esriSpatialRelIntersects [static]
Part of a feature from feature class 1 is contained in a feature from feature class 2. | DataLayer | ||
| SPATIAL_REL_OVERLAPS : String = esriSpatialRelOverlaps [static]
Features from feature class 1 overlap features in feature class 2. | DataLayer | ||
| SPATIAL_REL_TOUCHES : String = esriSpatialRelTouches [static]
The feature from feature class 1 touches the border of a feature from feature class 2. | DataLayer | ||
| SPATIAL_REL_WITHIN : String = esriSpatialRelWithin [static]
The feature from feature class 1 is completely enclosed by the feature from feature class 2. | DataLayer | ||
| geometry | property |
public var geometry:GeometryThe geometry to apply to the spatial filter. The spatial relationship as specified by spatialRelationship is applied to this geometry while performing the query. The valid geometry types are Extent, MapPoint, Multipoint, Polyline, or Polygon.
See also
| name | property |
public var name:StringThe name of the data layer in the map service that is being referenced.
| spatialRelationship | property |
public var spatialRelationship:String = esriSpatialRelIntersectsThe spatial relationship to be applied on the input geometry while performing the query.
The default value is SPATIAL_REL_INTERSECTS.
| where | property |
public var where:String
A where clause for the query.
Any valid SQL where clause operating on the fields in the layer is allowed, for example:
query.where = "POP2000 > 350000".
| SPATIAL_REL_CONTAINS | Constant |
public static const SPATIAL_REL_CONTAINS:String = esriSpatialRelContainsPart or all of a feature from feature class 1 is contained within a feature from feature class 2.
| SPATIAL_REL_CROSSES | Constant |
public static const SPATIAL_REL_CROSSES:String = esriSpatialRelCrossesThe feature from feature class 1 crosses a feature from feature class 2.
| SPATIAL_REL_ENVELOPEINTERSECTS | Constant |
public static const SPATIAL_REL_ENVELOPEINTERSECTS:String = esriSpatialRelEnvelopeIntersectsThe envelope of feature class 1 intersects with the envelope of feature class 2.
| SPATIAL_REL_INDEXINTERSECTS | Constant |
public static const SPATIAL_REL_INDEXINTERSECTS:String = esriSpatialRelIndexIntersectsThe envelope of the query feature class intersects the index entry for the target feature class.
| SPATIAL_REL_INTERSECTS | Constant |
public static const SPATIAL_REL_INTERSECTS:String = esriSpatialRelIntersectsPart of a feature from feature class 1 is contained in a feature from feature class 2.
| SPATIAL_REL_OVERLAPS | Constant |
public static const SPATIAL_REL_OVERLAPS:String = esriSpatialRelOverlapsFeatures from feature class 1 overlap features in feature class 2.
| SPATIAL_REL_TOUCHES | Constant |
public static const SPATIAL_REL_TOUCHES:String = esriSpatialRelTouchesThe feature from feature class 1 touches the border of a feature from feature class 2.
| SPATIAL_REL_WITHIN | Constant |
public static const SPATIAL_REL_WITHIN:String = esriSpatialRelWithinThe feature from feature class 1 is completely enclosed by the feature from feature class 2.