<font style="font-family: arial,helvetica,sans-serif;" size="2">Hi all,<br><br>I found an entry in a Google Code FAQ (<a href="http://code.google.com/support/bin/answer.py?answer=69906&amp;topic=11367#displaying">http://code.google.com/support/bin/answer.py?answer=69906&amp;topic=11367#displaying</a>) showing how to use MySQL to create KML files which can be loaded into Google Earth or Google Maps.  The thing that interests me is the following:</font><br style="font-family: arial,helvetica,sans-serif;">
<br style="font-family: arial,helvetica,sans-serif;"><pre class="code"><font style="font-family: arial,helvetica,sans-serif;" size="2">&lt;?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39;?&gt;<br>&lt;kml xmlns = &#39;<a href="http://earth.google.com/kml/2.1">http://earth.google.com/kml/2.1</a>&#39;&gt;<br>
  &lt;Folder&gt;<br>    &lt;NetworkLink&gt;<br>      &lt;Link&gt;<br>        &lt;href&gt;<a href="http://example.com/phpsql_genkml.kml">http://example.com/phpsql_genkml.kml</a>&lt;/href&gt;<br>        &lt;refreshMode&gt;onInterval&lt;/refreshMode&gt;<br>
        &lt;refreshInterval&gt;3600&lt;/refreshInterval&gt;<br>      &lt;/Link&gt;<br>    &lt;/NetworkLink&gt;<br>    &lt;NetworkLink&gt;<br>      &lt;Link&gt;<br>        &lt;href&gt;<a href="http://example.com/phpsql_genkml_ls.kml">http://example.com/phpsql_genkml_ls.kml</a>&lt;/href&gt;<br>
        &lt;refreshMode&gt;onInterval&lt;/refreshMode&gt;<br>        &lt;refreshInterval&gt;3600&lt;/refreshInterval&gt;<br>      &lt;/Link&gt;<br>    &lt;/NetworkLink&gt;<br>  &lt;/Folder&gt;<br>&lt;/kml&gt;</font><br style="font-family: arial,helvetica,sans-serif;">
<br style="font-family: arial,helvetica,sans-serif;"><font style="font-family: arial,helvetica,sans-serif;" size="2">This indicates that the KML files are automatically reloaded by Google Maps every 3600 seconds. It looks like refreshMode and refreshInterval are part of the KML specification.  Does OpenLayers support this auto refresh functionality?</font><br>
<br><font style="font-family: arial,helvetica,sans-serif;" size="2">Cheers,<br><br>Andrew</font><br></pre><br><br><br>