S MongoDB 2.4 použijte index "2dsphere" pro body GeoJSON, LineStrings a Polygony.
Můžete například vytvořit tento index:
db.mycoll.ensureIndex( { loc : "2dsphere" } )
A uložte tento LineString:
{ loc : { type : "LineString" , coordinates : [ [ 1 , 2 ] , [ 3 , 4 ] ] } }
Viz http://docs.mongodb.org/manual/applications/2dsphere/ .