Back to project page SmartNavi.
The source code is released under:
Apache License
If you think the Android project SmartNavi listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.osmdroid.bonuspack.overlays; /*from w ww.j av a2 s .c o m*/ import org.osmdroid.util.GeoPoint; /** * Interface for objects that need to handle map events thrown by a MapEventsOverlay. * @see MapEventsOverlay * @author M.Kergall */ public interface MapEventsReceiver { /** * @param p the position where the event occurred. * @return true if the event has been "consumed" and should not be handled by other objects. */ boolean singleTapConfirmedHelper(GeoPoint p); /** * @param p the position where the event occurred. * @return true if the event has been "consumed" and should not be handled by other objects. */ boolean longPressHelper(GeoPoint p); }