Wrap the OpenLayers.Util.createDiv routine
This commit is contained in:
parent
5275794aec
commit
4368ba9f11
1 changed files with 11 additions and 1 deletions
|
@ -28,6 +28,16 @@ OpenLayers.Util.imageURLs = {
|
|||
"img/zoom-world-mini.png": "<%= asset_path 'img/zoom-world-mini.png' %>"
|
||||
};
|
||||
|
||||
OpenLayers.Util.origCreateDiv = OpenLayers.Util.createDiv;
|
||||
|
||||
OpenLayers.Util.createDiv = function(id, px, sz, imgURL, position,
|
||||
border, overflow, opacity) {
|
||||
imgURL = OpenLayers.Util.imageURLs[imgURL] || imgURL;
|
||||
|
||||
return OpenLayers.Util.origCreateDiv(id, px, sz, imgURL, position,
|
||||
border, overflow, opacity);
|
||||
};
|
||||
|
||||
OpenLayers.Util.origCreateImage = OpenLayers.Util.createImage;
|
||||
|
||||
OpenLayers.Util.createImage = function(id, px, sz, imgURL, position, border,
|
||||
|
@ -46,6 +56,6 @@ OpenLayers.Util.modifyAlphaImageDiv = function(div, id, px, sz, imgURL,
|
|||
imgURL = OpenLayers.Util.imageURLs[imgURL] || imgURL;
|
||||
|
||||
return OpenLayers.Util.origModifyAlphaImageDiv(div, id, px, sz, imgURL,
|
||||
position, border, sizing,
|
||||
position, border, sizing,
|
||||
opacity);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue