这是我在这里提出的第一个问题,如果问得不好或者我的英语不好,请耐心等待。
我正在尝试在Node.js中的MongoDB中进行地理空间查询。
此查询工作正常
collection.find( { loc : { $geoWithin :
{ $centerSphere :
[ [ point.coordinates[0], point.coordinates[1]] , getRadiusMeters(radius) ]
} } } )
但是当我尝试用$ nearSphere做同样的事情时:
collection.find( { loc :{ $nearSphere :
{ $geometry :
{ type : "Point" ,
coordinates : [ point.coordinates[0], point.coordinates[1]] } ,
$maxDistance : getRadiusMeters(radius)
} } } )
我收到以下错误:
{ [MongoError: can't find any special indices: 2d (needs index), 2dsphere (needs index), for: { loc: { $nearSphere: { $geometry: { type: "Point", coordinates: [ 6.128777, 49.596792 ] }, $maxDistance: 10000 } } }] name: 'MongoError' }
我认为我有正确的索引。以下是我的索引:
> db.realtrip.getIndexes()
[
{
"v" : 1,
"key" : {
"_id" : 1
},
"ns" : "test.realtrip",
"name" : "_id_"
},
{
"v" : 1,
"key" : {
"loc" : "2dsphere"
},
"ns" : "test.realtrip",
"name" : "loc_2dsphere"
},
{
"v" : 1,
"key" : {
"tags" : 1
},
"ns" : "test.realtrip",
"name" : "tags_1"
},
{
"v" : 1,
"key" : {
"loc" : "2d"
},
"ns" : "test.realtrip",
"name" : "loc_2d"
}
]
我无法找到我做错的事。 $ centerSphere Query工作得很好,只有$ nearSphere Query给我错误。