public interface

OnPanListener

implements Serializable
com.esri.android.map.event.OnPanListener

Class Overview

Implement this listener to extend the default pan handling of a map view.

Summary

Public Methods
abstract void postPointerMove(float fromx, float fromy, float tox, float toy)
Defines the action after the map default move handling.
abstract void postPointerUp(float fromx, float fromy, float tox, float toy)
Defines the action after the map default pointer up handling.
abstract void prePointerMove(float fromx, float fromy, float tox, float toy)
Defines the action before the map default move handling.
abstract void prePointerUp(float fromx, float fromy, float tox, float toy)
Defines the action before the map default pointer up handling.

Public Methods

public abstract void postPointerMove (float fromx, float fromy, float tox, float toy)

Defines the action after the map default move handling.

Parameters
fromx the x coordinate of the start point of the motion in screen pixels.
fromy the y coordinate of the start point of the motion in screen pixels.
tox the x coordinate of the end point of the motion in screen pixels.
toy the y coordinate of the end point of the motion in screen pixels.

public abstract void postPointerUp (float fromx, float fromy, float tox, float toy)

Defines the action after the map default pointer up handling.

Parameters
fromx the x coordinate of the start point of the motion in screen pixels.
fromy the y coordinate of the start point of the motion in screen pixels.
tox the x coordinate of the end point of the motion in screen pixels.
toy the y coordinate of the end point of the motion in screen pixels.

public abstract void prePointerMove (float fromx, float fromy, float tox, float toy)

Defines the action before the map default move handling.

Parameters
fromx the x coordinate of the start point of the motion in screen pixels.
fromy the y coordinate of the start point of the motion in screen pixels.
tox the x coordinate of the end point of the motion in screen pixels.
toy the y coordinate of the end point of the motion in screen pixels.

public abstract void prePointerUp (float fromx, float fromy, float tox, float toy)

Defines the action before the map default pointer up handling.

Parameters
fromx the x coordinate of the start point of the motion in screen pixels.
fromy the y coordinate of the start point of the motion in screen pixels.
tox the x coordinate of the end point of the motion in screen pixels.
toy the y coordinate of the end point of the motion in screen pixels.