我正在使用Openlayers 3并希望添加一个图层,其中TurfJS函数“merge”的答案应该是源代码。 直接在OpenLayers 3中添加GeoJSON层不是问题,并且工作正常。 但是当我在变量中加载GeoJSON-File时使用turf.merge(source),这不能再添加到图层中了。 我已经尝试在FeatureCollection中转换turf.merge的答案并将其添加为图层源,但这也无法正常工作
//define source (contains Polygons)
var source = new ol.source.Vector({
url: 'geb03_f_source.geojson',
format: new ol.format.GeoJSON({
})
});
//Merge source
var merged = turf.merge(source);
//define layer
var vectorLayer = new ol.layer.Vector({
source: merged,
projection: 'EPSG:3857'
});
//add layer to map
map.addLayer(vectorLayer);
我看到的问题是,在加载页面时,GeoJSON-File没有加载,尽管它应该。
但只需加载并显示文件即可:
var source = new ol.source.Vector({
url: 'geb03_f_source.geojson',
format: new ol.format.GeoJSON({
})
});
var vectorLayer = new ol.layer.Vector({
source: source,
projection: 'EPSG:3857'
});
map.addLayer(vectorLayer);
使用turfs merge时,GeoJSON-Fomat可能出错了? 我很高兴能得到一切帮助!
答案 0 :(得分:0)
Turf JS使用GeoJSON作为输入和输出,您提供OpenLayers矢量源对象作为输入。所以你需要改变它。
一种选择是使用loader
而不是ol.source.Vector
和url
的{{1}}选项直接合并GeoJSON多边形,然后再将其添加到源中。
另一种选择是将ol源重新转换为GeoJSON,例如:
format