<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="guiWeather Current Weather Maps"
             description="See current weather conditions from stations around the world, and get a 5 day forecast for any point on the globe. Current tropical weather systems are mapped as well."
             author="www.guiWeather.com"
             author_email="guiWeather@gmail.com"
             screenshot="http://www.guiWeather.com/mapplet/images/screen_shot.png"
             thumbnail="http://www.guiWeather.com/mapplet/images/thumbnail.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/mapplet.js"></script>
    <script type="text/javascript">
        var mapplet = null;
        var map = new GMap2(document.getElementById("map"));

        function showData()
        {
            mapplet.getCurrentsInView();
        }//end test

        mapplet = new Mapplet(map, document.getElementById('mapplet'));

        mapplet.setupMapForCurrents(showData);

        //let's put some current conditions in the map view
        mapplet.getCurrentsInView();

    </script>
]]></Content>
</Module>

