GoogleMap.OnInfoWindowClickListener

  • GoogleMap.OnInfoWindowClickListener is an interface to handle click events on a marker's info window.

  • It includes a single method, onInfoWindowClick, which is triggered when a marker's info window is clicked and provides the clicked marker as a parameter.

  • The onInfoWindowClick method is executed on the Android UI thread.

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.