<div>Looking at it now I see the version that is working &quot;best&quot; is with the wms layer being untiled.</div><div><br></div><div>  function init(){</div><div>                // if this is just a coverage or a group of them, disable a few items,</div>
<div>                // and default to jpeg format</div><div>                format = &#39;image/png&#39;;</div><div><br></div><div>            </div><div>                var bounds = new OpenLayers.Bounds(</div><div>                    -19840232, 2028971.375,</div>
<div>                    -7262943, 11534410</div><div>                ); </div><div>                var options = {</div><div>                    controls: [],</div><div>                    maxResolution: 49130.03515625,</div>
<div>                    projection: &quot;EPSG:900913&quot;,</div><div>                    units: &#39;m&#39;</div><div>                };</div><div>                map = new OpenLayers.Map(&#39;map&#39;, options);</div>
<div><br></div><div>            var road = new OpenLayers.Layer.Bing({</div><div>                name: &quot;Road&quot;,</div><div>                key: apiKey,</div><div>                type: &quot;Road&quot;</div><div>            });</div>
<div>            var hybrid = new OpenLayers.Layer.Bing({</div><div>                name: &quot;Hybrid&quot;,</div><div>                key: apiKey,</div><div>                type: &quot;AerialWithLabels&quot;</div><div>            });</div>
<div>            var aerial = new OpenLayers.Layer.Bing({</div><div>                name: &quot;Aerial&quot;,</div><div>                key: apiKey,</div><div>                type: &quot;Aerial&quot;</div><div>            });</div>
<div><br></div><div>            map.addLayers([road, hybrid, aerial]);</div><div>            </div><div>            tiled = new OpenLayers.Layer.WMS(</div><div>                &quot;dwt_lata_proj - Untiled&quot;, &quot;<a href="http://localhost:8080/geoserver/wms">http://localhost:8080/geoserver/wms</a>&quot;,</div>
<div>                {</div><div>                    width: &#39;512&#39;,</div><div>                    srs: &#39;EPSG:900913&#39;,</div><div>                    layers: &#39;DWT:dwt_lata_proj&#39;,</div><div>                    height: &#39;386&#39;,</div>
<div>                    styles: &#39;&#39;,</div><div>                    format: format,</div><div>                    transparent:true,</div><div>                    numZoomLevels:19,</div><div>                    minResolution:0.5971642833948135,</div>
<div>                    maxResolution:156543.03390625</div><div>                },</div><div>                {singleTile: true, ratio: 1} </div><div>            );</div><div>            </div><div>            map.addLayer(untiled);</div>
<div><br></div><div>            // build up all controls            </div><div>            map.addControl(new OpenLayers.Control.PanZoomBar({</div><div>                position: new OpenLayers.Pixel(2, 15)</div><div>            }));</div>
<div>            map.addControl(new OpenLayers.Control.Navigation());</div><div>            map.addControl(new OpenLayers.Control.Scale($(&#39;scale&#39;)));</div><div>            map.addControl(new OpenLayers.Control.MousePosition({element: $(&#39;location&#39;)}));</div>
<div>            map.addControl(new OpenLayers.Control.LayerSwitcher());</div><br><div class="gmail_quote">On Thu, Jan 26, 2012 at 10:33 AM, maw269 <span dir="ltr">&lt;<a href="mailto:maw269@gmail.com">maw269@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Is your bing layer imagery? I&#39;ve had nothing but issues combining layers with<br>
Bing Imagery layers.<br>
Anyhow, can you post the relevant code so we could take a look?<br>
--Matt<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.n6.nabble.com/overlaying-tiled-WMS-on-top-of-bing-tp4341145p4341275.html" target="_blank">http://osgeo-org.1560.n6.nabble.com/overlaying-tiled-WMS-on-top-of-bing-tp4341145p4341275.html</a><br>

Sent from the OpenLayers Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.osgeo.org">Users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</font></span></blockquote></div><br>