Com o MongoDB 2.4, use o índice "2dsphere" para GeoJSON Points, LineStrings e Polygons.
Por exemplo, você pode criar este índice:
db.mycoll.ensureIndex( { loc : "2dsphere" } )
E armazene esta LineString:
{ loc : { type : "LineString" , coordinates : [ [ 1 , 2 ] , [ 3 , 4 ] ] } }
Consulte http://docs.mongodb.org/manual/applications/2dsphere/ .