Packagecom.esri.aws.awx.geom
Classpublic class MarkerShape
InheritanceMarkerShape Inheritance PointShape Inheritance GeoPoint Inheritance flash.geom.Point
Implementscom.esri.aws.awx.geom.IShape

A marker shape described by a lat/lon location [deprecated]. Note: This class is deprecated in favor of PointShape.



Public Properties
 PropertyDefined by
 Inheritedextent : Extent
Retrieves the bounding box (maxX, maxY, minX, minY) of this shape.
PointShape
  lat : Number
Retrieves the location latitude value.
MarkerShape
  lon : Number
Retrieves the location longitude value.
MarkerShape
Public Methods
 MethodDefined by
  
MarkerShape(lat:Number = 0, lon:Number = 0)
Creates a new MarkerShape with the given lat/lon values.
MarkerShape
 Inherited
deepClone():IShape
PointShape
Property detail
latproperty
lat:Number  [read-write]

Retrieves the location latitude value.

Implementation
    public function get lat():Number
    public function set lat(value:Number):void
lonproperty 
lon:Number  [read-write]

Retrieves the location longitude value.

Implementation
    public function get lon():Number
    public function set lon(value:Number):void
Constructor detail
MarkerShape()constructor
public function MarkerShape(lat:Number = 0, lon:Number = 0)

Creates a new MarkerShape with the given lat/lon values.

Parameters
lat:Number (default = 0) — the location latitude.
 
lon:Number (default = 0) — the location longitude.