作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下查询来查找特定范围内的所有文档:
db.collection.find({
"location": {
"$geoWithin": {
"$box": [
[165.8694369, -52.61941849999999],
[-175.831536, -29.2313419]
]
}
}
});
我还有这个边界的中心坐标:center_lat: -40.900557
, center_lng: 174.885971
。
是否可以按照离中心点最近到最远的顺序对结果文档进行排序?
最佳答案
$geoWithin 运算符不返回排序后的结果。因此,与排序结果的地理空间 $near 或 $nearSphere 查询相比,MongoDB 可以更快地返回 $geoWithin 查询。
https://www.mongodb.com/docs/manual/reference/operator/query/geoWithin/
关于mongodb - 如何使用 $geoWithin 条件从最近到最远对结果进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29210341/
我正在使用 react-native-elements ListItem.Accordion因为我的 React Native 中的所有其他内容 SectionList使用 ListItem s(并且
我是一名优秀的程序员,十分优秀!