Als alternatief voor het antwoord van @wdberkeley kunt u $geoWithin
. gebruiken in plaats van de $geoNear
podium.
db.landmarkSchema.aggregate([
{$match: {
$text: {$search: "great test text"} ,
loc: {$geoWithin: {$centerSphere: [[ 14.3, 48.3], 5/6731]}}
}}])
Opmerking:de geografische index wordt niet gebruikt!
Meer informatie:http://docs.mongodb.org/manual/reference /operator/query/geoWithin/