Android错误:无法在包0中输入0x010802c0(t = 7 e = 704)(错误-75)

时间:2013-09-20 09:33:06

标签: javascript android html geolocation

我收到错误:

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>

在我的手机(三星Galaxy S2)上,我收到一条警告说“无法检测到当前位置”。我也在使用PhoneGap。

有人知道这可能是指什么吗?

感谢您的帮助!

0 个答案:

没有答案