MongoDB Lat Long问题

时间:2014-03-10 12:27:22

标签: mongodb

我正在运行此查询

{“geo”:{“$ geoWithin”:{“$ centerSphere”:[[37.7561438,-122.4325682],0.07583417593528817]}}}

我收到以下错误

引起:com.mongodb.MongoException:point(37.7561,-122.433)必须是长的地球边界:[ - 180,180],纬度:[ - 90,90]

我不确定为什么会发生此错误。请帮帮我。

谢谢。

1 个答案:

答案 0 :(得分:1)

我认为你已经转过来了

请尝试:

{"geo" : { "$geoWithin" : { "$centerSphere" : [ [ -122.4325682, 37.7561438] , 0.07583417593528817]}}}