I have written some code to hide specific markers in our maps based on checkboxes outside of the map itself. However, these markers also have vector features too (really on separate layers) but I want to just hide the features rather than destroy them. I tried using display(false) but get errors. Is there a function for hiding vectors?
|
SolutionChange the According to comments in OpenLayers code:
Example CodeFor a given OpenLayers layer variable called
This iterates over all features in a layer, allowing full control of the specific features to hide. |
|||||||||||||||
|
|
I have wrestled with OpenLayers a few times trying to get my features within the same layer to display exactly as I want. @igorti's solution overrides all of the feature's style properties, so I don't recommend this approach unless you have no reason to re-display the feature later on (in which case the Hiding Vector FeaturesThe way I do this is to manually set the feature's style display to
Re-Displaying Vector FeaturesRe-displaying hidden features is a little bit trickier depending on your situation. Take a look at the OpenLayers documentation on styling for some possibilities. But in general, if I need to display the feature again, I set the feature's style attribute to
So your display function might look something like this:
Other ApproachesThere are a couple other approaches to doing this. You can set the feature's fillOpacity and strokeOpacity to 0, like so:
The downside to this approach is that any active map controls will still be able to interact with the "hidden" feature, so if a user accidentally clicks or hovers over the feature these events will still fire. You can also create a style within your layer's styleMap called hidden, with either of the two approaches above. Then to hide a feature, simply change the feature's renderIntent to Finally, you can add subsets of your features to separate layers, and call the layer's |
||||
|
|
|
You can set display:'none' in style property. So that features will not be display |
|||
|
|
|
It was not clear from your question whether you've already tried it, but if you haven't you might try the setVisibility() method. |
|||||
|