function (serviceResult) {
serviceResult.result.features.features.map((item, index) => {
var feature = new GeoJSON();
style = new Style({
fill: new Fill({
color: that.color[index],
}),
});
var ls = feature.readFeatures({
type: serviceResult.result.features.type,
features: [serviceResult.result.features.features[index]],
});
vectorSource.addFeatures(feature);
});
that.PCIprojectLayer = new Vector({
source: vectorSource,
});
that.map.addLayer(that.PCIprojectLayer);
}