我正在使用Morphia 1.3.2
并将geoWithin
用作Filter Operator
。如何将以下MongoDB
查询转换为Morphia
?
db.tbl_user.find( { 'currentLocation.loc': { $geoWithin: { $centerSphere: [ [-122.2407038,47.7735104] ,10 / 3963.2 ] } } } )
我遵循了文档,但是只显示了near
界面。有什么方法可以实现within
的吗?