/LocatorManager

A simple locator manager wrriten in Swift.

Primary LanguageSwiftMIT LicenseMIT

LocatorManager

A simple locator manager wrriten in Swift using Closure-based Delegation.

Example

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)

    }

}

Installation

CocoaPods

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