Package | com.esri.tracking.connector.geometry |
Class | public class TmsPoint |
Inheritance | TmsPoint ![]() ![]() |
Property | Defined By | ||
---|---|---|---|
gml : String [read-only]
The GML representing the Point. | TmsPoint | ||
type : GeometryType [override] [read-only]
The type of geometry. | TmsPoint | ||
x : Number
The x coordinate of the Point. | TmsPoint | ||
y : Number
The y coordinate of the Point. | TmsPoint | ||
z : Number
The z coordinate of the Point. | TmsPoint |
Method | Defined By | ||
---|---|---|---|
TmsPoint(gml:String = null)
The constructor. | TmsPoint | ||
[static]
A static function that parses GML and converts it to a TmsPoint. | TmsPoint | ||
parsePointStrings(xStr:String, yStr:String, zStr:String):TmsPoint [static]
A static function that creates a TmsPoint from x, y and z coordinates. | TmsPoint |
gml | property |
gml:String
[read-only]
The GML representing the Point. This must use the coordinates
tag. The coord
tag is not supported.
public function get gml():String
type | property |
type:GeometryType
[read-only] [override]
The type of geometry. In this case this is a GeometryType.POINT
public function get type():GeometryType
x | property |
public var x:Number
The x coordinate of the Point.
y | property |
public var y:Number
The y coordinate of the Point.
z | property |
public var z:Number
The z coordinate of the Point.
TmsPoint | () | Constructor |
public function TmsPoint(gml:String = null)
The constructor.
Parametersgml:String (default = null ) — The GML representing the Point.
|
parseGML | () | method |
public static function parseGML(gml:String):TmsPoint
A static function that parses GML and converts it to a TmsPoint
.
Parameters
gml:String — The GML representing the Point.
|
TmsPoint — The TmsPoint created.
|
parsePointStrings | () | method |
public static function parsePointStrings(xStr:String, yStr:String, zStr:String):TmsPoint
A static function that creates a TmsPoint
from x, y and z coordinates.
Parameters
xStr:String — String representing the x coordinate.
| |
yStr:String — String representing the y coordinate.
| |
zStr:String — String representing the z coordinate.
|
TmsPoint — The TmsPoint created.
|