我已经尝试将以下功能和新的Vector Layer放入我的代码中。我将GeoJSON文件上传到我的BPlaced帐户,以便在我的代码中链接文件,是吗? Geojson与网站具有相同的坐标系。代码似乎也有效,但我没有看到任何Geojson。
还有另一种方法可以将GeoJSON嵌入OpenLayers吗?
这是我的代码:
var vectorLayerJSON = new ol.layer.Vector({
source: new ol.source.Vector({
format: new ol.format.GeoJSON(),
url: 'http://kristinab.bplaced.net/ALDI_LIDL_Buffer_KBS_3857.geojson'
}),
style: new ol.style.Style({
image: new ol.style.Circle(({
radius: 20,
fill: new ol.style.Fill({
color: '#ffff00'
})
}))
})
});
答案 0 :(得分:2)
欢迎来到SO:)
我相信有几种方法可以将矢量(geojson)数据添加到地图
1)使用geojson文件url加载向量:
var vectorLayerJSON_1 = new ol.source.Vector({
projection : 'EPSG:3857',
url: 'myFolder/yourFile_1.geojson',
format: new ol.format.GeoJSON()
});
2)从geojson对象生成矢量图层
var geojsonObject = {
'type': 'FeatureCollection',
'crs': {
'type': 'name',
'properties': {
'name': 'EPSG:3857'
}
},
'features': [{
'type': 'Feature',
'geometry': {
'type': 'Point',
'coordinates': [0, 0]
}
}, {
'type': 'Feature',
'geometry': {
'type': 'LineString',
'coordinates': [[456, -256], [816, 226]]
}...
var vectorLayerJSON_2 = new ol.source.Vector({
features: (new ol.format.GeoJSON()).readFeatures(geojsonObject)
});
有关OpenLayer 3示例页面Geojson Example
的更详细示例3)从ajax中读取矢量特征
var vectorLayerJSON_3 = new ol.layer.Vector({
renderMode: 'image',
source: new ol.source.Vector({
loader: function() {
$.ajax({
type: 'GET',
url: 'myFolder/yourFile_2.geojson',
context: this
}).done(function(data) {
var format = new ol.format.GeoJSON();
this.addFeatures(format.readFeatures(data));
});
}
}),
style: myDefinedStyle
});
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
}),
vectorLayerJSON_1,
vectorLayerJSON_2,
vectorLayerJSON_3
],
target: 'map',
view: new ol.View({
center: [0, 0],
zoom: 2
})
});
希望有所帮助:)