When you click and don't drag, we zoom in, but we want to set performedDrag,
since that's how we ensure that we don't fire click. git-svn-id: http://svn.openlayers.org/branches/openlayers/2.0@1357 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -81,6 +81,7 @@ OpenLayers.Control.MouseDefaults.prototype =
|
|||||||
this.zoomBox.style.backgroundColor = "white";
|
this.zoomBox.style.backgroundColor = "white";
|
||||||
this.zoomBox.style.filter = "alpha(opacity=50)"; // IE
|
this.zoomBox.style.filter = "alpha(opacity=50)"; // IE
|
||||||
this.zoomBox.style.opacity = "0.50";
|
this.zoomBox.style.opacity = "0.50";
|
||||||
|
this.measureBox.style.fontSize = "1px";
|
||||||
this.zoomBox.style.zIndex = this.map.Z_INDEX_BASE["Popup"] - 1;
|
this.zoomBox.style.zIndex = this.map.Z_INDEX_BASE["Popup"] - 1;
|
||||||
this.map.viewPortDiv.appendChild(this.zoomBox);
|
this.map.viewPortDiv.appendChild(this.zoomBox);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -128,8 +128,10 @@ OpenLayers.Control.MouseToolbar.prototype =
|
|||||||
this.zoomBox.style.backgroundColor = "white";
|
this.zoomBox.style.backgroundColor = "white";
|
||||||
this.zoomBox.style.filter = "alpha(opacity=50)"; // IE
|
this.zoomBox.style.filter = "alpha(opacity=50)"; // IE
|
||||||
this.zoomBox.style.opacity = "0.50";
|
this.zoomBox.style.opacity = "0.50";
|
||||||
|
this.zoomBox.style.fontSize = "1px";
|
||||||
this.zoomBox.style.zIndex = this.map.Z_INDEX_BASE["Popup"] - 1;
|
this.zoomBox.style.zIndex = this.map.Z_INDEX_BASE["Popup"] - 1;
|
||||||
this.map.viewPortDiv.appendChild(this.zoomBox);
|
this.map.viewPortDiv.appendChild(this.zoomBox);
|
||||||
|
this.performedDrag = true;
|
||||||
break;
|
break;
|
||||||
case "measure":
|
case "measure":
|
||||||
var distance = "";
|
var distance = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user