如何使用mgo编写查询$ centerSphere

时间:2017-04-27 13:43:45

标签: mongodb go mgo

我已阅读文档here,讨论如何编写查询以获取半径内的某些位置:

db.restaurants.find({ location:
   { $geoWithin:
      { $centerSphere: [ [ -73.93414657, 40.82302903 ], 5 / 3963.2 ] } } })

现在我尝试使用mgo驱动程序编写它,但我不知道如何在此处编写它,我尝试过:

var cites []City

collection := mongo.DB("Db").C("Collection")

err = collection.Find(bson.M{
    "location": bson.M{
        "$geoWithin": bson.M{
            "$centerSphere" : [ [ -73.93414657, 40.82302903 ], 5 / 3963.2 ],
        },
    },
}).All(&cites)

是的,上面的代码绝对不起作用,因为我不知道如何在go中翻译这个[ [ -73.93414657, 40.82302903 ], 5 / 3963.2 ]

1 个答案:

答案 0 :(得分:2)

对于$centerSphere,您必须在[]interface{}类型的切片中传递中心点和半径,其中该点也是包含其坐标的切片,也可以是{{1}类型}。

[]interface{}

查看相关/可能重复的问题:

$literal usage in Golang-mgo