Appcelerator フォーラムに問い合わせてみましたが、回答がありません...誰かがここで助けてくれることを願っています - どんな助けも大歓迎です。
arrowdb カスタム オブジェクトにクエリを実行して、2 セットの座標から半径 5 マイル以内の結果を返そうとしています。
私のカスタム オブジェクトは次のようになります。
{
'name' : 'Text',
'coordinates': [
[long_1, lat_1],
[long_2, lat_2]
]
}
私のクエリオブジェクトは次のようになります。
{
'coordinates': [
{
$nearSphere: [ long_1, lat_1 ],
$maxDistance: 5/3959
},
{
$nearSphere: [ long_2, lat_2 ],
$maxDistance: 5/3959
]
}
応答:
{
code = 500;
error = 1;
message = "Internal server error. The Appcelerator Cloud Services Team has just been notified of this problem.";
success = 0;
}