1
我一直在使用sails.js的項目,將顯示用戶位置附近的帖子,但是雖然我沒有找到引用和工具來地址解析我找不到地址有關通過距離另一組座標來找到這些信息的任何信息,這是您使用常規mongodb的方式。我的地方模式是:Sails.js通過距離地理位置座標找到
module.exports = {
attributes: {
longitude: {
type: 'float',
required: true
},
latitude: {
type: 'float'
},
country: {
type: 'string'
},
city: {
type: 'string'
},
stateCode: {
type: 'string'
},
zipcode: {
type: 'string'
},
streetName: {
type: 'string'
},
streetNumber: {
type: 'string'
}
}
};
我將如何組成這一模式的發現,以查找和排序由一組範圍內的距離?