MapView with ItemizedOverlay and map scrolling. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:26:50Z http://stackoverflow.com/feeds/question/502788 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/502788/mapview-with-itemizedoverlay-and-map-scrolling 0 MapView with ItemizedOverlay and map scrolling. srakyi 2009-02-02T10:35:09Z 2009-10-30T09:00:02Z <p>I have a problem with custom ItemizedOverlay on the MapView in Android.</p> <p><strong>What I've done:</strong> Very simple offspring of ItemizedOverlay class that only wraps my own type of items and uses ItemizedOverlay for all the hard work.</p> <p><strong>What works:</strong> Nearly everything - items are drawn properly, I can tap them etc.</p> <p><strong>The problem:</strong> If I drag the map in the view by the map itself, I can scroll it without a problems. But if I try to start moving the map over one of items from my overlay (eg. "dragging map by item"), it doesn't move.</p> <p>This is really problem, because if I have "a bit more" items, there is no way to drag the map (without un-zooming and grabbing map outside items).</p> <p>This problem occurs even if I don't handle any events generated by ItemizedOverlay (eg. with onTap() commented out in my overlay).</p> <p>Any advice would be appreciated.</p> http://stackoverflow.com/questions/502788/mapview-with-itemizedoverlay-and-map-scrolling/519790#519790 0 Answer by srakyi for MapView with ItemizedOverlay and map scrolling. srakyi 2009-02-06T10:22:30Z 2009-02-06T10:22:30Z <p>OK, we solved this issue.</p> <p>But only solution we found was writing our own version of "ItemizedOverlay" (without inheriting it). Eg. we're drawing our own overlay and we handle "tap events".</p>