| Package | com.distriqt.extension.nativemaps.objects |
| Class | public class CircleOverlay |
| Inheritance | CircleOverlay Object |
| Property | Defined 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 | ||
| Property | Defined By | ||
|---|---|---|---|
| _position : LatLng
The position of the circle overlay on the map.
| CircleOverlay | ||
| Method | Defined By | ||
|---|---|---|---|
CircleOverlay(radius:Number, position:LatLng, strokeWidth:Number = 10, strokeColour:uint = 0xFFFFFFFF, fillColour:uint = 0xAAFFFFFF, zIndex:int = 0, visible:Boolean = true)
Constructor
| CircleOverlay | ||
| _position | property |
| fillColour | property |
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
public function get fillColour():int public function set fillColour(value:int):void| latitude | property |
latitude:Number [read-only] The latitude of the marker, or 0 if no position is set.
public function get latitude():Number| longitude | property |
longitude:Number [read-only] The longitude of the marker, or 0 if no position is set.
public function get longitude():Number| name | property |
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.
public function get name():String public function set name(value:String):void| position | property |
| radius | property |
radius:Number
Defines the radius of the circle in metres
public function get radius():Number public function set radius(value:Number):void| strokeColour | property |
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
public function get strokeColour():int public function set strokeColour(value:int):void| strokeWidth | property |
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.
public function get strokeWidth():Number public function set strokeWidth(value:Number):void| visible | property |
visible:Boolean
Defines whether the line is visible or not, defaults to true.
public function get visible():Boolean public function set visible(value:Boolean):void| visibleAsInt | property |
visibleAsInt:int [read-only] public function get visibleAsInt():int| zIndex | property |
zIndex:Number
Defines the Z Index or display order of this line.
Overlays with higher zIndex values are drawn above those with lower values.
public function get zIndex():Number public function set zIndex(value:Number):void| 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
Parametersradius:Number | |
position:LatLng | |
strokeWidth:Number (default = 10) | |
strokeColour:uint (default = 0xFFFFFFFF) | |
fillColour:uint (default = 0xAAFFFFFF) | |
zIndex:int (default = 0) | |
visible:Boolean (default = true) |