h5 新标签 ——LBS 属性

来源:互联网 发布:flotherm软件英文翻译 编辑:程序博客网 时间:2024/06/08 17:52
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Insert title here</title></head><body>   <div id="lbs">   </div>   <button onclick="getLBS()">获取我的位置</button>   <script type="text/javascript">      function getLBS(){         if(navigator.geolocation)  //          navigator.geolocation.getCurrentPosition(showPosition);            navigator.geolocation.watchPosition(successCallback,errorCallback,options);         else            alert("不支持LBS");      }            function showPosition(p){         var str ="你的坐标:维度" + p.coords.latitude + ";经度" +p.coords.longitude;                  document.getElementById("lbs").innerHTML = str;      }   </script></body></html>
0 0
原创粉丝点击