geoNear mongoose包括没有坐标的项目

时间:2015-11-12 20:45:33

标签: node.js mongodb mongoose

我有一个使用geoNear的查询:

      Organisation.collection.aggregate([
                {  
                  $geoNear: {
                    near: { 
                          type: "Point", 
                          coordinates: [
                                       parseFloat(fromLocation.lng),  
                                       parseFloat(fromLocation.lat)
                    ]},
                    spherical: true,
                    distanceField:'distance',
                    distanceMultiplier : 0.001609
                }
            }]

如何包含没有坐标值的项目?

nearSphere做了这个,但它没有让我在结果中包含距离字段。

0 个答案:

没有答案