从函数外部调用位置坐标 [英] Call location coordinates from outside the function

查看:24
本文介绍了从函数外部调用位置坐标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试从 getCurrentPosition 访问经纬度,以便我可以创建一个用于 API 的 URL.如果您从函数内部调用它,或者如果您在警报上设置超时(在函数外部),这是有效的,因为当前位置需要一些时间来确定坐标.如何访问坐标变量和/或 URL 一?谢谢

I'm try to access the lat and long from getCurrentPosition so that I can create a URL to use with an API. This is working if you call it from within the function or if you set a timeout on an alert(outside the function), as the current position takes a few moments to determine the coordinates. How can I access coords variables and/or the URL one? Thank you

  var coords1;
  var coords2;

  if (Ti.Geolocation.locationServicesEnabled) {
  Titanium.Geolocation.purpose = 'Get Current Location';
  Titanium.Geolocation.getCurrentPosition(function(e) {
    if (e.error) {
        Ti.API.error('Error: ' + e.error);
    } else {
        coords1 = e.coords.longitude;
        coords1 = e.coords.latitude;
    }
  });
  } else {

    alert('Please enable location services');
  } 


  var url = "http://www.mywebsite.com/api/return-latlong/"+coords1+"/"+coords2;
  var xhr = Ti.Network.createHTTPClient({
    onload: function(e) {
        // this function is called when data is returned from the server and available for use
        // this.responseText holds the raw text return of the message (used for text/JSON)
        // this.responseXML holds any returned XML (including SOAP)
        // this.responseData holds any returned binary data
        Ti.API.debug(this.responseText);
        alert('success');
    },
    onerror: function(e) {
        // this function is called when an error occurs, including a timeout
        Ti.API.debug(e.error);
        alert('error');
    },
    timeout:5000  // in milliseconds
   });
   xhr.open("GET", url);
   xhr.send();  // request is actually sent with this statement


  alert(url);

推荐答案

不确定我是否真的明白你的问题,但你可以为你的 api http 请求使用一个函数,并在你获得当前位置的坐标时调用它,比如以下内容:

not sure I really get your problem, but you can use a function for your api http request, and call it when you obtain the current position's coords, something like the following:

if (Ti.Geolocation.locationServicesEnabled) {
  Titanium.Geolocation.purpose = 'Get Current Location';
  Titanium.Geolocation.getCurrentPosition(function(e) {
    if (e.error) {
        Ti.API.error('Error: ' + e.error);
      } else {

        var latitude = e.coords.latitude;
        var longitude = e.coords.longitude;

        // make the http request when coords are set
        apiCall(latitude, longitude);
    }
  });
} else {
    alert('Please enable location services');
}

function apiCall(lat, long) {
  var url = "http://www.mywebsite.com/api/return-latlong/" + lat + "/" + long;
  alert(url);

  var xhr = Ti.Network.createHTTPClient({
    onload: function(e) {
        Ti.API.debug(this.responseText);
        alert('success');
    },
    onerror: function(e) {
        Ti.API.debug(e.error);
        alert('error');
    },
    timeout:5000  
  });

  xhr.open("GET", url);
  xhr.send(); 
}

第 H.

这篇关于从函数外部调用位置坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆