我收到错误:
09-20 17:19:34.823: W/ResourceType(25329): Failure getting entry for 0x010802c0 (t=7 e=704) in package 0 (error -75)
当我单击“获取位置”按钮时。
我的代码如下:
<!DOCTYPE html>
<title>Taxi Friends</title>
<script type="text/javascript">
function getLocation(){
if(!navigator.geolocation){
alert("your browser doesn't support geolocation");
}
else {
navigator.geolocation.getCurrentPosition(success,error,enableHighAccuracy = true);
}
}
function success(position){
var lat = position.coords.latitude;
var lng = position.coords.longitude;
alert(lat + ', ' + lng);
}
function error(error){
switch (error.code) {
case error.PERMISSION_DENIED: alert("user did not share geolocation data");
break;
case error.POSITION_UNAVAILABLE: alert("could not detect current position");
break;
case error.TIMEOUT: alert("retrieving position timed out");
break;
default: alert("unknown error");
break;
}
//alert('sorry error occurred');
}
</script>
</head>
<body style="background-color:#FF9900;">
<input id="getLocation" type="button" value="Get Location" onclick="getLocation();" />
</body>
在我的手机(Samsung Galaxy S2)上,我收到“无法检测到当前位置”的警报。我也在使用PhoneGap。
有人知道这可能指的是什么吗?
谢谢您的帮助!