GoogleMap.OnInfoWindowClickListener

  • GoogleMap.OnInfoWindowClickListener is a callback interface for click events on a marker's info window.

  • The onInfoWindowClick(Marker marker) method is called on the Android UI thread when a marker's info window is clicked.

  • The marker parameter in the onInfoWindowClick method refers to the marker of the info window that was clicked.

public static interface GoogleMap.OnInfoWindowClickListener

Callback interface for click/tap events on a marker's info window.

Public Method Summary

abstract void
onInfoWindowClick(Marker marker)
Called when the marker's info window is clicked.

Public Methods

public abstract void onInfoWindowClick (Marker marker)

Called when the marker's info window is clicked.

This is called on the Android UI thread.

Parameters
marker The marker of the info window that was clicked.