0
はol.format.WKT.readFeatureをol.featureに追加する方法です 私は単一のレイヤーに複数のフィーチャーを追加しようとしますが、wktをジオメトリとして使用することはできません。各機能Openlayers 3は、ol.featureにWKTを追加します
これは私のコードですので、このコードで複数のレイヤーが作成されます。私が望むのは、複数の機能を備えた単一のレイヤーだけです。
for (var i = 0; i <= data.length - 1 ; i++)
{
thisfill = fill;
thisstroke = stroke;
var styles = [new ol.style.Style({
image: new ol.style.Circle({
fill: thisfill,
stroke: thisstroke,
radius: 5
}),
fill: thisfill,
stroke: thisstroke
})];
customBldgLayerDC = new ol.layer.Vector({
source: new ol.source.Vector({
features: [feature],
}),
style: styles,
});
map.addLayer(customBldgLayerDC);
}