2012-05-04 90 views
4

當我嘗試了一個電話地理位置示例程序。我在三星流行音樂中獲取當前位置的經度和緯度,而無需使用互聯網或GPS。我不知道當我的設備中的wifi和gps被禁用時,它是如何獲得當前位置的座標,高度和時間戳。請幫助我..我在沒有使用互聯網或GPS的情況下獲取(lat,long)電話地理位置座標?

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org /TR/html4/loose.dtd"> 
<html> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
     <title>My Locator</title> 
     <script type="text/javascript" charset="utf-8" src="../plugins/phonegap-1.1.0.js"></script> 
     <script type="text/javascript" charset="utf-8"> 
      document.addEventListener("deviceready", onDeviceReady, false); 
      function onDeviceReady() { 
       navigator.geolocation.getCurrentPosition(onSuccess,Error); 
      } 
     function onSuccess(position) { 
       var element = document.getElementById('geolocation'); 
      element.innerHTML = 'Latitude: ' + position.coords.latitude 
       + '<br />' + 'Longitude: ' + position.coords.longitude 
       + '<br />' + 'Accuracy: ' + position.coords.accuracy 
       + '<br />' + 'Timestamp: ' + new Date(position.timestamp) + '<br />'; 

      } 
     function onError(error) { 
       alert('code: ' + error.code + '\n' + 'message: ' + error.message + '\n'); 
      } 

     </script> 
    </head> 
    <body> 
     <p id="geolocation"> 
      Finding geolocation... 
     </p> 
    </body> 
</html> 

回答

2

您都可以從網絡瀏覽器的地理位置API的座標。

+0

因爲這也,它需要wifi老兄....沒有wifi或gps本身,我正在獲取位置.... –

+1

你是否一直在獲得相同的座標? –

相關問題