Is there a way in the KML file to disable caching of the file?
A way in the browser to disable cache for a given site? Switch to
Firefox? Suggestions?
I'm using IE7 on Vista.
There is not a way to do this in KML. However, one thing you could do
is point to a NetworkLink that points to your file instead of pointing
to the file itself. Like this:
<kml xmlns="http://earth.google.com/kml/2.1">
<NetworkLink>
<Link>
<href>...</href>
<refreshMode>onInterval</refreshMode>
<refreshInterval>1</refreshInterval>
</Link>
</NetworkLink>
</kml>
That would refresh any file in <href> every second. So when you make a
change, it should update within a second.
ManoM