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