Using ItemizedOverlay and OverlayItem In Android Beta 0.9 - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T09:49:03Zhttp://stackoverflow.com/feeds/question/26362http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26362/using-itemizedoverlay-and-overlayitem-in-android-beta-0-91Using ItemizedOverlay and OverlayItem In Android Beta 0.9Reto Meier2008-08-25T16:39:42Z2008-10-18T16:39:37Z
<p>Has anyone managed to use ItemizedOverlays in Android Beta 0.9? I can't get it to work, but I'm not sure if I've done something wrong or if this functionality isn't yet available. </p>
<p>I've been trying to use the ItemizedOverlay and OverlayItem classes. Their intended purpose is to simulate map markers (as seen in Google Maps Mashups) but I've had problems getting them to appear on the map.</p>
<p>I can add my own custom overlays using a similar technique, it's just the ItemizedOverlays that don't work.</p>
<p>Once I've implemented my own ItemizedOverlay (and overriden createItem), creating a new instance of my class seems to work (I can extract OverlayItems from it) but adding it to a map's Overlay list doesn't make it appear as it should.</p>
<p>This is the code I use to add the ItemizedOverlay class as an Overlay on to my Map View.</p>
<pre><code>// Add the ItemizedOverlay to the Map
private void addItemizedOverlay() {
Resources r = getResources();
MapView mapView = (MapView)findViewById(R.id.mymapview);
List<Overlay> overlays = mapView.getOverlays();
MyItemizedOverlay markers = new MyItemizedOverlay(r.getDrawable(R.drawable.icon));
overlays.add(markers);
OverlayItem oi = markers.getItem(0);
markers.setFocus(oi);
mapView.postInvalidate();
}
</code></pre>
<p>Where MyItemizedOverlay is defined as:</p>
<pre><code>public class MyItemizedOverlay extends ItemizedOverlay<OverlayItem> {
public MyItemizedOverlay(Drawable defaultMarker) {
super(defaultMarker);
populate();
}
@Override
protected OverlayItem createItem(int index) {
Double lat = (index+37.422006)*1E6;
Double lng = -122.084095*1E6;
GeoPoint point = new GeoPoint(lat.intValue(), lng.intValue());
OverlayItem oi = new OverlayItem(point, "Marker", "Marker Text");
return oi;
}
@Override
public int size() {
return 5;
}
}
</code></pre>
http://stackoverflow.com/questions/26362/using-itemizedoverlay-and-overlayitem-in-android-beta-0-9/46766#467661Answer by eon for Using ItemizedOverlay and OverlayItem In Android Beta 0.9eon2008-09-05T19:58:48Z2008-10-18T16:39:37Z<p>For the sake of completeness I'll repeat the discussion on Reto's post over at the <a href="http://groups.google.com/group/android-developers/browse_thread/thread/36fe0648dabfe745#" rel="nofollow">Android Groups</a> here.</p>
<p>It seems that if you set the bounds on your drawable it does the trick:</p>
<pre><code>Drawable defaultMarker = r.getDrawable(R.drawable.icon);
// You HAVE to specify the bounds! It seems like the markers are drawn
// through Drawable.draw(Canvas) and therefore must have its bounds set
// before drawing.
defaultMarker.setBounds(0, 0, defaultMarker.getIntrinsicWidth(),
defaultMarker.getIntrinsicHeight());
MyItemizedOverlay markers = new MyItemizedOverlay(defaultMarker);
overlays.add(markers);
</code></pre>
<p>Btw, the above is shamelessly ripped from the demo at <a href="http://www.marcelp.info/2008/09/01/android-itemizedoverlay-demo/" rel="nofollow">MarcelP.info</a>. Also see <a href="http://androidguys.com/?p=1413" rel="nofollow">here</a> for a good howto.</p>