Page Summary
-
GoogleMap.OnCircleClickListeneris an interface used to handle click events on circles displayed on a Google Map. -
It provides a single method,
onCircleClick(Circle circle), which is triggered when a user clicks on a circle on the map. -
The
onCircleClickmethod receives the clickedCircleobject as a parameter, allowing developers to identify and interact with it. -
This callback is executed on the Android UI thread, ensuring any updates to the UI are performed safely.
Callback interface for when a circle is clicked.
Public Method Summary
| abstract void |
Public Methods
public abstract void onCircleClick (Circle circle)
Called when a circle is clicked.
This is called on the Android UI thread.
Parameters
| circle | The circle that is clicked. |
|---|