I'm struggling for some hours now with this problem:
I'm trying to get my itemizedoverlay to work, but I keep getting this error:
The method boundCenterBottom(Drawable) is undefined for the type
my class:
public MyDynamicItemizedOverlay(Drawable defaultMarker) {
super(boundCenterBottom(defaultMarker));
items = new ArrayList<OverlayItem>();
populate();
}
public void addNewItem(GeoPoint location, String markerText,
String snippet) {
items.add(new OverlayItem(snippet, markerText, location));
populate();
}
public void removeItem(int index) {
items.remove(index);
populate();
}
@Override
protected OverlayItem createItem(int index) {
return items.get(index);
}
@Override
public int size() {
return items.size();
}
@Override
public boolean onSnapToItem(int arg0, int arg1, Point arg2,
IMapView arg3) {
// TODO Auto-generated method stub
return false;
}
}
I'm using osmdroid-android-3.0.8 and 3.0.7 (tried both). ItemizedOverlay in deed seems not to have such constructor, but ALL of samples I was able to google followed the same pattern...
ok, it seem's that the answer to my question is that this method is not implemented in osmdroid and:
should be used insteed