Git Product home page Git Product logo

hyplocationmanager's Introduction

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.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.