如何在加载页面的PC浏览器(自动)中获取UC浏览器中的地理位置?

时间:2018-01-10 15:12:11

标签: javascript geolocation uc-browser

我在我的页面上设置了地理位置。它在除UC浏览器之外的所有浏览器上工作正常。

它在UC Browser Mobile上运行良好,但不适用于PC Broswer。

以下是点击时获取纬度和经度的示例代码。这不适用于UC浏览器PC。

<!DOCTYPE html>
<html>
<body>

<p>Click the button to get your coordinates.</p>

<button onclick="getLocation()">Try It</button>

<p id="demo"></p>

<script>
var x = document.getElementById("demo");

function getLocation() {
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition, showError);
    } else { 
        x.innerHTML = "Geolocation is not supported by this browser.";
    }
}

function showPosition(position) {
    x.innerHTML = "Latitude: " + position.coords.latitude + 
    "<br>Longitude: " + position.coords.longitude;
}

function showError(error) {
    switch(error.code) {
        case error.PERMISSION_DENIED:
            x.innerHTML = "User denied the request for Geolocation."
            break;
        case error.POSITION_UNAVAILABLE:
            x.innerHTML = "Location information is unavailable."
            break;
        case error.TIMEOUT:
            x.innerHTML = "The request to get user location timed out."
            break;
        case error.UNKNOWN_ERROR:
            x.innerHTML = "An unknown error occurred."
            break;
    }
}
</script>

</body>
</html>

请帮助我。

0 个答案:

没有答案
相关问题