¿Es posible filtrar el ol.layer.Vector con una fuente JSON y mostrar sólo características específicas?
Mi capa vectorial tiene este aspecto:
var vectorLayer = new ol.layer.Vector({
source: new ol.source.Vector({
format: new ol.format.GeoJSON(),
url: 'http://vagrant-test.local.com/json/countries.js'
}),
style: function(feature) {
return style;
}
});
Compruebo el ol3 documentación y no encontró la funcionalidad de algún filtro.