If I call getinfo and a accuracy of 0 how can I get the last known position?
ta
module Position {
enum {
QUALITY_NOT_AVAILABLE = 0, // GPS is not available
QUALITY_LAST_KNOWN = 1, // The Location is based on the last known GPS fix
QUALITY_POOR = 2, // The Location was calculated with a poor GPS fix
QUALITY_USABLE = 3, // The Location was calculated with a usable GPS fix
QUALITY_GOOD = 4 // The Location was calculated with a good GPS fix
}
}