gpt4 book ai didi

titanium - 如何在钛中找到当前位置的经度和纬度?

转载 作者:行者123 更新时间:2023-12-04 22:07:44 24 4
gpt4 key购买 nike

如何在 titatnium 中显示警报中的当前位置点(钛中的地理定位)。我找不到任何好的教程。 .你能举个例子吗。

我在这找到了一些首先,您需要定义为什么要使用地理定位。此消息将显示给用户。Ti.Geolocation.purpose = "Location will be used for app X";这条线有什么用?我们可以在这里写任何东西吗 Location will be used for app X

最佳答案

我正在使用这个简单的代码,您可以打印带有纬度和经度变量的警报:

if(Ti.Network.online){
Ti.Geolocation.purpose = "Receive User Location";
Titanium.Geolocation.getCurrentPosition(function(e){

if (!e.success || e.error)
{
alert('Could not find the device location');
return;
}
var longitude = e.coords.longitude;
var latitude = e.coords.latitude;

alert("latitude: " + latitude + "longitude: " + longitude);

});
}else{
alert("Internet connection is required to use localization features");
}

关于titanium - 如何在钛中找到当前位置的经度和纬度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18699966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com