| Package | com.esri.ags.geometry |
| Class | public class Geometry |
| Inheritance | Geometry Object |
| Subclasses | Extent, MapPoint, Multipoint, Polygon, Polyline |
Default MXML PropertyspatialReference
| Property | Defined By | ||
|---|---|---|---|
| extent : Extent [read-only]
The extent of geometry. | Geometry | ||
| spatialReference : SpatialReference
The spatial reference of the geometry. | Geometry | ||
| type : String [read-only]
The type of geometry. | Geometry | ||
| Constant | Defined By | ||
|---|---|---|---|
| EXTENT : String = esriGeometryEnvelope [static]
An extent is defined by xmin, ymin, xmax and ymax. | Geometry | ||
| MAPPOINT : String = esriGeometryPoint [static]
A MapPoint is a basic point with x (often longitude), y (often latitude) and an optional spatial reference. | Geometry | ||
| MULTIPOINT : String = esriGeometryMultipoint [static]
A multipoint consists of one or more MapPoint(s). | Geometry | ||
| POLYGON : String = esriGeometryPolygon [static]
A polygon is a set of areas with three or more points. | Geometry | ||
| POLYLINE : String = esriGeometryPolyline [static]
A polyline is set of lines with two or more points. | Geometry | ||
| extent | property |
extent:Extent [read-only] The extent of geometry.
Note: the extent property on Geometry was added in version 1.1 of the ArcGIS API for Flex.
public function get extent():Extent| spatialReference | property |
public var spatialReference:SpatialReferenceThe spatial reference of the geometry.
| type | property |
type:String [read-only] The type of geometry.
public function get type():String| EXTENT | Constant |
public static const EXTENT:String = esriGeometryEnvelopeAn extent is defined by xmin, ymin, xmax and ymax.
See also
| MAPPOINT | Constant |
public static const MAPPOINT:String = esriGeometryPointA MapPoint is a basic point with x (often longitude), y (often latitude) and an optional spatial reference.
See also
| MULTIPOINT | Constant |
public static const MULTIPOINT:String = esriGeometryMultipointA multipoint consists of one or more MapPoint(s).
See also
| POLYGON | Constant |
public static const POLYGON:String = esriGeometryPolygonA polygon is a set of areas with three or more points.
See also
| POLYLINE | Constant |
public static const POLYLINE:String = esriGeometryPolylineA polyline is set of lines with two or more points.
See also