<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="guiWeather Live Lightning Weather Map"
             description="View the location and time for lightning strikes around the world as detected by the World Wide Lightning Location Network. This map shows strikes detected in the last 30 minutes."
             author="www.guiWeather.com"
             author_email="guiWeather@gmail.com"
             screenshot="http://www.guiWeather.com/mapplet/images/screen_shot_lightning.png"
             thumbnail="http://www.guiWeather.com/mapplet/images/thumbnail_lightning.png"
             height="500">
  <Require feature="sharedmap"/>
</ModulePrefs>
<Content type="html"><![CDATA[
    <div id="mapplet" style="position:relative; float:left; height:500px; width:300px; top:0px; left:0px; z-index:1;">
    </div>
    <script type="text/javascript" src="http://www.guiWeather.com/mapplet/lightningMapplet.js"></script>
    <script type="text/javascript">
        var mapplet = null;
        var map = new GMap2(document.getElementById("map"));

        function showData()
        {
        mapplet.getLightningInView()
        }

        mapplet = new Mapplet(map, document.getElementById('mapplet'));
        mapplet.setupMapForLightning(showData);
        mapplet.getLightningInView();

    </script>
]]></Content>
</Module>

