So basically I’m using MyLocationOverlay to draw the users location on the map. However, I do not like how it is drawn. I want to have my own icon and remove the circle around the location.
The only way I know how to do this would be to create a new class that extends MyLocationOverlay and then @Override the draw() function (or whatever it is called).
So, is there anyway to do this without making the new class (and “all” of the boilerplate that is needed)?
Short of modifying the Android source code, no.