Packagecom.esri.aws.awx.map.handlers
Interfacepublic interface IKeyboardHandler
ImplementorsAWXKeyboardMouseHandler, PanZoomKeyboardHandler

Interface for different keyboard handling implementations.



Public Properties
 PropertyDefined by
  map : IMap
[write-only] The map reference.
IKeyboardHandler
Public Methods
 MethodDefined by
  
cleanUp():void
Cleans up when the keyboard handler is removed.
IKeyboardHandler
  
onKeyDown(event:KeyboardEvent):void
Key down function handler.
IKeyboardHandler
  
onKeyUp(event:KeyboardEvent):void
Key up function handler.
IKeyboardHandler
Property detail
mapproperty
map:IMap  [write-only]

The map reference.

Implementation
    public function set map(value:IMap):void
Method detail
cleanUp()method
public function cleanUp():void

Cleans up when the keyboard handler is removed.

onKeyDown()method 
public function onKeyDown(event:KeyboardEvent):void

Key down function handler.

Parameters
event:KeyboardEvent — the keyboard event.
onKeyUp()method 
public function onKeyUp(event:KeyboardEvent):void

Key up function handler.

Parameters
event:KeyboardEvent — the keyboard event.