Packagecom.esri.aws.awx.map.layers.overlays.style
Classpublic class BaseMarkerStyle
InheritanceBaseMarkerStyle Inheritance BaseStyle
SubclassesBaseOutlineFillStyle, BubbleMarkerStyle, ImageMarkerStyle

A base style that marker styles can extend.



Public Methods
 MethodDefined by
 Inherited
cleanUp(overlayObject:OverlayObject):void
Cleans up the OverlayObject to restore it to its original state.
BaseStyle
  
draw(overlayObject:OverlayObject, projectionModel:IProjectionModel):void
Creates the default ToolTip (lat/lon) if overlayObject.toolTip is null.
BaseMarkerStyle
Protected Methods
 MethodDefined by
  
drawMarker(overlayObject:OverlayObject, projectionModel:IProjectionModel):void
All subclasses MUST override this function to draw the marker.
BaseMarkerStyle
Method detail
draw()method
public override function draw(overlayObject:OverlayObject, projectionModel:IProjectionModel):void

Creates the default ToolTip (lat/lon) if overlayObject.toolTip is null. Positions the overlayObject and calls drawMarker if the marker is visible.

Parameters
overlayObject:OverlayObject — the overlay object to draw.
 
projectionModel:IProjectionModel — the projection model.

See also

drawMarker()method 
protected function drawMarker(overlayObject:OverlayObject, projectionModel:IProjectionModel):void

All subclasses MUST override this function to draw the marker.

Parameters
overlayObject:OverlayObject — the overlay object to draw on.
 
projectionModel:IProjectionModel — the projection model.