Android MapView draggable marker

I would like to create a draggable marker in Android MapView (com.google.android.maps.MapView), exactly the same: http://koti.mbnet.fi/ojalesa/exam/draggable.html .

I already have an overlay pointing to the right place, but I would like the marker icon to be draggable, as in the above example. Is there anything ready to use for this, or do you need to implement drag and drop logic yourself?

+3
source share
1 answer

You need to implement drag and drop. Here is an example project demonstrating drag OverlayItemand drop from ItemizedOverlay.

+13
source

All Articles