Packagecom.distriqt.extension.nativemaps.objects
Classpublic class CircleOverlay
InheritanceCircleOverlay Inheritance Object



Public Properties
 PropertyDefined By
  fillColour : int
Defines the fill colour of the shape as an int in the ARGB format.
CircleOverlay
  latitude : Number
[read-only] The latitude of the marker, or 0 if no position is set.
CircleOverlay
  longitude : Number
[read-only] The longitude of the marker, or 0 if no position is set.
CircleOverlay
  name : String
A custom name you may set for the circle overlay to be used as a reference. This name is not used internally but simply provides a helpful way to identify overlays. NOTE: Overlay names should be unique, you are responsible for managing these.
CircleOverlay
  position : LatLng
[read-only]
CircleOverlay
  radius : Number
Defines the radius of the circle in metres
CircleOverlay
  strokeColour : int
Defines the colour of the stroke as an int in the ARGB format.
CircleOverlay
  strokeWidth : Number
Defines the width of the circle's stroke in screen pixels.
CircleOverlay
  visible : Boolean
Defines whether the line is visible or not, defaults to true.
CircleOverlay
  visibleAsInt : int
[read-only]
CircleOverlay
  zIndex : Number
Defines the Z Index or display order of this line.
CircleOverlay
Protected Properties
 PropertyDefined By
  _position : LatLng
The position of the circle overlay on the map.
CircleOverlay
Public Methods
 MethodDefined By
  
CircleOverlay(radius:Number, position:LatLng, strokeWidth:Number = 10, strokeColour:uint = 0xFFFFFFFF, fillColour:uint = 0xAAFFFFFF, zIndex:int = 0, visible:Boolean = true)
Constructor
CircleOverlay
Property Detail
_positionproperty
protected var _position:LatLng

The position of the circle overlay on the map.

fillColourproperty 
fillColour:int

Defines the fill colour of the shape as an int in the ARGB format.

This number should represent an ARGB colour value. For example: Non transparent red: 0xFFFF0000 Semi-transparent red: 0xAAFF0000


Implementation
    public function get fillColour():int
    public function set fillColour(value:int):void
latitudeproperty 
latitude:Number  [read-only]

The latitude of the marker, or 0 if no position is set.


Implementation
    public function get latitude():Number
longitudeproperty 
longitude:Number  [read-only]

The longitude of the marker, or 0 if no position is set.


Implementation
    public function get longitude():Number
nameproperty 
name:String

A custom name you may set for the circle overlay to be used as a reference.

This name is not used internally but simply provides a helpful way to identify overlays.

NOTE: Overlay names should be unique, you are responsible for managing these.


Implementation
    public function get name():String
    public function set name(value:String):void
positionproperty 
position:LatLng  [read-only]


Implementation
    public function get position():LatLng
radiusproperty 
radius:Number

Defines the radius of the circle in metres


Implementation
    public function get radius():Number
    public function set radius(value:Number):void
strokeColourproperty 
strokeColour:int

Defines the colour of the stroke as an int in the ARGB format.

This number should represent an ARGB colour value. For example: Non transparent red: 0xFFFF0000 Semi-transparent red: 0xAAFF0000


Implementation
    public function get strokeColour():int
    public function set strokeColour(value:int):void
strokeWidthproperty 
strokeWidth:Number

Defines the width of the circle's stroke in screen pixels.

The width is constant and independent of the camera's zoom level. The default value is 10.


Implementation
    public function get strokeWidth():Number
    public function set strokeWidth(value:Number):void
visibleproperty 
visible:Boolean

Defines whether the line is visible or not, defaults to true.


Implementation
    public function get visible():Boolean
    public function set visible(value:Boolean):void
visibleAsIntproperty 
visibleAsInt:int  [read-only]


Implementation
    public function get visibleAsInt():int
zIndexproperty 
zIndex:Number

Defines the Z Index or display order of this line.

Overlays with higher zIndex values are drawn above those with lower values.


Implementation
    public function get zIndex():Number
    public function set zIndex(value:Number):void
Constructor Detail
CircleOverlay()Constructor
public function CircleOverlay(radius:Number, position:LatLng, strokeWidth:Number = 10, strokeColour:uint = 0xFFFFFFFF, fillColour:uint = 0xAAFFFFFF, zIndex:int = 0, visible:Boolean = true)

Constructor

Parameters
radius:Number
 
position:LatLng
 
strokeWidth:Number (default = 10)
 
strokeColour:uint (default = 0xFFFFFFFF)
 
fillColour:uint (default = 0xAAFFFFFF)
 
zIndex:int (default = 0)
 
visible:Boolean (default = true)