Alternatywnie do odpowiedzi @wdberkeley możesz użyć $geoWithin
zamiast $geoNear
scena.
db.landmarkSchema.aggregate([
{$match: {
$text: {$search: "great test text"} ,
loc: {$geoWithin: {$centerSphere: [[ 14.3, 48.3], 5/6731]}}
}}])
Uwaga:indeks geograficzny nie będzie używany!
Więcej informacji:http://docs.mongodb.org/manual/reference /operator/zapytanie/geoWithin/