AI-generated Key Takeaways
-
GoogleMap.OnGroundOverlayClickListeneris an interface to handle clicks on ground overlays displayed on a Google Map. -
It includes a single method,
onGroundOverlayClick, which is triggered when a ground overlay is clicked, providing access to the clickedGroundOverlayobject. -
This method is executed on the Android UI thread for immediate response to user interaction.
Callback interface for when a ground overlay is clicked.
Public Method Summary
| abstract void |
Public Methods
public abstract void onGroundOverlayClick (GroundOverlay groundOverlay)
Called when a ground overlay is clicked.
This is called on the Android UI thread.
Parameters
| groundOverlay | The ground overlay that is clicked. |
|---|