Sebagai referensi, GeoJSON secara resmi didukung di Mongoose 3.6
Lihat catatan rilis di sini.
Contoh (dari dokumen):
new Schema({ loc: { type: [Number], index: '2dsphere'}})
... lalu ...
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)