Giter Club home page Giter Club logo

localide's Introduction

Localide

####Localide is an easy helper to offer users a personalized experience by using their favorite installed apps for directions. Localide Screenshot

Requierments

  • Swift
  • iOS 8.0+
  • Xcode 7.3

Installation

Add the Localide Classes' files to your project, or use CocoaPods:

pod 'Localide', '~> 1.0'

Usage

Firstly insert all Third Party Apps' URL schemes to your Info.plist:

LSApplicationQueriesSchemes:

Info.plist should look like this.

Giving the user the option to use their favorite installed app
let location = LocalideGeoLocation(latitude: 37.776692, longitude: 0.0)
Localide.sharedManager.promptForDirections(toLocation: location,  { (usedApp, fromMemory, openedLinkSuccessfully) in
    print("The user picked \(usedApp.name)")
}
Other Options
  • You may also choose to have Localide remember the user's choice for future directions by using the remembePreference argument.
  • You may also choose to restrict the user from using some applications by using the usingASubsetOfApps argument.
Specific App

You can launch the Apple Maps app with directions to location by using:

let location = LocalideGeoLocation(latitude: 37.776692, longitude: 0.0)
Localide.sharedManager.launchNativeAppleMapsAppForDirections(toLocation: location)

For other apps:

if LocalideMapApp.GoogleMaps.canOpenApp() {
    let location = LocalideGeoLocation(latitude: 37.776692, longitude: 0.0)
    LocalideMapApp.GoogleMaps.launchAppWithDirections(toLocation: location)
}

Pipeline

  • Support addresses
  • Ask user if they wish to use the same app in the future.

localide's People

Contributors

davoda avatar nsdavidobject avatar

Watchers

 avatar

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.