<div>I am having a problem with getting rotation to work within KML. I am generating my KML using mod_wsgi Python script. I have a simple circular icon, and would like to have it rotated on a map according to a direction of travel. I would like this to be done on the backend by Python rather than having to write javascript code to do it. Is this possible using KML? I have seen few examples of it, most of which are done in javascript and some in KML but for Google Earth. Thanks for your help. Here is the output code. I have tried placing the rotation in the Icon style, for the point, etc, nothing seems to work.<br>
</div><div><br></div><div>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>&lt;kml xmlns=&quot;<a href="http://earth.google.com/kml/2.0">http://earth.google.com/kml/2.0</a>&quot;&gt;<br>&lt;Style id=&quot;thinRedLine&quot;&gt;<br>
&lt;LineStyle&gt;<br>&lt;color&gt;ffc97000&lt;/color&gt;<br>&lt;width&gt;7&lt;/width&gt;<br>&lt;/LineStyle&gt;<br>&lt;/Style&gt;<br>&lt;Style id=&quot;smallRedCircle&quot;&gt;<br>&lt;IconStyle&gt;<br>&lt;color&gt;ff00f00f&lt;/color&gt;<br>
&lt;scale&gt;.500&lt;/scale&gt;</div><div>
&lt;rotation&gt;45&lt;/rotation&gt;
<br>&lt;Icon&gt;<br>&lt;href&gt;icons/redcircle.png&lt;/href&gt;</div><div> &lt;/Icon&gt;<br>&lt;/IconStyle&gt;<br>&lt;/Style&gt;<br>&lt;Placemark&gt;<br>&lt;styleUrl&gt;#smallRedCircle&lt;/styleUrl&gt;<br>&lt;name&gt;2012-04-25 04:07:48&lt;/name&gt;<br>
&lt;description&gt;&lt;![CDATA[LatLon:49.22526434,-122.57554344&lt;br&gt;Altitude:0.0&lt;br&gt;Accuracy:48.0&lt;br&gt;Speed:0.0&lt;br&gt;Bearing:0.0]]&gt;<br>&lt;/description&gt;<br>&lt;Point&gt;<br>&lt;coordinates&gt;<br>
-122.57554344,49.22526434<br>&lt;/coordinates&gt;<br>&lt;/Point&gt;<br>&lt;/Placemark&gt;<br>&lt;/kml&gt;</div>