Packagecom.esri.tracking.connector.geometry
Classpublic class TmsEnvelope
InheritanceTmsEnvelope Inheritance TmsGeometry Inheritance Object

Represents an Envelope.



Public Properties
 PropertyDefined By
  type : GeometryType
[override] [read-only] The type of geometry.
TmsEnvelope
  xMax : Number
The x max coordinate of the Envelope.
TmsEnvelope
  xMin : Number
The x min coordinate of the Envelope.
TmsEnvelope
  yMax : Number
The y max coordinate of the Envelope.
TmsEnvelope
  yMin : Number
The y min coordinate of the Envelope.
TmsEnvelope
Public Methods
 MethodDefined By
  
TmsEnvelope(xMin:Number, yMin:Number, xMax:Number, yMax:Number)
The constructor.
TmsEnvelope
  
parseEnvelopeStrings(xMinStr:String, yMinStr:String, xMaxStr:String, yMaxStr:String):TmsEnvelope
[static] A static function that creates a TmsPoint from x, y and z coordinates.
TmsEnvelope
Property Detail
typeproperty
type:GeometryType  [read-only] [override]

The type of geometry. In this case this is a GeometryType.ENVELOPE


Implementation
    public function get type():GeometryType
xMaxproperty 
public var xMax:Number

The x max coordinate of the Envelope.

xMinproperty 
public var xMin:Number

The x min coordinate of the Envelope.

yMaxproperty 
public var yMax:Number

The y max coordinate of the Envelope.

yMinproperty 
public var yMin:Number

The y min coordinate of the Envelope.

Constructor Detail
TmsEnvelope()Constructor
public function TmsEnvelope(xMin:Number, yMin:Number, xMax:Number, yMax:Number)

The constructor.

Parameters
xMin:Number — The x min coordinate of the Envelope.
 
yMin:Number — The y min coordinate of the Envelope.
 
xMax:Number — The x max coordinate of the Envelope.
 
yMax:Number — The y max coordinate of the Envelope.
Method Detail
parseEnvelopeStrings()method
public static function parseEnvelopeStrings(xMinStr:String, yMinStr:String, xMaxStr:String, yMaxStr:String):TmsEnvelope

A static function that creates a TmsPoint from x, y and z coordinates.

Parameters

xMinStr:String — String representing the x coordinate.
 
yMinStr:String — String representing the y coordinate.
 
xMaxStr:String — String representing the z coordinate.
 
yMaxStr:String

Returns
TmsEnvelope — The TmsPoint created.