我正在尝试从 SQL 查询到 postgis postgresql 数据库中的一些 GIS 点数据构建 GeoJSON 对象。下面是我的 node.js app.js 的一个片段。
就目前而言,我了解构建类型和功能,但不知道如何将属性数组附加到每个 GeoJSON 记录(在下面,它都在最后呈现,与功能分开(未整理)。
问题:我需要做什么才能为构建 GeoJSON 的循环中的每个记录附加(整理)属性,使其看起来更像这样http://www.geojson.org/geojson-spec.html#例子?
`function GrabData(bounds, res){
pg.connect(conn, function(err, client){
var moisql = 'SELECT ttl, (ST_AsGeoJSON(the_geom)) as locale from cpag;'
client.query(moisql, function(err, result){
var featureCollection = new FeatureCollection();
for(i=0; i<result.rows.length; i++){
featureCollection.features[i] = JSON.parse(result.rows[i].locale);
featureCollection.properties[i] = JSON.parse(result.rows[i].ttl); //this is wrong
}
res.send(featureCollection);
});
});
}
function FeatureCollection(){
this.type = 'FeatureCollection';
this.features = new Array();
this.properties = new Object; //this is wrong
}
`