当我基于距离(即10km)查询我的集合时,API以相反的顺序(即最远的第一个)返回项目。这与文件所述相反。我怎样才能以正确的顺序获得它们。这是我的代码:
var options = {
type:"businesses",
client:dataClient,
qs:{ ql:"location within 10000 of " + geo.lat + ", " + geo.lon }
},
collection = new Apigee.Collection( options );
//Call request to initiate the API call
collection.fetch( function ( error, response ) {
if (error) {
//error
console.log( error );
} else {
//success
populateList( response );
}
});
答案 0 :(得分:0)
这是我们正在讨论的已知错误。目前,没有ETA何时会进行修复。