A simple locator manager wrriten in Swift using Closure-based Delegation.
LocatorManager.shared.currentPosition(mode: .oneshot) { result in
switch result {
case .success(let value):
print("latitude: \(value.latitude) | longitude: \(value.longitude)")
case .failure(let error):
print(error.description)
}
}
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate LocatorManager into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'LocatorManager', :git => "https://github.com/AnasAlhasani/LocatorManager"
Then, run the following command:
$ pod install