I cannot provide a link, but I can explain in more detail and provide
kml snippets. Everything occurs on a local machine and I'm using
Google Earth. I have a script that runs every second and generates 2
kml files (KML_1 and KML_2) - data changes every time as the source
data is constantly changing. Google Earth has a network link pointing
to KML_1. Here's a snippet of KML_1:
<Placemark>
<name>Placemark_1</name>
<description><![CDATA[<a
href="KML_2.kml#00000001;balloon">Details...</a>]]></description>
<Style> style stuff here </Style>
<MultiGeometry>
<LineString> linestring stuff here </LineString>
<Point> point stuff here </Point>
</MultiGeometry>
</Placemark>
That gives me a linestring and a point... and the <coordinates>
values of the <Point> and <LineString> have the point at the end of
the linestring.
Each placemark in KML_1, has a cooresponding placemark in KML_2 (note
the href 00000001 in KML_1 and the placemark id of "00000001").
Here's a snippet of KML_2:
<Placemark id="00000001">
<name>Placemark 1</name>
<ExtendedData> extended data stuff here </ExtendedData>
<styleUrl> styleUrl stuff here that has Balloon style and text
definitions </styleUrl>
<Point> coordinates match those in KML1 </Point>
</Placemark>
When I click on "Details..." for Placemark_1 in KML1 (KML1 is the
network link file), the balloon for id=00000001 in KML2 is displayed
correctly.... and the balloon does not go away on Network Link
refreshes. If I click on "Details..." for Placemark_1 again, the
balloon displays again, but the data is not up to date. If I click
"Details..." on another placemark that has not been displayed before,
KML2 is refreshed with current data at that point - but becomes stale
until a "never been clicked on" placemark is clicked.
Thanks!
> > Thanks!- Hide quoted text -
>
> - Show quoted text -