GoogleMap.OnInfoWindowCloseListener

  • GoogleMap.OnInfoWindowCloseListener is a callback interface used for handling events when a marker's info window is closed on a Google Map.

  • This interface has one method, onInfoWindowClose(Marker marker), which is triggered when an info window is closed, providing the associated marker as a parameter.

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

public static interface GoogleMap.OnInfoWindowCloseListener

Callback interface for close events on a marker's info window.

Public Method Summary

abstract void
onInfoWindowClose(Marker marker)
Called when the marker's info window is closed.

Public Methods

public abstract void onInfoWindowClose (Marker marker)

Called when the marker's info window is closed.

This is called on the Android UI thread.

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