猫鼬地理空间搜索:距离不起作用



我正在玩猫鼬和地理空间搜索,在按照教程和阅读这里的东西后,我仍然无法解决这个问题。

我的架构:

var mongoose = require("mongoose");
var Schema = mongoose.Schema;
var LocationSchema = new Schema({
    name: String,
    loc: {
        type: [Number],  // [<longitude>, <latitude>]
        index: '2dsphere'      // create the geospatial index
    }
});
module.exports = mongoose.model('Location', LocationSchema);

我的(开邮)路线:

router.post('/', function(req, res) {
    var db = new locationModel();
    var response = {};
    db.name = req.body.name;
    db.loc = req.body.loc;
    db.save(function(err) {
        if (err) {
            response = {
                "error": true,
                "message": "Error adding data"
            };
        } else {
            response = {
                "error": false,
                "message": "Data added"
            };
        }
        res.json(response);
    });
 });

我的 (GET) 路线:

router.get('/', function(req, res, next) {
    var limit = req.query.limit || 10;
    // get the max distance or set it to 8 kilometers
    var maxDistance = req.query.distance || 8;
    // we need to convert the distance to radians
    // the raduis of Earth is approximately 6371 kilometers
    maxDistance /= 6371;
    // get coordinates [ <longitude> , <latitude> ]
    var coords = [];
    coords[0] = req.query.longitude;
    coords[1] = req.query.latitude;
    // find a location
    locationModel.find({
        loc: {
            $near: coords,
            $maxDistance: maxDistance
        }
     }).limit(limit).exec(function(err, locations) {
         if (err) {
             return res.json(500, err);
         }
         res.json(200, locations);
     });
});

我可以在数据库中存储位置,但是每当我尝试搜索位置时,距离查询参数都不起作用。例如,如果我搜索一个距离数据库中的地方 200m 的地方,即使我输入 ?distance=1 (KM),我也不会得到结果,但如果我输入 300 (km) 之类的东西,我会得到一些结果。距离根本不匹配。

我做错了什么?

谢谢

我能够以这种方式阅读文档来修复它:

索引:"2dSphere"需要以下查询:

$near :
      {
        $geometry: { type: "Point",  coordinates: [ <lng>, <lat> ] },
        $minDistance: <minDistance>,
        $maxDistance: <maxDistance>
      }
}

而不是这个用于遗留索引的索引:"2d":

loc: {
    $near: [<lng>, <lat>],
    $maxDistance: <maxDistance>
}

我希望这将帮助某人:)

最新更新