我有以下查询来查找特定边界内的所有文档:
db.collection.find({
"location": {
"$geoWithin": {
"$box": [
[165.8694369, -52.61941849999999],
[-175.831536, -29.2313419]
]
}
}
});
此外,我还有这个界限的中心坐标:center_lat: -40.900557
,center_lng: 174.885971
。
是否可以对距离中心点最近的结果文档进行排序?