2

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?

nickponline
  • 25,354
  • 32
  • 99
  • 167

1 Answers1

1

You can use CSS3:

transform: rotate(<angle>deg);

or

<element>.style.transform = "rotate(<angle>deg)";
Andrei Nemes
  • 3,062
  • 1
  • 16
  • 22