git-svn-id: http://svn.openlayers.org/trunk/openlayers@167 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
36 lines
704 B
JavaScript
36 lines
704 B
JavaScript
/**
|
|
* @class
|
|
*/
|
|
OpenLayers.Tile.WFS = Class.create();
|
|
OpenLayers.Tile.WFS.prototype =
|
|
Object.extend( new OpenLayers.Tile(), {
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {OpenLayers.Bounds} bounds
|
|
* @param {String} url
|
|
* @param {OpenLayers.Size} size
|
|
*/
|
|
initialize: function(bounds, url, size) {
|
|
OpenLayers.Tile.prototype.initialize.apply(this, arguments);
|
|
},
|
|
|
|
/**
|
|
*/
|
|
draw:function() {
|
|
OpenLayers.Tile.prototype.draw.apply(this, arguments);
|
|
},
|
|
|
|
/**
|
|
* @param OpenLayers.Pixel
|
|
*/
|
|
setPosition:function(pixel) {
|
|
this.position = pixel;
|
|
},
|
|
|
|
/** @final @type String */
|
|
CLASS_NAME: "OpenLayers.Tile.WFS"
|
|
}
|
|
);
|