Skip to content

hyperoslo/HYPLocationManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HYPLocationManager

HYPLocationManager is an easy to use interface for CLLocationManager. If you need to get your current coordinates, or show a specific coordinate on a map, or even get directions from your current location to anywhere, we got you covered.

How to get my current location with HYPLocationManager?

#pragma mark - Actions

- (IBAction)showMyCurrentLocation
{
    HYPLocationManager *manager = [[HYPLocationManager alloc] init];
    manager.delegate = self;
    [manager showCurrentLocation];
}

#pragma mark - HYPLocationManagerDelegate

- (void)locationManager:(HYPLocationManager *)locationManager 
didUpdateCoordinateRegion:(MKCoordinateRegion)coordinateRegion
{
    // do something with your coordinates, or show them in a mapView by doing this
    [locationManager centerMapView:self.mapView usingCoordinate:coordinateRegion.center];
}

How to get directions to Hyper from my current location?

HYPLocationManager *manager = [[HYPLocationManager alloc] init];
[manager showDirectionsToCoordinate:hyperCoordinate named:@"Hyper"];

License

HYPLocationManager is fully open source under the MIT license. Check LICENSE for details.

Contributions

If there's something you would like to improve please create a friendly and constructive issue, getting your feedback would be awesome. Have a great day.

About

The easiest way to use CLLocationManager.

Resources

License

Stars

Watchers

Forks

Packages

No packages published