Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 884 Bytes

onmaptappedlistener-interface.md

File metadata and controls

24 lines (18 loc) · 884 Bytes
title description ms.author
OnMapTappedListener Interface | Microsoft Docs
Describes the OnMapTappedListener interface for Android and provides syntax and additional references.
pablocan

OnMapTappedListener Interface (Android only)

[!INCLUDE bing-maps-sdk-for-android-iOS-retirement]

Listener used with MapView.Tapped event. Return true from this event to prevent other OnMapTappedListeners from receiving this event or false to allow other listeners to receive his notification as well. Events are processed in the order they were attached to the MapView.

public interface OnMapTappedListener
{
   /** Called when map is tapped. */
   boolean onMapTapped(MapTappedEventArgs e);
}

See Also