-1

我在 phonegap 中使用 HTML5 Geolocation API 来精确检测我的位置。我在印度工作,理想情况下,我应该能够看到我的位置,即印度浦那,但事实并非如此。

它检测到“美国加利福尼亚州旧金山”作为我的位置。可能是什么问题?

谢谢你们。高度赞赏帮助。

让我分享代码:)

document.addEventListener("deviceready", onDeviceReady, false);

// Cordova is loaded and it is now safe to make calls Cordova methods
//
function onDeviceReady() {
    // onSuccess Callback
    //   This method accepts a `Position` object, which contains
    //   the current GPS coordinates
    //

    var onSuccess = function(position) {
        var lattitude = position.coords.latitude;
        var longitude = position.coords.longitude;
        //Ajax Call
        $.ajax({
               url: 'http://maps.googleapis.com/maps/api/geocode/json?latlng='+lattitude+','+longitude+'&sensor=true',
               success: function(data){
                alert(data.results[0].formatted_address);
               //alert(data.results[1].formatted_address);
               },
               error: function(data){
               alert('error');
               }
               });//Ajax call ends
    };

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

    navigator.geolocation.getCurrentPosition(onSuccess, onError);
}
4

1 回答 1

0

如果您使用的是 iOS 模拟器,您将始终将 SF 作为位置,因为它具有静态位置设置。但是,您可以使用这个漂亮的工具在浏览器中进行模拟,它会让您弄乱位置设置等等。

http://emulate.phonegap.com/

于 2013-04-24T06:48:45.450 回答