我试图从geojson文件中获取点,但点的坐标是相反的,而不是(x,y)而不是(y,x)。
在地图上,我得到的地方并非真正在地图上。
我怎样才能在javascript中正确使用它?
这是我的代码,它取出点并为地图上的每个点绑定一个弹出窗口:
jQuery.getJSON("data/london_pois.geojson",function(data){
// add GeoJSON layer to the map once the file is loaded
L.geoJson(data,{
onEachFeature: function (feature, layer) {
layer.bindPopup(feature.properties.name);
}
}).addTo(map);
});
答案 0 :(得分:0)
我意识到我的问题不是编程问题,而是数据集太大了。
删除一些条目后,一切正常。