filtering either after projection or in the protocol->format->filter does not seem to be working at all. <br><br>var state = new OpenLayers.Layer.Vector("State", {<br> projection: map.displayProjection, <br>
filter: new OpenLayers.Filter.Comparison({<br> type: OpenLayers.Filter.Comparison.EQUAL_TO,<br> property: 'SCHMGT',<br> value: 2<br> }), <br>
strategies: [new OpenLayers.Strategy.Fixed()],<br> protocol: new OpenLayers.Protocol.HTTP({<br> url: "klm/GIS.json", <br> format: new OpenLayers.Format.GeoJSON({
<br> extractAttributes: true <br> <br> })<br> })<br> });<br>
<br>How does one implement a filter??