Update to multiple Google acceptance test to demonstrate issue with initially visible layer.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10017 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2010-02-03 23:55:04 +00:00
parent e3561c3ceb
commit 78a2289d6a

View File

@@ -37,9 +37,9 @@
<div id="map1" class="map"></div>
layers for map1
<ul>
<li><input type="checkbox" name="streets1" id="streets1"><label for="streets1">streets</label></li>
<li><input type="checkbox" name="sat1" id="sat1"><label for="sat1">imagery</label></li>
<li><input type="checkbox" name="topo1" id="topo1"><label for="topo1">topography</label></li>
<li><input type="checkbox" checked="checked" name="streets1" id="streets1"><label for="streets1">streets</label></li>
<li><input type="checkbox" checked="checked" name="sat1" id="sat1"><label for="sat1">imagery</label></li>
<li><input type="checkbox" checked="checked" name="topo1" id="topo1"><label for="topo1">topography</label></li>
</ul>
</div>
</div>
@@ -88,7 +88,7 @@
var dummy1 = new OpenLayers.Layer("Dummy Layer", {
isBaseLayer: true
});
map1.addLayer(dummy1);
map1.addLayers([streets1, sat1, topo1, dummy1]);
map1.addControl(new OpenLayers.Control.LayerSwitcher);
map1.zoomToMaxExtent();