环回的近过滤器返回我所有的对象或什么也没有。尝试了不同的选项,但没有正确的结果。也许我已经跳过了一步。这是我的代码:
Status.getMeasurementPosition = function(userLocation, cb)
{
const Measurement = Status.app.models.Measurement;
Measurement
.find(
{
where: {
location: { near: userLocation}
},
limit: 3},
function(err,measurements){
cb(null,measurements);
});
}
userLocation在这里是一个GeoPoint对象。
以下是我的测量模型中的代码
"location":{
"type":"GeoPoint"
}
希望有人能帮助我。