I've poured over the docs and haven't been able to figure this out. Is it even possible?
How can I use a custom bitmap for the "you are here" point in a MyLocationOverlay?
7.8k Views Asked by Jeremy Logan At
2
There are 2 best solutions below
2

I made a few changes to the previuos code in order to get it to work properly because the arrow was pointing to the wrong direction and rotating in the opposite direction.
I changed
matrix.postRotate(mOrientation);
for
matrix.postRotate(this.getRotation());
and added to the end:
mapView.postInvalidate();
to redraw the arrow when it changes
It looks like the correct mechanism to do this is to extend MyLocationOverlay then override the drawMyLocation() protected method.
The following uses an arrow to show where "you" are and which way "you" are pointing: