Package | com.esri.tracking.connector.geometry |
Class | public class TmsEnvelope |
Inheritance | TmsEnvelope ![]() ![]() |
Property | Defined 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 |
Method | Defined 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 |
type | property |
type:GeometryType
[read-only] [override]
The type of geometry. In this case this is a GeometryType.ENVELOPE
public function get type():GeometryType
xMax | property |
public var xMax:Number
The x max coordinate of the Envelope.
xMin | property |
public var xMin:Number
The x min coordinate of the Envelope.
yMax | property |
public var yMax:Number
The y max coordinate of the Envelope.
yMin | property |
public var yMin:Number
The y min coordinate of the Envelope.
TmsEnvelope | () | Constructor |
public function TmsEnvelope(xMin:Number, yMin:Number, xMax:Number, yMax:Number)
The constructor.
ParametersxMin: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.
|
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 |
TmsEnvelope — The TmsPoint created.
|