【发布时间】:2016-05-17 01:35:55
【问题描述】:
我在玩猫鼬和地理空间搜索,在按照教程和阅读这里的东西之后,我仍然无法解决这个问题。
我的架构:
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);
我的(POST)路线:
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) 之类的东西,我会得到一些结果。距离根本不匹配。
我做错了什么?
谢谢
【问题讨论】:
标签: node.js mongodb mongoose geojson