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