I'm using Google Maps JavaScript API and loading a KML layer to display points.
I want it to display the labels but not the blue point markers.
Here is what it looks like now:
The blue markers are where I want the labels to be.
Here is the relevant section from the KML:
<Style id="normalPlacemark">
<IconStyle>
<Icon><href>https://upload.wikimedia.org/wikipedia/commons/8/8c/Transparent.png</href></Icon>
</IconStyle>
<LineStyle>
<gx:labelVisibility>1</gx:labelVisibility>
</LineStyle>
</Style>
<Folder>
<name>Labels</name>
<Placemark>
<name>3H</name>
<Point><coordinates>-74.784880,41.752639,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4F</name>
<Point><coordinates>-74.985419,42.619435,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4G</name>
<Point><coordinates>-74.444085,42.514970,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4H</name>
<Point><coordinates>-74.126351,42.508052,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4O</name>
<Point><coordinates>-75.214074,42.230072,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4P</name>
<Point><coordinates>-74.795944,42.201073,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4R</name>
<Point><coordinates>-74.418647,42.266143,0</coordinates></Point>
</Placemark>
<Placemark>
<name>4W</name>
<Point><coordinates>-75.115810,41.965973,0</coordinates></Point>
</Placemark>
<Placemark>
<name>6G</name>
<Point><coordinates>-76.005867,43.998634,0</coordinates></Point>
</Placemark>
</Folder>
I've tried messing with this in every way I can think of but I think I just don't understand KML well enough. How do I get these blue markers to stop appearing and the labels to start appearing?

One option to display the Placemark names as labels using geoxml3 (based of the related question: Change font size of placemark's name when zooming) would be to create a custom
createMarkerfunction for geoxml3 that uses your transparent icon and sets theMarker's label to the name text of the placemark:You could continue to use
KmlLayerto display the polygons, or use geoxml3 to display those as well.code snippet:
modified KML:
live version