我试图在Windows 10上使用Chrome浏览器使用HTML5地理位置API。 我在获得正确的经度和纬度时遇到问题。我也尝试过使用某些Web应用程序,例如where-am-i.me,但它给出的结果相同。只有Google提供正确的位置。我该如何解决,我们可以为此使用一些Google API吗?
enter code here
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
$(".latitude").text(position.coords.latitude);
$(".longitude").text(position.coords.longitude);
showMap(position.coords.latitude, position.coords.longitude);
}