Để tham khảo, GeoJSON được hỗ trợ chính thức trong Mongoose 3.6
Xem ghi chú phát hành tại đây.
Ví dụ (từ tài liệu):
new Schema({ loc: { type: [Number], index: '2dsphere'}})
... sau đó ...
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)