0

我用于navigator.geolocation.getCurrentPosition()地理位置,我得到了很长的时间。但是当我尝试使用这种方法访问巴西国家纬度时,不能给我纬度。

建议我如何在巴西国家获得经纬度值。

代码:

<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>
4

0 回答 0