Alternativně k odpovědi @wdberkeley můžete použít $geoWithin
místo $geoNear
fázi.
db.landmarkSchema.aggregate([
{$match: {
$text: {$search: "great test text"} ,
loc: {$geoWithin: {$centerSphere: [[ 14.3, 48.3], 5/6731]}}
}}])
Poznámka:Geo index nebude použit!
Další informace:http://docs.mongodb.org/manual/reference /operator/query/geoWithin/