From a5671cd4521d20bcf59441c043d2601693c080d1 Mon Sep 17 00:00:00 2001 From: euzuro Date: Fri, 19 May 2006 14:48:26 +0000 Subject: [PATCH] subclass WFS layer off of Layer.Marker as well. git-svn-id: http://svn.openlayers.org/trunk/openlayers@178 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/WFS.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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