当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Navigator geolocation属性用法及代码示例


导航器地理定位属性用于由浏览器返回一个地理位置对象,该对象可用于定位用户的位置。
它是只读属性,只有在用户批准后才可用,因为它可能会损害用户的隐私。

用法:

navigator.geolocation

以下示例程序旨在说明导航器地理定位属性:
检查用户的地理位置。

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title>Navigator geolocation Property in HTML</title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>Navigator geolocation Property</h2> 
      
<p>For checking your coordinates,  
      double click the "Get Coordinates" button : </p> 
  
    <button ondblclick="getCoordinates()">Get Coordinates</button> 
    <p id="loc"></p> 
  
    <script> 
        var x = document.getElementById("loc"); 
  
        function getCoordinates() { 
            if (navigator.geolocation) { 
                navigator.geolocation.getCurrentPosition(showcoordinates); 
            } else { 
                x.innerHTML = "The browser doesn't support Geolocation."; 
            } 
        } 
  
        function showcoordinates(myposition) { 
            x.innerHTML = "Your Latitude is: " + myposition.coords.latitude + 
                "<br>Your Longitude is: " + myposition.coords.longitude; 
        } 
    </script> 
</body> 
</html>

输出:
在点击按钮之前:

单击按钮后:

支持的浏览器:支持的浏览器导航器地理定位列出如下:

  • 谷歌浏览器 5
  • 边 12
  • 互联网浏览器 9
  • 火狐3.5
  • Opera 10.6
  • 狩猎5


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML DOM Navigator geolocation Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。