How can one accurately locate an iOS device indoors?
If the GPS cannot be used correctly indoors, what other way can one track and locate an iOS Device indoors?
Are there any other APIs that are private but allowed by apple?
Is CoreLocation based completely off the GPS?
Thanks
As I recall, the CoreLocation API will always return you a location. I’m not sure if you can set it somewhere, but CoreLocation is able to establish your location in multiple ways;
So if GPS is unavailable, chances are any of the other 2 will give you a result (though not as precise). If none of the above work, it might give you a cached result or you are simply out of luck.
So, there is no need to call another API; one API will do just fine and make decisions for you based on availability.