为什么Command.geoNear(options: Object)这个接口不起作用?
在云函数中调用这个接口,如果设置minDistance = 0;maxDistance=5000,返回的个数是0。如果不设置minDistance和maxDistance, 返回的又是全部的点位。请问是什么原因?
return await targetDB.where({
location: _.geoNear({
geometry: db.Geo.Point(event.longitude, event.latitude),
// minDistance: event.minDistance,
// maxDistance: event.maxDistance
}),
}).get()