You need to create your own class which extends ItemizedOverlay and in that classes constructor you can set the default marker as the image that you want the put onto the map.
Something like this.
public class MyOverlay extends ItemizedOverlay {
Context mContext;
@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {
// TODO Auto-generated method stub
super.draw(canvas, mapView, shadow);
}
@Override
protected OverlayItem createItem(int i) {
// TODO Auto-generated method stub
return mOverlays.get(i).overlayItem;
}
public void addOverlay(OverlayItem overlay, int businessId) {
populate();
}
public MyOverlay(Drawable defaultMarker, Context context) {
super(boundCenterBottom(defaultMarker));
mContext = context;
}
@override
protected boolean onTap(int index) {
return true;
}
}
In your original map Activity you need to do something like this to use your overlay.
List<Overlay> mapOverlays = mapView.getOverlays();
Drawable drawable = this.getResources().getDrawable(R.drawable.myImage);
MyOverlay itemizedoverlay = new MyOverlay(drawable, context);
mapOverlays.add(itemizedoverlay);