If you are trying to just change the label marker icons, you can simply set the label style to the style that contains the node icon.
<Style id="icon"> <IconStyle> <Icon> <href>http://path/to/your/icon.png</href> </Icon> </IconStyle> </Style> <Placemark> <name>Name</name> <description> hi </description> <styleUrl>#icon</styleUrl> <Point> <coordinates>...</coordinates> </Point> </Placemark>
This will show the icon contained in this path for the marker, not the default.
source share