久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html5獲取手機(jī)GPS信息的示例代碼分享

      html5獲取手機(jī)GPS信息的示例代碼分享:

      function getLocation() {              if (navigator.geolocation) {                  navigator.geolocation.getCurrentPosition(showPosition, showError);              } else {                  alert("瀏覽器不支持地理定位。");              }          }             function showError(error) {              switch (error.code) {                  case error.PERMISSION_DENIED:                      alert("定位失敗,用戶拒絕請(qǐng)求地理定位");                      break;                  case error.POSITION_UNAVAILABLE:                      alert("定位失敗,位置信息是不可用");                      break;                  case error.TIMEOUT:                      alert("定位失敗,請(qǐng)求獲取用戶位置超時(shí)");                      break;                  case error.UNKNOWN_ERROR:                      alert("定位失敗,定位系統(tǒng)失效");                      break;              }          }             function showPosition(position) {              lat = position.coords.latitude; //緯度               lag = position.coords.longitude; //經(jīng)度               alert('緯度:' + lat + ',經(jīng)度:' + lag);                         }

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)