MongoDB目前支持二维的地图查询,查询区域包括圆形与矩形,距离单位包括MILES,KILOMETERS,NEUTRAL,下面的示例演示距离单位为NEUTRAL,而实际生产应用中则会用到MILES与KILOMETERS.
MongoDB示例
首先定义一个位置集合,给定a,b,c,d节点.
> db.createCollection("location"){ "ok" : 1 }> db.location.save( {_id: "A", position: [0.1, -0.1],title:"位置1"} )> db.location.save( {_id: "B", position: [1.0, 1.0]} ,title:"位置2")> db.location.save( {_id: "C", position: [0.5, 0.5]},title:"位置3" )> db.location.save( {_id: "D", position: [-0.5, -0.5]},title:"位置4" )
接着指定location索引
db.location.ensureIndex( {position: "2d"} )
现在我们可以进行简单的GEO查询
查询point(0,0),半径0.7附近的点
> db.location.find( {position: { $near: [0,0], $maxDistance: 0.7 } } )Result:{ "_id" : "A", "position" : [ 0.1, -0.1 ] ,title:"位置1"}
查询point(0,0),半径0.75附近的点
> db.location.find( {position: { $near: [0,0], $maxDistance: 0.75 } } )Result:{ "_id" : "A", "position" : [ 0.1, -0.1 ] ,title:"位置1"}{ "_id" : "C", "position" : [ 0.5, 0.5 ] ,title:"位置3"}{ "_id" : "D", "position" : [ -0.5, -0.5 ],title:"位置4" }
我们可以看到半径不一样,查询出的点也不一样,因为c点坐标为[0.5,0.5],c至圆点的距离根据勾股定理可得出Math.sqrt(0.25 +0.25) ≈ 0.707,所以最大距离0.7时查找不到你要的点.
查询[0.25, 0.25], [1.0,1.0]区域附近的点
> db.location.find( {position: { $within: { $box: [ [0.25, 0.25], [1.0,1.0] ] } } } ){ "_id" : "C", "position" : [ 0.5, 0.5 ],title:"位置3" }{ "_id" : "B", "position" : [ 1, 1 ] ,title:"位置4"}