Hi,<div><br></div><div>I&#39;m trying to create  a vector layer from a WFS, and limiting to 150 features, in this way:</div><div><br></div><div><div>wfs = new OpenLayers.Layer.Vector(&quot;WFS&quot;, {</div><div>    strategies: [new OpenLayers.Strategy.BBOX()],</div>
<div>        protocol: new OpenLayers.Protocol.WFS({</div><div>            url: &quot;<a href="http://localhost:8080/geoserver/wfs">http://localhost:8080/geoserver/wfs</a>&quot;,</div><div>            featureType: &quot;test_points&quot;,</div>
<div>            featureNS: &quot;<a href="http://www.mapmap.org/g4wd">http://www.mapmap.org/g4wd</a>&quot;,</div><div>            extractAttributes: false,</div><div>            maxFeatures: &quot;150&quot;</div><div>        }),</div>
<div>        styleMap: myStyles</div><div>    });</div><div><br></div><div>And the 150 features are displayed ok. The best way to refresh the features when zooming or moving, is to catch each event and call to the refresh method of the vector layer? Or is there any way to make an automatic refresh?</div>
<div><br></div><div>Thanks!</div></div>