real fix for #189 -- event wasnt being triggered, and wihtout the clone(), control was floating down the div
git-svn-id: http://svn.openlayers.org/branches/openlayers/2.0@1305 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -189,7 +189,7 @@ OpenLayers.Control.LayerSwitcher.prototype =
|
|||||||
for(var i=0; i < this.baseLayerInputs.length; i++) {
|
for(var i=0; i < this.baseLayerInputs.length; i++) {
|
||||||
var input = this.baseLayerInputs[i];
|
var input = this.baseLayerInputs[i];
|
||||||
if (input.checked) {
|
if (input.checked) {
|
||||||
this.map.setBaseLayer(input.layer, true);
|
this.map.setBaseLayer(input.layer, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,6 @@ OpenLayers.Control.PanZoomBar.prototype =
|
|||||||
*/
|
*/
|
||||||
setMap: function(map) {
|
setMap: function(map) {
|
||||||
OpenLayers.Control.PanZoom.prototype.setMap.apply(this, arguments);
|
OpenLayers.Control.PanZoom.prototype.setMap.apply(this, arguments);
|
||||||
|
|
||||||
this.map.events.register("changebaselayer", this, this.redraw);
|
this.map.events.register("changebaselayer", this, this.redraw);
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -52,7 +51,7 @@ OpenLayers.Control.PanZoomBar.prototype =
|
|||||||
draw: function(px) {
|
draw: function(px) {
|
||||||
// initialize our internal div
|
// initialize our internal div
|
||||||
OpenLayers.Control.prototype.draw.apply(this, arguments);
|
OpenLayers.Control.prototype.draw.apply(this, arguments);
|
||||||
px = this.position;
|
px = this.position.clone();
|
||||||
|
|
||||||
// place the controls
|
// place the controls
|
||||||
this.buttons = new Array();
|
this.buttons = new Array();
|
||||||
|
|||||||
Reference in New Issue
Block a user