2
votes

My map markers are adorable little aeroplanes and I would like to be able to orientate them? If there a way to do this programmatically without creating multiple images?

1

1 Answers

1
votes

You can use CSS3:

transform: rotate(<angle>deg);

or

<element>.style.transform = "rotate(<angle>deg)";