当我使用Phonegap和jquerymobile关闭我的App时,如何看待我的位置

时间:2013-01-01 19:37:50

标签: google-maps cordova jquery-mobile onresume onpause

我正在使用phonegap,jquerymobile googlemap API来获取我当前的位置并观察我的位置。

为此,当我在地图页面上吃午饭时,我的位置会显示一个标记,当我移动时标记会移动。 即使我关闭我的应用程序(onPause)时它会被激活。

这是我的代码(你可以告诉我如何完善它:o))

$('#home').live("pagebeforeshow", function() {

    if($('#googleAPI').length != 0){


        navigator.geolocation.getCurrentPosition(function(position){

            //showMap('mapHome',position.coords.latitude, position.coords.longitude);// Canvas, lat, long

            var latLng = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);

            // Google Map options
            var myOptions = {
                zoom: 17,
                //zoomControl   : 1,
                center: latLng,
                mapTypeId: google.maps.MapTypeId.ROADMAP////ROADMAP, SATELLITE, HYBRID and TERRAIN
            };      

            // Create the Google Map, set options
            Tracking.mapy = new google.maps.Map(document.getElementById('mapHome'), myOptions);

            //addMarker(position.coords.latitude,position.coords.longitude);

        }, 
        showError, 
        {

                enableHighAccuracy  : true,
                maximumAge          : 2000
                //maximumAge:Infinity
        });

    }
})  

    $('#home').live("pageshow", function() {

        // Place and move the marker regarding to my position and deplacement
    if($('#googleAPI').length != 0){

        //var track_id = "me";
        Tracking.watch_id = navigator.geolocation.watchPosition(
        // Success
        function(position){

            var lat = position.coords.latitude;
            var long = position.coords.longitude;

            var latLng = new Array();
            latLng[0] = lat;
            latLng[1] = long;

            //Tracking.myCoordinates.push(lat,long);
            Tracking.myCoordinates.push(latLng);

            addMarker(lat, long);

        },
        // Error
        showError,
        { 
            frequency: 1000

        });

        console.log('HW : WatchPosition called. Id:' + Tracking.watch_id);


    }else{
        Alert.show('The map API has not been loaded. Check for connection and try again. (pagebeforeshow)');
    }


})

$('#home').live("pagebeforehide", function() {

    if($('#googleAPI').length != 0){

        //track_id = "me";

        // Stop tracking the user

        if (Tracking.watch_id != null) {
            navigator.geolocation.clearWatch(Tracking.watch_id);
        console.log('HW : WatchPosition cancelled Id:' + Tracking.watch_id);
            Tracking.watch_id = null;
        }


        //navigator.geolocation.clearWatch(Tracking.watch_id);



        //Tracking.watch_id = null;
        Tracking.myCoordinates = new Array();

    }else{
        Alert.show('The map API has not been loaded. Check for connection and try again. (pagebeforeshide)');
    }

});

问题是当我关闭我的应用程序时,因为当我走出地理围栏时我还需要保持警惕。然后,因为我不停地观察我的位置,即使我关闭我的位置或者我在另一个应用程序中吃午饭,我也需要它才能观看。

然后,当我拨打Phonegap时,我不知道该怎么做:

document.addEventListener('pause', onPause, false);
function onPause(){}

我应该使用不同的watch_id简单地重新获取我的监视代码吗?

有什么建议吗?

非常感谢和新年快乐

1 个答案:

答案 0 :(得分:0)

我认为你想要的是使用phonegap运行后台进程。此链接中的讨论似乎表明只有编写插件才能执行该功能才有可能。 PhoneGap没有开箱即用的API。

Executing javascript in background using phonegap