Packagecom.esri.aws.awx.map.handlers
Classpublic class GeoPointMouseHandler
InheritanceGeoPointMouseHandler Inheritance BaseMouseHandler Inheritance flash.events.EventDispatcher

The GeoPointMouseHandler is an EventDispatcher that redispatches a GeoPointMouseEvent for each MouseEvent that occurs.

See also

com.esri.aws.awx.events.GeoPointMouseEvent


Public Properties
 PropertyDefined by
 Inheritedmap : IMap
The map reference.
BaseMouseHandler
Protected Properties
 PropertyDefined by
 Inheritedm_map : IMap
The IMap reference.
BaseMouseHandler
Public Methods
 MethodDefined by
 Inherited
cleanUp():void
Cleans up any extraneous handlers when mouse handler is removed.
BaseMouseHandler
  
onClick(event:MouseEvent):void
Mouse click function handler.
GeoPointMouseHandler
  
Mouse double-click function handler.
GeoPointMouseHandler
  
onMouseDown(event:MouseEvent):void
Mouse down function handler.
GeoPointMouseHandler
  
onMouseMove(event:MouseEvent):void
Mouse movement function handler.
GeoPointMouseHandler
  
onMouseOut(event:MouseEvent):void
Mouse out function handler.
GeoPointMouseHandler
  
onMouseOver(event:MouseEvent):void
Mouse over function handler.
GeoPointMouseHandler
  
onMouseUp(event:MouseEvent):void
Mouse up function handler.
GeoPointMouseHandler
  
Mouse wheel function handler.
GeoPointMouseHandler
Protected Methods
 MethodDefined by
 Inherited
stage2GeoPoint(event:MouseEvent):GeoPoint
Converts a stage location to a geograhic location.
BaseMouseHandler
Method detail
onClick()method
public override function onClick(event:MouseEvent):void

Mouse click function handler.

Parameters
event:MouseEvent — mouse event.
onDoubleClick()method 
public override function onDoubleClick(event:MouseEvent):void

Mouse double-click function handler.

Parameters
event:MouseEvent — mouse event.
onMouseDown()method 
public override function onMouseDown(event:MouseEvent):void

Mouse down function handler.

Parameters
event:MouseEvent — mouse event.
onMouseMove()method 
public override function onMouseMove(event:MouseEvent):void

Mouse movement function handler.

Parameters
event:MouseEvent — mouse event.
onMouseOut()method 
public override function onMouseOut(event:MouseEvent):void

Mouse out function handler.

Parameters
event:MouseEvent — mouse event.
onMouseOver()method 
public override function onMouseOver(event:MouseEvent):void

Mouse over function handler.

Parameters
event:MouseEvent — mouse event.
onMouseUp()method 
public override function onMouseUp(event:MouseEvent):void

Mouse up function handler.

Parameters
event:MouseEvent — mouse event.
onMouseWheel()method 
public override function onMouseWheel(event:MouseEvent):void

Mouse wheel function handler.

Parameters
event:MouseEvent — mouse event.