我正在开发一个 node.js 网络应用程序,我在其中使用 mongoose 和 MongoDB 进行存储。这是一个地理定位应用程序。所以有时我必须找到存储在数据库中的 10 个最近的地方。我有这种方法来计算这个距离:
var haversine = function(p1, p2) {
var R = 6371; // km
var dLat = toRad(p2.lat-p1.lat);
var dLon = toRad(p2.lon-p1.lon);
var lat1 = toRad(p1.lat);
var lat2 = toRad(p2.lat);
var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.sin(dLon/2) * Math.sin(dLon/2) * Math.cos(lat1) * Math.cos(lat2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c;
return d;
}
其中 p1 和 p2 是点 {lat: Integer, lon: Integer}。
那么,我该怎么做才能找到最近的地方呢?