Android-геолокация нулевая в титане - PullRequest
1 голос
/ 10 мая 2011

Я не могу получить геолокации в эмуляторе или на физическом телефоне.

Я использую Titanium SDK 1.6.2 , ADK 2.2 .

Я следовал подходам, использованным здесь , но безрезультатно.

Чего мне не хватает?Заранее спасибо.

Ошибка:

Говорит, что e.coords является нулевым при выполнении этого назначения.f_lng = e.coords.longitude;

Код:

function get_geolocation() {

    try {

        Ti.Geolocation.preferredProvider = 'gps';
        Titanium.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST;
        Titanium.Geolocation.distanceFilter = 10;

        if( Titanium.Geolocation.locationServicesEnabled === false ) {
            throw('Your device has GPS turned off. Please turn it on.');
        }

        var f_lat, f_lng;

        Titanium.Geolocation.getCurrentPosition(function(e) {

            if( ! e.success || e.error ) {
                alert("Unable to get your location.");
            }

            f_lng = e.coords.longitude;
            f_lat = e.coords.latitude;
        });

        return {
            's_status': 'success',
            'f_lat': f_lat,
            'f_lng': f_lng
        };

    } catch( s_error ) {

        return {
            's_status': 'error',
            's_message': s_error
        };
    }
}

Ответы [ 3 ]

7 голосов
/ 10 мая 2011
Ti.App.GeoApp = {};

Ti.Geolocation.preferredProvider = Titanium.Geolocation.PROVIDER_GPS;
Ti.Geolocation.purpose = "testing";
Titanium.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST;
Titanium.Geolocation.distanceFilter = 10;

if( Titanium.Geolocation.locationServicesEnabled === false ) {
    Ti.API.debug('Your device has GPS turned off. Please turn it on.');
}


function updatePosition(e) {

    if( ! e.success || e.error ) {
        alert("Unable to get your location.");
        Ti.API.debug(JSON.stringify(e));
        Ti.API.debug(e);
        return;
    }

    Ti.App.fireEvent("app:got.location", {
        "coords" : e.coords
    });
};

Ti.App.addEventListener("app:got.location", function(d) {
    Ti.App.GeoApp.f_lng = d.longitude;
    Ti.App.GeoApp.f_lat = d.latitude;
    Ti.API.debug(JSON.stringify(d));
    Ti.Geolocation.removeEventListener('location', updatePosition);

    alert(JSON.stringify(d));

});

var tabGroup = Titanium.UI.createTabGroup();


//
// create base UI tab and root window
//
var window = Titanium.UI.createWindow({
    backgroundColor:'#fff',
    barColor:'#003333',
});
var tab1 = Titanium.UI.createTab({
    icon:'KS_nav_views.png',
    title:'Tab 1',
    window:window
});

tabGroup.open();

Titanium.Geolocation.getCurrentPosition( updatePosition );    
Titanium.Geolocation.addEventListener( 'location', updatePosition );    

подробности см. Здесь http://blog.clearlyinnovative.com/post/5384374513/titanium-appcelerator-quickie-get-location-android

1 голос
/ 11 мая 2011

Отвлечение от ответа Аарона, вот что у меня сработало на iPhone Simulator, IPhone и телефоне Android (не Android-симуляторе). Имейте в виду, что я использую redux , поэтому код будет немного другим.

var path = Ti.Platform.name == 'android' ? Ti.Filesystem.resourcesDirectory : "../../";

var map = {

    top: 0,
    bottom: 0,
    latitude: 0,
    longitude: 0,
    latitudeDelta: 0.1,
    longitudeDelta: 0.1,
    display: "map",

    init: function (annotations, latitude, longitude, top, bottom, delta) {

        if (top)
            map.top = top;
        if (bottom)
            map.bottom = bottom;
        if (delta) {
            map.latitudeDelta = delta;
            map.longitudeDelta = delta;
        }

        map.createMap(annotations, latitude, longitude);
        map.createOptions();
        map.getLocation();

    },

    createMap: function (annotations, latitude, longitude) {

        map.mapView = Ti.Map.createView({
            mapType: Ti.Map.STANDARD_TYPE, animate: true, regionFit: false, userLocation: true,
            region: { latitude: latitude, longitude: longitude, latitudeDelta: map.latitudeDelta, longitudeDelta: map.longitudeDelta },
            annotations: annotations, bottom: map.bottom, top: map.top, borderWidth: 1
        });
        if (!isAndroid) {
            map.mapView.addAnnotation(annotations[0]);
        }
        map.mapView.selectAnnotation(annotations[0]);
        win.add(map.mapView);

    },

    createOptions: function () {

        //map/satellite displays.
        var mapDisplay = new ImageView({ image: path + 'images/map/satellite-view.png', width: 70, height: 49, zIndex: 2, top: map.top + 5, right: 5 });
        mapDisplay.addEventListener('click', function () {
            if (map.display == "map") {
                map.mapView.setMapType(Titanium.Map.SATELLITE_TYPE);
                mapDisplay.image = path + "images/map/map-view.png";
                map.display = "satellite";
            }
            else {
                map.mapView.setMapType(Titanium.Map.STANDARD_TYPE);
                mapDisplay.image = path + "images/map/satellite-view.png";
                map.display = "map";
            }
        });
        win.add(mapDisplay);

        //crosshairs.
        if(Ti.Geolocation.locationServicesEnabled) {
            var centerDisplay = new ImageView({ image: path + 'images/map/crosshairs.png', width: 49, height: 49, zIndex: 2, top: map.top + 5, right: 80 });
            centerDisplay.addEventListener('click', function () {
                if(map.latitude != 0 && map.longitude != 0) {
                    info("setting user location to " + map.latitude + " / " + map.longitude);
                    //center map.
                    var userLocation = {
                        latitude: map.latitude,
                        longitude: map.longitude,
                        latitudeDelta: map.latitudeDelta,
                        longitudeDelta: map.longitudeDelta,
                        animate: true
                    };
                    map.mapView.setLocation(userLocation);
                }
            });
            win.add(centerDisplay);
        }

    },

    createAnnotation: function (title, subtitle, latitude, longitude, isLocation, addToMap) {

        var mapAnnotation = Ti.Map.createAnnotation({
            latitude: latitude, longitude: longitude,
            title: title,
            subtitle: subtitle,
            animate: true
        });
        if (isAndroid) {
            mapAnnotation.pinImage = path + (isLocation ? "images/map/blue-pin.png" : "images/map/purple-pin.png");
        }
        else {
            mapAnnotation.pincolor = isLocation ? Ti.Map.ANNOTATION_PURPLE : Ti.Map.ANNOTATION_RED;
        }

        if (addToMap)
            map.mapView.addAnnotation(mapAnnotation);

        return mapAnnotation;

    },

    updateAnnotation: function (mapAnnotation, title, subtitle, latitude, longitude, isLocation) {

        if (mapAnnotation) {
            map.mapView.removeAnnotation(mapAnnotation);
            mapAnnotation = map.createAnnotation(title, subtitle, latitude, longitude, isLocation);
            map.mapView.addAnnotation(mapAnnotation);
            map.mapView.selectAnnotation(mapAnnotation);
        }

    },

    addAnnotation: function (mapAnnotation) {

        map.mapView.addAnnotation(mapAnnotation);

    },

    removeAnnotation: function (mapAnnotation) {

        map.mapView.removeAnnotation(mapAnnotation);

    },

    selectAnnotation: function (mapAnnotation) {

        map.mapView.selectAnnotation(mapAnnotation);

    },

    createRoute: function (name, points) {

        var route = {
            name: name, points: points, color: "#7c74d4", width: 4
        };
        map.mapView.addRoute(route);
        setTimeout(function () { map.mapView.regionFit = true; }, 700);

    },

    getLocation: function() {

        Ti.Geolocation.preferredProvider = Ti.Geolocation.PROVIDER_GPS;
        Ti.Geolocation.purpose = "testing";
        Ti.Geolocation.accuracy = Ti.Geolocation.ACCURACY_BEST;
        Ti.Geolocation.distanceFilter = 10;

        if(!Ti.Geolocation.locationServicesEnabled) {
            //alert('Your device has GPS turned off. Please turn it on.');
            return;
        }

        function updatePosition(e) {
            if(!e.success || e.error) {
                info("Unable to get your location - " + e.error);
                return;
            }
            info(JSON.stringify(e.coords));
            map.latitude = e.coords.latitude;
            map.longitude = e.coords.longitude;
            Ti.Geolocation.removeEventListener('location', updatePosition);
        };

        Ti.Geolocation.getCurrentPosition(updatePosition);    
        Ti.Geolocation.addEventListener('location', updatePosition);

    }

};
0 голосов
/ 10 мая 2011

Вы пытались установить тайм-аут, чтобы убедиться, что e.coords установлен перед его использованием, он был предложен как временное исправление?

setTimeout(function() {
    return e.coords
}, 1000);
...