发布网友 发布时间:2022-04-21 22:32
共1个回答
热心网友 时间:2022-04-07 23:22
MongoDB有2D空间索引,做这种应用很方便。https://foursquare.com/ 目前用的就是MongoDB做的LBS服务。
简单如下:
# 插入数据 lng对应经度 lat对应纬度 均为float型
db.collection.insert({location:[lng,lat],title:'test title'})
# 创建2D空间索引
# 2dsphere支持球面检索 2d二维空间搜索
db.collection.ensureIndex({location:'2dsphere'})
# 按照半径搜索 搜索半径内的所有的点 按照由近到远排序
db.collection.find(
{
location:
{
$geoWithin:
{
$centerSphere: [ [lng, lat], 检索半径]
}
}
}
)
# 搜索全部数据 按照由近到远排序
db.collection.find(
{
location:
{
$near:
[lng, lat]
}
}
)
搜索出的结果已经是由远到近排序了,如果需要输出距离计算。$geoNear搜索返回的数据中已有distance(距离),不过不支持其他命令,如limit