转载

[iOS] Localide:个性化选用合适的地图内核做为指路向导

Localide

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

[iOS] Localide:个性化选用合适的地图内核做为指路向导

Requierments

  • Swift
  • iOS 8.0+
  • Xcode 7.3

Installation

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

pod 'Localide', '~> 1.1'

Usage

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

LSApplicationQueriesSchemes:

  • citymapper ( Citymapper App )
  • comgooglemaps ( Google Maps App )
  • navigon ( Navigon App )
  • transit ( Transit App )
  • waze ( Waze App )

Info.plist should look like this .

Giving the user the option to use their favorite installed app

let location = CLLocationCoordinate2D(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 = CLLocationCoordinate2D(latitude: 37.776692, longitude: 0.0) Localide.sharedManager.launchNativeAppleMapsAppForDirections(toLocation: location)

For other apps:

if LocalideMapApp.GoogleMaps.canOpenApp() {     let location = CLLocationCoordinate2D(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.
原文  https://github.com/davoda/Localide
正文到此结束
Loading...