How to continuously get the best GPS location?

You must Login before you can answer or comment on any questions.

If I open Maps app on iPhone 4, a blue circle is moving all the time wile I am walking. But Ti.Geolocation is not firing location that often and that is what I need as core of my application.

I understand that iOS uses gyroscope and accelerometer for it's internal location calibration an in XCode I see these contants:

extern const CLLocationAccuracy kCLLocationAccuracyBestForNavigation __OSX_AVAILABLE_STARTING(__MAC_10_7,__IPHONE_4_0);
extern const CLLocationAccuracy kCLLocationAccuracyBest;
extern const CLLocationAccuracy kCLLocationAccuracyNearestTenMeters;
extern const CLLocationAccuracy kCLLocationAccuracyHundredMeters;
extern const CLLocationAccuracy kCLLocationAccuracyKilometer;
extern const CLLocationAccuracy kCLLocationAccuracyThreeKilometers;
I suppose that kCLLocationAccuracyBestForNavigation is what I need but Titanium is not supporting it.

Will it be implemented any soon?

Your Answer

Think you can help? Login to answer this question!