I want to draw arrows manually over map. I’m not using the rotation of drawables for performance issues as I have many overlays that slow the app if drawn using this technique.
I will draw arrows manually, given a gps point and rotation angle I need to draw the arrow over that point.
I will extend overlay class and on the draw method, I will do the drawing work.
Any suggestions ?
I dealt with the same problem in my app. The code is on github
Basically I override
drawand rotate the canvas before drawing the arrow.