我有一个使用geoNear的查询:
Organisation.collection.aggregate([
{
$geoNear: {
near: {
type: "Point",
coordinates: [
parseFloat(fromLocation.lng),
parseFloat(fromLocation.lat)
]},
spherical: true,
distanceField:'distance',
distanceMultiplier : 0.001609
}
}]
如何包含没有坐标值的项目?
nearSphere做了这个,但它没有让我在结果中包含距离字段。