使用地理定位的Apigee Collection以相反的顺序返回实体

时间:2014-09-04 05:06:45

标签: apigee

当我基于距离(即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 );
        }
    });

1 个答案:

答案 0 :(得分:0)

这是我们正在讨论的已知错误。目前,没有ETA何时会进行修复。