diff --git a/lib/OpenLayers/Layer/WFS.js b/lib/OpenLayers/Layer/WFS.js index 892500c947..2d685484b7 100644 --- a/lib/OpenLayers/Layer/WFS.js +++ b/lib/OpenLayers/Layer/WFS.js @@ -3,7 +3,8 @@ */ OpenLayers.Layer.WFS = Class.create(); OpenLayers.Layer.WFS.prototype = - Object.extend( new OpenLayers.Layer.Grid(), { + Object.extend(new OpenLayers.Layer.Grid(), + Object.extend(new OpenLayers.Layer.Marker(), { /** @final @type hash */ DEFAULT_PARAMS: { service: "WFS", @@ -62,4 +63,6 @@ OpenLayers.Layer.WFS.prototype = /** @final @type String */ CLASS_NAME: "OpenLayers.Layer.WFS" -}); +} +) +); \ No newline at end of file