@wdberkeleyの回答の代わりに、$geoWithin
を使用できます。 $geoNear
の代わりに ステージ。
db.landmarkSchema.aggregate([
{$match: {
$text: {$search: "great test text"} ,
loc: {$geoWithin: {$centerSphere: [[ 14.3, 48.3], 5/6731]}}
}}])
注:地理インデックスは使用されません!
詳細情報: http://docs.mongodb.org/manual/reference / operator / query / geoWithin /