I hoped that the multiple .KML files could simply be zipped into a
single .KMZ to achieve this effect. However, I find that when I open
in Google Earth a .KMZ created in this way Google Earth just shows one
of the KML files, not all of them.
TIA
Peter Seaman
hope that helps!
I created doc.kml as follows
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0">
<NetworkLink>
<Link><href>t1.kml</href></Link>
<Link><href>t2.kml</href></Link>
<Link><href>t3.kml</href></Link>
</NetworkLink>
</kml>
doc.kml t1.kml t2.kml and t3.kml are all in the same local.
directory
I tried to open this file as a .kml (not a kmz) and I found that it
just displayed t3.kml. Have I done something wrong? I assume I would
get the same if I zipped all 4 files into a kmz.
Peter Seaman
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0">
<Document>
<name>My Content><name>
<NetworkLink>
<name>Part 1</name>
<Link><href>t1.kml</href></Link>
</NetworkLink>
<NetworkLink>
<name>Part 2</name>
<Link><href>t2.kml</href></Link>
</NetworkLink>
<NetworkLink>
<name>Part 3</name>
<Link><href>t3.kml</href></Link>
</NetworkLink>
</Document>
</kml>
I have also added a sprinkling of <name> tags as they are much nicer
included as that you get nice titles in the 'Places' tree, on the left
hand side.