Reputation: 9044
I want to display a marker on map where user taps on map.
Also this should not infect double tap for zooming and/or moving Mapview
.
I am using osmdroid-android-4.0.jar
Upvotes: 5
Views: 4737
Reputation: 3450
Look at OSMBonusPack MapEventsOverlay/MapEventsReceiver:
You create a MapEventsOverlay, you add it to the maps overlay, and you pass it a MapEventsReceiver in which you implement your own singleTapUpHelper code.
Upvotes: 3