24

我正在尝试使用嵌入式 GPS 定位设备(例如应用程序共享位置)。我读过它是可能的enableHighAccuracy: true

如何enableHighAccuracy: true在此代码中设置?我尝试了不同的位置,但它不起作用。

<script type="text/javascript">
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(function(position) {
            var latitude = position.coords.latitude;
            var longitude = position.coords.longitude;
            var accuracy = position.coords.accuracy;
            var coords = new google.maps.LatLng(latitude, longitude);
            var mapOptions = {
                zoom: 15,
                center: coords,
                mapTypeControl: true,
                navigationControlOptions: {
                    style: google.maps.NavigationControlStyle.SMALL
                },
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };

            var capa = document.getElementById("capa");
            capa.innerHTML = "latitude: " + latitude + ", longitude: " + ", accuracy: " + accuracy;  

            map = new google.maps.Map(document.getElementById("mapContainer"), mapOptions);
            var marker = new google.maps.Marker({
                position: coords,
                map: map,
                title: "ok"
            });
        });

    } else {
        alert("Geolocation API is not supported in your browser.");
    }

</script>
4

3 回答 3

33

您需要一个PositionOptions对象,您可以在其中按照 API 设置高精度标志。

我从这里引用: http: //diveintohtml5.info/geolocation.html

getCurrentPosition() 函数有一个可选的第三个参数,即 PositionOptions 对象。您可以在 PositionOptions 对象中设置三个属性。所有属性都是可选的。您可以设置任何或全部或不设置。

POSITIONOPTIONS OBJECT

Property            Type        Default         Notes
--------------------------------------------------------------
enableHighAccuracy  Boolean     false           true might be slower
timeout             long        (no default)    in milliseconds
maximumAge          long        0               in milliseconds

所以,它应该像这样工作:

if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(function(position) {
        var latitude = position.coords.latitude;
        var longitude = position.coords.longitude;
        var accuracy = position.coords.accuracy;
        var coords = new google.maps.LatLng(latitude, longitude);
        var mapOptions = {
            zoom: 15,
            center: coords,
            mapTypeControl: true,
            navigationControlOptions: {
                style: google.maps.NavigationControlStyle.SMALL
            },
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

        var capa = document.getElementById("capa");
        capa.innerHTML = "latitude: " + latitude + ", longitude: " + ", accuracy: " + accuracy;

        map = new google.maps.Map(document.getElementById("mapContainer"), mapOptions);
        var marker = new google.maps.Marker({
            position: coords,
            map: map,
            title: "ok"
        });

    },
    function error(msg) {alert('Please enable your GPS position feature.');},
    {maximumAge:10000, timeout:5000, enableHighAccuracy: true});
} else {
    alert("Geolocation API is not supported in your browser.");
}

注意到我添加了以下 2 个参数来getCurrentPosition调用:

  1. function error(msg){alert('Please enable your GPS position future.');}

    当无法检索 GPS 或已触发超时时调用此函数。

  2. {maximumAge:10000, timeout:5000, enableHighAccuracy: true});

    这些是选项。我们不想要超过 10 秒 ( maximumAge:10000) 的 gps 数据。我们不想等待超过 5 秒的响应 ( timeout:5000),我们希望启用高精度 ( enableHighAccuracy: true)。

另请参阅:Geolocation HTML5 enableHighAccuracy True 、 False 还是 Best Option?

于 2013-04-24T21:33:39.877 回答
7

enableHighAccuracy: true这是取自Mozilla Developer Network的一个简单示例。

var options = {
  enableHighAccuracy: true,
  timeout: 5000,
  maximumAge: 0
};

function success(pos) {
  var crd = pos.coords;

  console.log('Your current position is:');
  console.log(`Latitude : ${crd.latitude}`);
  console.log(`Longitude: ${crd.longitude}`);
  console.log(`More or less ${crd.accuracy} meters.`);
}

function error(err) {
  console.warn(`ERROR(${err.code}): ${err.message}`);
}

navigator.geolocation.getCurrentPosition(success, error, options);
于 2018-10-24T14:34:33.750 回答
0
if(navigator.geolocation) {
   navigator.geolocation.getCurrentPosition(position => {
       do_whatever_you_want
},
error => console.log(error),
{enableHighAccuracy: true}
)
}

说明: 首先,我正在检查浏览器是否支持使用if顶部条件的地理位置并将整个代码包装在其中。如果它存在,那么我会尝试获取getCurrentPosition包含坐标等信息的对象。我称之为对象position。所以如果你想得到latand lng;

var lt = position.coords.latitude;
var ln = position.coords.longitude;

GetCurrentPosition也需要更多的论据。第一个是如果它运行成功(然后我试图获取返回的对象)。第二个是error。我在这里控制台记录了错误。第三个是额外的选项。这些选项之一是enableHighAccuracy. 如果设置为true它将尝试从用户那里获得最准确的位置。

于 2020-12-17T12:33:09.577 回答