blob: b5367bf41a58559c1b9639749febef449863e97b [file] [log] [blame]
{
"name": "INTULocationManager",
"version": "4.3.2",
"homepage": "https://github.com/intuit/LocationManager",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Lucien Dupont": "lucien_dupont@intuit.com"
},
"source": {
"git": "https://github.com/intuit/LocationManager.git",
"tag": "v4.3.2"
},
"source_files": "LocationManager/INTULocationManager",
"platforms": {
"ios": "9.0"
},
"requires_arc": true,
"summary": "Easily get the device's current location on iOS.",
"description": "# INTULocationManager\nINTULocationManager makes it easy to get the device's current location on iOS. It is an Objective-C library that also works great in Swift.\n\nINTULocationManager provides a block-based asynchronous API to request the current location, either once or continuously. It internally manages multiple simultaneous location requests, and each one-time request can specify its own desired accuracy level and timeout duration. INTULocationManager automatically starts location services when the first request comes in and stops location services as soon as all requests have been completed, all the while dynamically managing the power consumed by location services to reduce impact on battery life.\n\n## What's wrong with CLLocationManager?\nCLLocationManager requires you to manually detect and handle things like permissions, stale/inaccurate locations, errors, and more. CLLocationManager uses a more traditional delegate pattern instead of the modern block-based callback pattern. And while it works fine to track changes in the user's location over time (such as for turn-by-turn navigation), it is extremely cumbersome to correctly request a single location update (such as to determine the user's current city to get a weather forecast, or to autofill an address from the current location).\n\nINTULocationManager makes it easy to request the device's current location, either once or continuously. The API is extremely simple for both one-time location requests and recurring subscriptions to location updates. For one-time location requests, you can specify how accurate of a location you need, and how long you're willing to wait to get it. Significant location change monitoring is also supported. INTULocationManager is power efficient and conserves the device's battery by automatically determining and using the most efficient Core Location accuracy settings, and by automatically powering down location services (e.g. GPS) as soon as they are no longer needed."
}