I do not succeed in achoring the center of a custom icon to a point
placemark in Google Maps. I have the impression that the <hotspot> tag
is ignored. Here is the code:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://earth.google.com/kml/2.2">
<Document>
<name>Sommets</name>
<description><![CDATA[Sommets les plus hauts de chaque groupe]]></
description>
<Style id="SommetPlusHautMassif">
<IconStyle>
<Icon>
<href>
http://www.myserver.com/Icon.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
</Style>
<Placemark>
<name>Cima Presanella</name>
<description><![CDATA[]]></description>
<styleUrl>#SommetPlusHautMassif</styleUrl>
<Point>
<coordinates>10.663433,46.220703,0.000000</coordinates>
</Point>
</Placemark>
Do I miss something?