我创建了一个网站(可以通过http://dev.gkr33.com访问),该网站是为智能手机设计的,它尝试使用navigator.geolocation api并通过getCurrentPosition抢占您的位置。最初似乎可以使用此功能,但是如果您尝试刷新页面,它总是会带回最新的GPS位置。我在页面上添加了一些调试信息,该信息掌握了getCurrentPosition返回的时间,并且在初始定位之后,它总是返回相同的时间(以毫秒为单位)。

这似乎仅在Chrome Mobile中发生。如果我通过普通的Android浏览器浏览该网站,则每次都可以正常运行。

代码如下所示;

<script type="text/javascript">
    (function ($) {
    $(document).ready(function() {
        var options = { enableHighAccuracy: true, maximumAge: 0, timeout: 60000 };
        var position;

        // empty the current html elements, not strictly necessary but
        // I'm clutching at straws
        $('#debug-latlng').empty();
        $('#debug-time').empty();
        $('#debug-address').empty();

        // Let's try and find out where we are
        if(navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(gotPos, gotErr, options );
        } else {
            gotErr();
        }

        // We've got our position, let's show map and update user
        function gotPos(position) {
            var info;
            info = position.coords.latitude+','+position.coords.longitude;
            $('#debug-latlng').text(info);
            $('#debug-time').text(parseTimestamp(position.timestamp));

            // the following json call will translate the longitude and
            // latitude into an address (a wrapper for google's geocode call)

            $.getJSON('http://dev.gkr33.com/api.php', { req: "getLocationInfo", latlng: $('#debug-latlng').text() }, function(json) {
                $('#debug-address').text( json['results'][0]['formatted_address'] );
            });

            var myLatLng = new google.maps.LatLng( position.coords.latitude, position.coords.longitude );
            var mapOptions = {
                    zoom: 12,
                    center: myLatLng,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);

            var marker = new google.maps.Marker({
                position: myLatLng,
                title: 'You are here',
                animation: google.maps.Animation.DROP
            });
            marker.setMap(map);
        } //gotPos


        // Trap a GPS error, log it to console and display on site
        function gotErr(error) {
            var errors = {
                    1: 'Permission denied',
                    2: 'Position unavailable',
                    3: 'Request timeout'
                };
            console.log("Error: " + errors[error.code]);
            $('#debug-latlng').text('GPS position not available');
        } //gotErr

        // Make timestamp human readable
        function parseTimestamp(timestamp) {
            var d = new Date(timestamp);
            var day = d.getDate();
            var month = d.getMonth() + 1;
            var year = d.getFullYear();
            var hour = d.getHours();
            var mins = d.getMinutes();
            var secs = d.getSeconds();
            var msec = d.getMilliseconds();
            return day + "." + month + "." + year + " " + hour + ":" + mins + ":" + secs + "," + msec;
        } // parseTimestamp
    });
}) (jQuery);
</script>


我为maximateAge和timeout使用了各种值,但是似乎没有什么会影响相同的position.coords和position.time值。

我认为Chrome Mobile可能存在问题,但我现在不想承担太多责任,只需要澄清一下,我并未在代码中弄错类似木偶的比例。

非常感谢您提供的任何帮助。

更新:我想我应该说我已经在两台Android设备上测试过; HTC One X +和Samsung Galaxy Tab 7.7的结果相同。在两种浏览器上都可以正常工作,并且在两种浏览器上都不会刷新排名。稍后将在Apple设备上进行测试:)

最佳答案

我从没有深入了解此问题,但是通过利用watchPosition调用并在清除watchID之前将其包装5秒钟,可以解决该问题。检查以下代码:

var options = { enableHighAccuracy: true, maximumAge: 100, timeout: 50000 };
if( navigator.geolocation) {
   var watchID = navigator.geolocation.watchPosition( gotPos, gotErr, options );
   var timeout = setTimeout( function() { navigator.geolocation.clearWatch( watchID ); }, 5000 );
} else {
   gotErr();
}


目前,我还没有使用“ options”值或超时延迟,但是上面的代码在我尝试过的每个平台上都提供了准确的定位信息。

希望这可以帮助遇到同样问题的人:)

10-05 20:25