I have a Google map with these kind of items on it:
drawable3 = this.getResources().getDrawable(R.drawable.trazeicon);
but automatically, And
You need to override the draw() method when you extend ItemizedOverlay. Like this:
draw()
public class MyItemizedOverlay extends ItemizedOverlay { @Override public void draw(Canvas canvas, MapView mapView, boolean shadow) { if(!shadow) { super.draw(canvas, mapView, false); } } .... }