Packagecom.esri.aws.awx.map.layers.overlays.style
Classpublic class BaseOutlineFillStyle
InheritanceBaseOutlineFillStyle Inheritance BaseMarkerStyle Inheritance BaseStyle
ImplementsIStyle
SubclassesCircleMarkerStyle, SquareMarkerStyle, StarMarkerStyle, TriangleMarkerStyle

A base style that vector drawn markers can extend.

Note: Although styles have public properties (such as color, fill, alpha) they should not be edited after construction.



Public Properties
 PropertyDefined by
  borderAlpha : Number = 1.0
The alpha of the border line.
BaseOutlineFillStyle
  borderColor : uint = 0xff0000
The color of the border line.
BaseOutlineFillStyle
  borderThickness : Number = 0
The pixel thickness of the border line.
BaseOutlineFillStyle
  fillAlpha : Number = 1.0
The alpha of the fill.
BaseOutlineFillStyle
  fillColor : uint = 0xff0000
The color of the fill.
BaseOutlineFillStyle
Public Methods
 MethodDefined by
  
BaseOutlineFillStyle(borderThickness:Number = 0, borderColor:uint = 0xff0000, borderAlpha:Number = 1.0, fillColor:uint = 0xff0000, fillAlpha:Number = 1.0)
Creates a new BaseOutlineFillStyle.
BaseOutlineFillStyle
 Inherited
cleanUp(overlayObject:OverlayObject):void
Cleans up the OverlayObject to restore it to its original state.
BaseStyle
 Inherited
draw(overlayObject:OverlayObject, projectionModel:IProjectionModel):void
Creates the default ToolTip (lat/lon) if overlayObject.toolTip is null.
BaseMarkerStyle
Protected Methods
 MethodDefined by
 Inherited
drawMarker(overlayObject:OverlayObject, projectionModel:IProjectionModel):void
All subclasses MUST override this function to draw the marker.
BaseMarkerStyle
Property detail
borderAlphaproperty
public var borderAlpha:Number = 1.0

The alpha of the border line.

borderColorproperty 
public var borderColor:uint = 0xff0000

The color of the border line.

borderThicknessproperty 
public var borderThickness:Number = 0

The pixel thickness of the border line.

fillAlphaproperty 
public var fillAlpha:Number = 1.0

The alpha of the fill.

fillColorproperty 
public var fillColor:uint = 0xff0000

The color of the fill.

Constructor detail
BaseOutlineFillStyle()constructor
public function BaseOutlineFillStyle(borderThickness:Number = 0, borderColor:uint = 0xff0000, borderAlpha:Number = 1.0, fillColor:uint = 0xff0000, fillAlpha:Number = 1.0)

Creates a new BaseOutlineFillStyle.

Parameters
borderThickness:Number (default = 0) — The pixel thickness of the border line.
 
borderColor:uint (default = 0xff0000) — The color of the border line.
 
borderAlpha:Number (default = 1.0) — The alpha of the border line.
 
fillColor:uint (default = 0xff0000) — The color of the fill.
 
fillAlpha:Number (default = 1.0) — The alpha of the fill.