MapView with ItemizedOverlay and map scrolling. - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:26:50Zhttp://stackoverflow.com/feeds/question/502788http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/502788/mapview-with-itemizedoverlay-and-map-scrolling0MapView with ItemizedOverlay and map scrolling.srakyi2009-02-02T10:35:09Z2009-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#5197900Answer by srakyi for MapView with ItemizedOverlay and map scrolling.srakyi2009-02-06T10:22:30Z2009-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>