<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial, helvetica, sans-serif;font-size:10pt"><div>I am trying to get google maps to show up under some gps track logs that are stored in a postgis database.<br><br>I modified google.html that comes in the examples/ folder to use my WMS server instead of whatever it was set to<br><br>My MAP file for MapServer is setup fairly basic and is shown at the bottom of this msg.<br><br>My modified google.html is shortly following.<br><br>The issue i am having though is that in IE 7, the WMS layer is non-transparent overtop the GoogleMaps layer(s).<br>In firefox the WMS layer isn't visible at all even though the layer is checked in the layer selector.&nbsp; It also pulls the image from my mapserver but doesn't display it over the google maps.<br><br>I'd appreciate any suggestions.<br><br>Curtis<br><br>GOOGLE.HTML---------------------------------<br><span></span><br>&nbsp;
 &lt;head&gt;<br>&nbsp;&nbsp;&nbsp; &lt;style type="text/css"&gt;<br>&nbsp;&nbsp;&nbsp; #map {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; width: 100%;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; height: 100%;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; border: 1px solid black;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; background-color: red;<br>&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp; body {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; margin: 0px;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; padding: 0px;<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &lt;/style&gt;<br><br><span>&nbsp;&nbsp;&nbsp; <script src="%3Ca%20target=" _blank="" href="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAR368KGH7sEpRSGVuyx9bqhQ6T14TsMnNzsQ2T02NPhpUqvH4JxTK1LZBrKRLBfC6g-XZbGjPbmWGvA">http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAR368KGH7sEpRSGVuyx9bqhQ6T14TsMnNzsQ2T02NPhpUqvH4JxTK1LZBrKRLBfC6g-XZbGjPbmWGvA</a>'></script></span><br>&nbsp;&nbsp;&nbsp;
 &lt;script src="lib/OpenLayers.js"&gt;&lt;/script&gt;<br>&nbsp;&nbsp;&nbsp; &lt;script type="text/javascript"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var lon = 5;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var lat = 40;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var zoom = 17;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var map, layer;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function init(){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map = new OpenLayers.Map( $('map') , <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { controls: [new OpenLayers.Control.MouseDefaults()] , 'numZoomLevels':20});<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var satellite = new OpenLayers.Layer.Google( "Google Satellite" , {type: G_SATELLITE_MAP, 'maxZoomLevel':18} );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 var hybrid = new OpenLayers.Layer.Google( "Google Hybrid" , {type: G_HYBRID_MAP, 'maxZoomLevel':18} );<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; map.addLayers([satellite,hybrid]);<br><span>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; var tracklog = new OpenLayers.Layer.WMS.Untiled( "Track Log", "<a target="_blank" href="http://lappie/cgi-bin/mapserv">http://lappie/cgi-bin/mapserv</a>?", </span><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {map: '/www/kismet/tracklog.map', transparent:'true', layers: 'Track Log',srs:'EPSG:4326', 'format':'gif'},{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; isBaseLayer:false } );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addLayer(tracklog);<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.setCenter(new
 OpenLayers.LonLat(-98.47,29.49), 15);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl( new OpenLayers.Control.LayerSwitcher() );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map.addControl( new OpenLayers.Control.PanZoomBar() );<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; // --&gt;<br><br>&nbsp;&nbsp;&nbsp; &lt;/script&gt;<br>&nbsp; &lt;/head&gt;<br>&nbsp; &lt;body onload="init()"&gt;<br>&nbsp;&nbsp;&nbsp; &lt;div id="map"&gt;&lt;/div&gt;<br>&nbsp; &lt;/body&gt;<br>&lt;/html&gt;<br><br><br>MAPFILE--------------------------------------------------------------------------<br>MAPFILE--------------------------------------------------------------------------<br>MAPFILE--------------------------------------------------------------------------<br><br>MAP<br>&nbsp;&nbsp;&nbsp; NAME "Track Log WMS"<br>&nbsp;&nbsp;&nbsp; IMAGETYPE
 gif<br>&nbsp;&nbsp;&nbsp; UNITS dd<br>&nbsp;&nbsp;&nbsp; IMAGECOLOR 255 255 255<br>&nbsp;&nbsp;&nbsp; PROJECTION <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "init=epsg:4326"<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; WEB<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; METADATA<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "wms_title"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "Track Log WMS"<br><span>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "wms_onlineresource"&nbsp; "<a target="_blank" href="http://lappie/cgi-bin/mapserv?map=/www/kismet/tracklog.map">http://lappie/cgi-bin/mapserv?map=/www/kismet/tracklog.map</a>&amp;"</span><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "wms_srs"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "EPSG:4326"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;
 OUTPUTFORMAT<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; NAME png<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DRIVER "GD/PNG"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; MIMETYPE "image/png"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; IMAGEMODE PC256<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; EXTENSION "png"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TRANSPARENT on<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; OUTPUTFORMAT<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; NAME gif<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DRIVER "GD/GIF"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; MIMETYPE "image/gif"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; IMAGEMODE PC256<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; EXTENSION "gif"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TRANSPARENT on<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; LAYER <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; NAME "Track Log"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CONNECTION "user=password
 password=password dbname=deathstar host=localhost"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CONNECTIONTYPE postgis<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DATA "point from track_log"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TYPE point<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; STATUS on<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; METADATA<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "wms_title" "Track Log"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; CLASS<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; STYLE<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; SYMBOL "circle"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; SIZE 5<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; COLOR 255 0 0 <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; SYMBOL<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; NAME "circle"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; TYPE ellipse<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; FILLED true<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; POINTS<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 1 1<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; END<br>END<br></div></div></body></html>