i am creating an app that uses location-
everything works swimmingly except one thing-
when i come home my iphone connects to my local wifi network and instead o
A-GPS = GPS + cell tower triangulation. There is no WI-FI positioning.
Well I did some playing around
Found some apple documentation that says that [location verticalAccuracy]
REQUIRES a device with gps.
So I stuck this code in (abridged) and based on the limited testing I have done, it appears to be doing what I want:
if (([location horizontalAccuracy] > 0) && ([location verticalAccuracy] > 0)){
//report location here
}
Thanks all for your replies.
Other than asking the user to turn off his Wifi, there's no documented way you can force the location manager to use GPS over Wifi. It might be possible with private API, but that would also get you rejected from the App Store.
You can set cLLocationAccuracy.desiredAccuracy = kCLLocationAccuracyBest and see if that does it. It should try and limit to GPS use, however that isn't 100% guarenteed.
the inaccurate GPS coordinates are obtained by the iPhone not only via the Wi-Fi or mobile networks, but also the real-coordinates with accuracy level >100 metres.
What I use is to put the line: if (newLocation.horizontalAccuracy < 0 || newLocation.horizontalAccuracy > 50) return;
as the first line in the didUpdateToLocation
, to filter out inaccurate coordinates.
The 'location age' i.e. NSTimeInterval locationAge=[locTimestamp timeIntervalSinceNow];
does NOT serve for me to get rid of cached coordinates.
The reason it uses WIFI at home is because there's no way it can have direct sight of the GPS satellites out in space - instead of not giving you any location data, it uses the next best available source.