Android Development
How to remove specific OverlayItem from MapView ItemizedOverlay in Android.
This functionality is very needed if you have a lot of items and you need to delete one of them. For example: deleting one ATM from ATM’s overlay if user made some action on map. It can be implemented by creating remove(int) method in your ItemizedOverlay class. Here is MyItemizedOverlay Read more…