gpt4 book ai didi

javascript - 谷歌不会恢复当前位置的当前纬度和经度

转载 作者:行者123 更新时间:2023-11-30 19:55:29 26 4
gpt4 key购买 nike

<分区>

我想在 Laravel 中构建定位功能。我正在使用此代码,但它发送的纬度和经度略有不同。

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

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

有没有替代品。这样我就可以改进我的结果。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com