Передача переменной в ближнюю сферу (Error Obj Obj) #appcelerator

С помощью

Cloud.Events.query({
            where: {
        lnglat: {
            '$nearSphere': [userlngglobal,userlatglobal],
            '$maxDistance': 0.00326
      }

Я пытался передать переменные, но продолжаю получать Error Obj Obj Я пытался использовать '$nearSphere': [JSON.stringify(userlngglobal),54] та же ошибка Переменная получается здесь

Ti.Geolocation.forwardGeocoder(textfield.getValue(), function(e) {
    Ti.API.info(e); 
    userlngglobal = e.longitude;
    userlatglobal = e.latitude;
    win.close();
     console.log('longitude' +userlngglobal);
         alert('latitude: '+userlatglobal);
    alert('youve updated it');
});

1 ответ

Решение

Ответ получен от команды Appcelerator

"$nearSphere":[Number(e.coords.longitude), Number(e.coords.latitude)]
Другие вопросы по тегам