Dengan MongoDB 2.4 gunakan indeks "2dsphere" untuk GeoJSON Points, LineStrings dan Polygons.
Misalnya, Anda dapat membuat indeks ini:
db.mycoll.ensureIndex( { loc : "2dsphere" } )
Dan simpan LineString ini:
{ loc : { type : "LineString" , coordinates : [ [ 1 , 2 ] , [ 3 , 4 ] ] } }
Lihat http://docs.mongodb.org/manual/applications/2dsphere/ .