-1

我想将设备当前位置保存到一个变量中。可能吗?

4

1 回答 1

1

您可以使用地理定位 API 来获取当前位置。

http://mobile.tutsplus.com/tutorials/mobile-web-apps/html5-geolocation/

使用我上面提到的 API 将位置保存在变量中:

var currentLocation; //this variable will store current location.
     jQuery(window).ready(function(){  
                jQuery("#btnInit").click(initiate_geolocation);  
            });  
            function initiate_geolocation() {  
              //store current location
              currentLocation =  navigator.geolocation.getCurrentPosition(handle_geolocation_query);  
            }  
            function handle_geolocation_query(position){  
                alert('Lat: ' + position.coords.latitude + ' ' +  
                      'Lon: ' + position.coords.longitude);  
            }   
于 2013-04-25T13:29:10.100 回答