संदर्भ के लिए, GeoJSON आधिकारिक तौर पर Mongoose 3.6 में समर्थित है
रिलीज़ नोट यहाँ देखें।
उदाहरण (दस्तावेज़ों से):
new Schema({ loc: { type: [Number], index: '2dsphere'}})
... फिर ...
var geojsonPoly = { type: 'Polygon', coordinates: [[[-5,-5], ['-5',5], [5,5], [5,-5],[-5,'-5']]] }
Model.find({ loc: { $within: { $geometry: geojsonPoly }}})
// or
Model.where('loc').within.geometry(geojsonPoly)