我正在使用express和mongoose构建一个api。我有一个Reviews集合,该集合具有一个存储geoJSON的位置字段。我正在尝试使用 aggregate 和 $ geoNear 查询我的评论集合。
这是我的ReviewSchema中的相关部分:
location: {
type: {
type: String,
default: 'Point'
},
coordinates: {
type: [Number]
}
}
我还添加了 2dsphere 索引:
ReviewSchema.index({ location: '2dsphere' });
我能够使用查找和 $ nearSphere 成功地查询集合:
router.get('/:longitude/:latitude/:dist', (req, res) => {
Review.find({
location: {
$nearSphere: {
$geometry: {
type: 'Point',
coordinates: [req.params.longitude, req.params.latitude]
},
$maxDistance: req.params.dist * 1609.34
}
}
})
.then(reviews => res.json(reviews))
});
当尝试使用聚合和$ geoNear时,出现错误:
“附近的字段必须是点”
这是带有查询的路线:
router.get('/:longitude/:latitude', (req, res) => {
Review.aggregate([{
$geoNear: {
near: {
type: "Point",
coordinates: [req.params.longitude, req.params.latitude]
},
spherical: true,
maxDistance: 10 * 1609,
distanceField: 'distance'
}
}])
.then(reviews => res.json(reviews))
.catch(err => console.log(err))
});
我查询的语法基于$ geoNear的mongoDB文档。我在猫鼬上使用不正确吗?非常感谢您的帮助!
答案 0 :(得分:2)
问题在于坐标始终应该是数字,而将其放置为String
因此将它们转换为整数或浮点值
Review.aggregate([{
"$geoNear": {
"near": {
"type": "Point",
"coordinates": [parseFloat(req.params.longitude), parseFloat(req.params.latitude)]
},
"spherical": true,
"maxDistance": 10 * 1609,
"distanceField": "distance"
}
}])
答案 1 :(得分:0)
要添加到这一点-地坐标也必须是有效的,并且查询是lng,lat-如果向后获取它们或仅指定无效的坐标,则会出现相同的错误。