我使用navigator.geolocation.getCurrentPosition()
进行地理位置,并且我得到了很长的时间。但是当我尝试访问巴西国家lat时,使用这种方法不能给我拉长。
建议我如何在巴西国家获得lat long值。
代码:
<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);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
} }
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude;
}
</script> </body> </html>