<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="guiWeather Tropical Weather Maps"
             description="This mapplet provides tropical weather and hurricane tracks as well as official forecast positions. Also, observations from buoys, ships, and reconnaissance aircraft is available."
             author="www.guiWeather.com"
             author_email="guiWeather@gmail.com"
             screenshot="http://www.guiWeather.com/mapplet/images/screen_shot_tropical.png"
             thumbnail="http://www.guiWeather.com/mapplet/images/thumbnail_tropical.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/tropicalMapplet.js"></script>
    <script type="text/javascript">
        var mapplet = null;
        var map = new GMap2(document.getElementById("map"));

        function showData()
        {
            mapplet.getShipsBuoysInView();
        }//end function showData()

        mapplet = new Mapplet(map, document.getElementById('mapplet'));

        mapplet.setupMapForShipsBuoys(showData);
        //let's put some current conditions in the map view
        mapplet.getNhcProducts();

    </script>
]]></Content>
</Module>

