I don't understand the visibility tag for folders. Please explain what
am I doing wrong with this code:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://earth.google.com/kml/2.2">
<Document>
<name>test</name>
<Folder>
<name>Visible</name>
<visibility>1</visibility>
<Placemark>
<name>A</name>
<Point>
<coordinates>-86.114,37.956,655.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>B</name>
<Point>
<coordinates>-86.334,37.895,570.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Hidden</name>
<visibility>0</visibility>
<Placemark>
<name>C</name>
<Point>
<coordinates>-86.514,37.756,655.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>D</name>
<Point>
<coordinates>-86.734,37.695,570.0</coordinates>
</Point>
</Placemark>
</Folder>
</Document>
</kml>
On startup, I want the "Visible" folder visible but the "Hidden"
folder hidden. I see both even though the <visibility> tag for the
Hidden folder is set to 0. Thanks.