I am using a MapView (google's) and add some overlays onto it. I use my own overlay class which looks like this:
public class MyOverlay extends ItemizedOverlay<OverlayItem>
When I zoom out and cause all my items to be at the same location and tap the image, I get onTap event for only 1 out of all the items ehich are at the tapped location.
I want to be able to get onTap event for each and every item which is under the location on the map which I tap on, or either an ability to ask the map for all items at a specific rectangle where I press.
this is my code for debugging:
@Override
protected boolean onTap(int i)
{
super.onTap(i);
return false;
}
and get only 1 tap for each overlay.
Is it possible? how?
Thanks.
One way is this: (Note that this is pseudo code)
This is only a idea/hint to get you started.