任何人都可以帮助我获取用户的纬度/经度位置。我尝试了很多东西但是我无法解决这个问题。如果有人有想法,请帮助我。
我是iPhone的初学者,所以请简要解释一下。
答案 0 :(得分:1)
我认为你的意思是在浏览器中(而不是本机应用程序),因为你已经将这个问题标记为javascript。您可以通过异步回调来完成:
//Function that does something once the device has a location
//May be called repeatedly
function handler(location) {
var longitude = location.coords.longitude;
var latitude = location.coords.latitude;
var accuracy = location.coords.accuracy
//Do something with them
}
//Register the handler and tell the phone to start finding a location
navigator.geolocation.getCurrentPosition(handler);
这是HTML5地理定位的全部内容,有草稿here。