Package com.massifmaps.ui
Class MapInteractionInfo
java.lang.Object
com.massifmaps.ui.MapInteractionInfo
A container class that provides information about a map interaction performed from UI.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks if this object is equal to the specified object.inthashCode()Returns the hash value of this object.booleanReturns true if the interaction has started an animation.booleanReturns true if the interaction included a map pan action.booleanReturns true if the interaction included a rotate action.booleanReturns true if the interaction included a tilt action.booleanReturns true if the interaction included a zoom action.
-
Method Details
-
equals
Checks if this object is equal to the specified object. -
hashCode
public int hashCode()Returns the hash value of this object. -
isPanAction
public boolean isPanAction()Returns true if the interaction included a map pan action.- Returns:
- True if the interaction included a map pan action.
-
isZoomAction
public boolean isZoomAction()Returns true if the interaction included a zoom action.- Returns:
- True if the interaction included a zoom action.
-
isRotateAction
public boolean isRotateAction()Returns true if the interaction included a rotate action.- Returns:
- True if the interaction included a rotate action.
-
isTiltAction
public boolean isTiltAction()Returns true if the interaction included a tilt action.- Returns:
- True if the interaction included a tilt action.
-
isAnimationStarted
public boolean isAnimationStarted()Returns true if the interaction has started an animation.- Returns:
- True if the interaction has started an animation.
-