--- a/labs/openlayers/lib/OpenLayers/Tile/Image/IFrame.js +++ b/labs/openlayers/lib/OpenLayers/Tile/Image/IFrame.js @@ -1,1 +1,263 @@ - +/* Copyright (c) 2006-2010 by OpenLayers Contributors (see authors.txt for + * full list of contributors). Published under the Clear BSD license. + * See http://svn.openlayers.org/trunk/openlayers/license.txt for the + * full text of the license. */ + + +/** + * @requires OpenLayers/Tile/Image.js + */ + +/** + * Class: OpenLayers.Tile.Image.IFrame + * Instances of OpenLayers.Tile.Image.IFrame are used to manage the image tiles + * used by Layer.WMS.Post loaded via HTTP-POST-protocol. Create a new image + * tile with the constructor. + * + * Inherits from: + * - + */ +OpenLayers.Tile.Image.IFrame = OpenLayers.Class(OpenLayers.Tile.Image, { + + /** + * Property: layerAlphaHack + * {Boolean} Always false for an instance. + */ + + /** + * Constructor: OpenLayers.Tile.Image.IFrame + * Constructor for a new instance. + * + * Parameters: + * layer - {} layer that the tile will go in. + * position - {} + * bounds - {} + * size - {} + */ + initialize: function(layer, position, bounds, url, size) { + OpenLayers.Tile.Image.prototype.initialize.apply(this, arguments); + this.layerAlphaHack = false; + }, + + /** + * Method: destroy + * nullify references to prevent circular references and memory leaks + */ + destroy: function() { + if(this.imgDiv != null) { + // unregister the "load" handler + OpenLayers.Event.stopObservingElement(this.imgDiv.firstChild); + } + OpenLayers.Tile.Image.prototype.destroy.apply(this, arguments); + }, + + /** + * Method: clear + * Removes the iframe from DOM (avoids back-button problems). + */ + clear: function() { + if(this.imgDiv) { + var iFrame = this.imgDiv.firstChild; + OpenLayers.Event.stopObservingElement(iFrame); + this.imgDiv.removeChild(iFrame); + } + }, + + /** + * Method: clone + * + * Parameters: + * obj - {} The tile to be cloned + * + * Returns: + * {} An exact clone of this + * + */ + clone: function (obj) { + if (obj == null) { + obj = new OpenLayers.Tile.Image.IFrame( + this.layer, this.position, this.bounds, this.url, this.size); + } + + //pick up properties from superclass + obj = OpenLayers.Tile.Image.prototype.clone.apply(this, [obj]); + + return obj; + }, + + /** + * Method: renderTile + */ + renderTile: function() { + if(OpenLayers.Tile.Image.prototype.renderTile.apply(this, arguments)) { + // create a html form and add it temporary to the layer div + var form = this.createRequestForm(); + this.imgDiv.appendChild(form); + + // submit the form (means fetching the image) + form.submit(); + this.imgDiv.removeChild(form); + } + }, + + /** + * Method: initImgDiv + * Creates the imgDiv property on the tile. + */ + initImgDiv: function() { + this.imgDiv = this.createImgDiv(); + + OpenLayers.Util.modifyDOMElement(this.imgDiv, this.id, null, + this.layer.getImageSize(), "relative"); + this.imgDiv.className = 'olTileImage'; + + this.frame.appendChild(this.imgDiv); + this.layer.div.appendChild(this.frame); + + if(this.layer.opacity != null) { + + OpenLayers.Util.modifyDOMElement(this.imgDiv, null, null, null, + null, null, null, + this.layer.opacity); + } + + // we need this reference to check back the viewRequestID + this.imgDiv.map = this.layer.map; + }, + + /** + * Method: createImgDiv + * Creates a div with iframe.and eventPane + * + * Returns: + * {DOMElement} + */ + createImgDiv: function() { + var eventPane = document.createElement("div"); + + if(OpenLayers.Util.getBrowserName() == "msie") { + // IE cannot handle events on elements without backgroundcolor. So we + // use this little hack to make elements transparent + eventPane.style.backgroundColor = '#FFFFFF'; + eventPane.style.filter = 'chroma(color=#FFFFFF)'; + } + + OpenLayers.Util.modifyDOMElement(eventPane, null, + new OpenLayers.Pixel(0,0), this.layer.getImageSize(), "absolute"); + + var imgDiv = document.createElement("div"); + imgDiv.appendChild(eventPane); + return imgDiv; + }, + + /** + * Method: createIFrame + * Create the IFrame which shows the image. + * + * Returns: + * {DOMElement} Iframe + */ + createIFrame: function() { + var id = this.id+'_iFrame'; + var iframe; + if(OpenLayers.Util.getBrowserName() == "msie") { + // InternetExplorer does not set the name attribute of an iFrame + // properly via DOM manipulation, so we need to do it on our own with + // this hack. + iframe = document.createElement('