我有一个mongodb查询:
db.location.find( { loc :
{ $geoWithin :
{ $centerSphere :
[ [ 60 , -60 ] , 50 / 3963.2 ]
} } } ).limit(5)
我尝试使用mongodb的Java驱动程序编写它,但它不起作用。我们如何在Java中为mongodb(http://mongodb.github.io/mongo-java-driver/3.0/driver-async/getting-started/quick-tour/)
编写空间查询