I've been trying to make a kml file for Google Earth where a certain point on the map is shown. I tried to change the icon (instead of the yellow thumbtack that another appears) with the following code, but I have not succeeded:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Style id="icono">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon28.png</href>
</Icon>
</IconStyle>
</Style>
<Folder>
<Placemark>
<name>name</name>
<description>descrip</description>
<styleUrl>#icono</styleUrl>
<Point>
<coordinates>lon,lat</coordinates>
</Point>
</Placemark>
</Folder>
</kml>
What would I have to modify to be able to change this icon? Thanks!