Packagecom.esri.tracking.connector.geometry
Classpublic class GmlPolygon
InheritanceGmlPolygon Inheritance Object

Represents a GML Polygon. TmsPolygon objects are composed of these.

See also

com.esri.tracking.connector.geometry.TmsPolygon


Public Properties
 PropertyDefined By
  gml : String
[read-only] The GML representing the Polygon.
GmlPolygon
  innerBoundaryRings : Array
[read-only] An Array of Arrays.
GmlPolygon
  outerBoundaryRing : Array
[read-only] The Array of TmsPoint objects representing the vertices of the outer boundary ring.
GmlPolygon
Public Methods
 MethodDefined By
  
GmlPolygon(gml:String)
The constructor.
GmlPolygon
Property Detail
gmlproperty
gml:String  [read-only]

The GML representing the Polygon. This must use the coordinates tag. The coord tag is not supported.


Implementation
    public function get gml():String
innerBoundaryRingsproperty 
innerBoundaryRings:Array  [read-only]

An Array of Arrays. Each Array element contains TmsPoint objects representing an inner boundary ring.


Implementation
    public function get innerBoundaryRings():Array

See also

outerBoundaryRingproperty 
outerBoundaryRing:Array  [read-only]

The Array of TmsPoint objects representing the vertices of the outer boundary ring.


Implementation
    public function get outerBoundaryRing():Array

See also

Constructor Detail
GmlPolygon()Constructor
public function GmlPolygon(gml:String)

The constructor.

Parameters
gml:String — The GML representing the Polygon.