Apple - An iOS GPS application that shows satellite locations and lock-on details?

There is no such interface available for iOS, since everything is enclosed within the CoreLocation framework (no way to access NMEA data).

You can monitor some variables (like horizontalAccuracy, verticalAccuracy) but that's it. The easiest way to obtain this information is to run some GPS application that displays this information, such as "GPS Status-".

(Be aware of multiple apps with very similar 'GPS Status' names are not all identical.

At the time of this edit, "GPS Status-" by Fawkes Wei is much more positively reviewed and kept up to date (last update 25 May 2019) than the "GPS Status" by PocketGPSWorld.com Ltd (last update 5 June 2011).)


In general, on iOS it's not possible to display detailed satellite information. As noted in mspasov's answer, the CoreLocation API doesn't give access to GPS specifics.

A complicating factor is that most of the time, your iPhone doesn't use GPS to find its position. Instead it uses the locations of nearby wifi networks and cell phone towers. Those methods are generally more accurate and quicker than using the GPS chip, and in cities you may never see the GPS activate. I don't believe an iOS program can even find out which source of location it gets at the moment, although you can make a good guess based on the reported accuracy.

There are external GPS receivers for iOS devices that can generate more accurate fixes. Bad Elf, for example, has a developer list and in the past has said they intend to make an API available to access more detailed GPS info.