koogawa / KGWLocationPicker

Simple location picker with a built in maps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KGWLocationPicker

Simple location picker with a built in maps. The selected item can be returned to the calling controller as a CLLocationCoordinate2D.

Usage

  1. Link CoreLocation.framework and MapKit.framework to your project.
  2. Fill in NSLocationWhenInUseUsageDescription in your Info.plist if you use KGWLocationPicker on iOS 8 and above.
  3. Include the KGWLocationPickerViewController.h header
  4. Initialise the KGWLocationPicker
  5. Push the controller
KGWLocationPickerViewController *viewController =
[[KGWLocationPickerViewController alloc] initWithSucess:^(CLLocationCoordinate2D coordinate) {
    NSLog(@"Lat, Lng = %f, %f", coordinate.latitude, coordinate.longitude);
}
                                              onFailure:nil];

Installation

KGWLocationPicker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "KGWLocationPicker"

Requirements

KGWLocationPicker requires iOS 7.0 and above.

Creator

Kosuke Ogawa

License

KGWLocationPicker is available under the MIT license. See the LICENSE file for more info.

About

Simple location picker with a built in maps.

License:MIT License


Languages

Language:Objective-C 85.5%Language:Ruby 14.5%