Interface OnAnnotationLongClickListener<T extends Annotation>
-
- Type Parameters:
T- generic parameter extending from Annotation
- All Known Subinterfaces:
OnCircleLongClickListener,OnFillLongClickListener,OnLineLongClickListener,OnSymbolLongClickListener
public interface OnAnnotationLongClickListener<T extends Annotation>Generic interface definition of a callback to be invoked when an annotation has been long clicked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonAnnotationLongClick(T t)Called when an annotation has been long clicked
-
-
-
Method Detail
-
onAnnotationLongClick
boolean onAnnotationLongClick(T t)
Called when an annotation has been long clicked- Parameters:
t- the annotation long clicked.- Returns:
- True if this click should be consumed and not passed further to other listeners registered afterwards, false otherwise.
-
-