GithubHelp home page GithubHelp logo

achyusuf / mapbox-navigation-ios Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mapbox/mapbox-navigation-ios

0.0 2.0 0.0 672 KB

Turn-by-turn navigation logic and UI in Swift or Objective-C on iOS

License: ISC License

Ruby 2.03% Swift 97.01% Objective-C 0.97%

mapbox-navigation-ios's Introduction

Mapbox Navigation SDK for iOS

Build Status Carthage compatible CocoaPods

Mapbox Navigation SDK

Mapbox Navigation gives you all the tools you need to add turn-by-turn navigation to your apps.

Get up and running in a few minutes with our drop-in turn-by-turn navigation RouteViewController, or build a completely custom turn-by-turn navigation app with our core components for routing and navigation.

Features

  • Drop-in turn-by-turn navigation UI
  • Automotive, cycling, and walking directions
  • Traffic avoidance
  • Maneuver announcements
  • Text instructions
  • Text to speech support via AVSpeechSynthesizer or Amazon Polly
  • Automatic rerouting
  • Snap to route

Installation

To install Mapbox Navigation using Carthage v0.19.0 or above:

  1. Specify the following dependency in your Cartfile:

    github "mapbox/mapbox-navigation-ios" ~> 0.3.0
    
  2. Run carthage update --platform iOS to build just the iOS dependencies.

  3. Follow the rest of Carthage’s iOS integration instructions. Your application target’s Embedded Frameworks should include MapboxNavigation.framework and MapboxCoreNavigation.framework.

Alternatively, to install Mapbox Navigation using CocoaPods:

  1. Specify the following dependency in your Podfile:
    pod 'MapboxNavigation', '~> 0.3.0'
  2. Run pod install and open the resulting Xcode workspace.

Note, you may need to run pod repo update before pod install if your Cocoapods sources haven't been updated in a while.

Running the example project

  1. Clone the repository or download the .zip file
  2. Run carthage update --platform ios to build just the iOS dependencies
  3. Open MapboxNavigation.xcodeproj
  4. Sign up or log in to your Mapbox account and grab a Mapbox Access Token
  5. Open the Info.plist for either Example-Swift or Example-Objective-C and paste your Mapbox Access Token into MGLMapboxAccessToken
  6. Build and run the Example-Swift or Example-Objective-C target

Usage

import MapboxDirections
import MapboxNavigation
let origin = Waypoint(coordinate: CLLocationCoordinate2D(latitude: 38.9131752, longitude: -77.0324047), name: "Mapbox")
let destination = Waypoint(coordinate: CLLocationCoordinate2D(latitude: 38.8977, longitude: -77.0365), name: "White House")

let options = RouteOptions(waypoints: [origin, destination], profileIdentifier: .automobileAvoidingTraffic)
options.routeShapeResolution = .full
options.includesSteps = true

Directions.shared.calculate(options) { (waypoints, routes, error) in
    guard let route = routes?.first else { return }

    let viewController = NavigationViewController(for: route)
    self.present(viewController, animated: true, completion: nil)
}

Required Info.plist Keys

Mapbox Navigation requires a few additions to your Info.plist. Be sure to sign up or log in to your Mapbox account and grab a Mapbox Access Token.

  1. Add a MGLMapboxAccessToken key and paste your Mapbox Access Token
  2. Add a NSLocationWhenInUseUsageDescription key if you haven't already
  3. If you need voice guidance while your app is in the background, you'll also need to add the audio and location value to the UIBackgroundModes array. You can also do this by navigating to the Capabilities tab -> Background Modes and enabling the following:
    • Audio, AirPlay, and Picture in Picture
    • Location updates

Storyboards

See this guide for usage with storyboards.

Styling

You can customize the appearance in order to blend in with the rest of your app.

let style = Style()
style.maneuverViewHeight = 80
style.primaryTextColor = .black
style.headerBackgroundColor = .white
style.cellTitleLabelFont = .preferredFont(forTextStyle: .headline)
style.apply()

Or for a specific system trait in an interface’s environment. For instance only when being used on an iPad.

let style = Style(traitCollection: UITraitCollection(userInterfaceIdiom: .pad))
style.cellTitleLabelFont = .preferredFont(forTextStyle: .title1)
style.apply()

RouteViewController Delegate Methods

  • routeControllerDidCancelNavigation: Fired when the user taps Cancel. You are responsible for dismissing the UI

Building your own custom navigation UI

Mapbox Navigation gives you all the components you need, should you want to build your own custom turn-by-turn navigation UI:

  • Mapbox Maps SDK
  • Mapbox Studio
    • Design custom maps with live traffic overlays
  • MapboxDirections
    • Automotive, cycling, and walking directions
    • Traffic-influenced driving directions
  • Mapbox Core Navigation (MapboxCoreNavigation module)
    • Route controller
      • Progress calculations
      • Location snapping
    • Guidance notifications
      • Current progress along a route
      • Departure and arrival notifications
      • Upcoming maneuver notifications
      • Rerouting notifications
    • Geometry functions
    • Distance formatter

Installing Mapbox Core Navigation

Carthage compatible CocoaPods

To install Mapbox Core Navigation using Carthage v0.19.0 or above:

  1. Specify the following dependency in your Cartfile:

    github "mapbox/mapbox-navigation-ios" ~> 0.3.0
    
  2. Run carthage update --platform iOS to build just the iOS dependencies.

  3. Follow the rest of Carthage’s iOS integration instructions. Your application target’s Embedded Frameworks should include MapboxCoreNavigation.framework.

Alternatively, to install Mapbox Core Navigation using CocoaPods:

  1. Specify the following dependency in your Podfile:

    pod 'MapboxCoreNavigation', '~> 0.3.0'
  2. Run pod install and open the resulting Xcode workspace.

Route Controller

RouteController is given a route. Internally RouteController matches the user's current location to the route while looking at 3 principle pieces:

  1. Is the user on or off the route?
  2. How far along the step is the user?
  3. Does the user need to be alerted about an upcoming maneuver?

The library compares the user from the route and decides upon each one of these parameters and acts accordingly. The developer is told what is happening behind the scenes via NSNotification.

Guidance Notifications

This library relies heavily on NSNotifications for letting the developer know when events have occurred.

RouteControllerProgressDidChange

  • Emitted when the user moves along the route. Notification contains 3 keys:
    • RouteControllerProgressDidChangeNotificationProgressKey - RouteProgress - Current progress along route
    • RouteControllerProgressDidChangeNotificationLocationKey - CLLocation - Current location
    • RouteControllerProgressDidChangeNotificationSecondsRemainingOnStepKey - Double - Given users speed and location, this is the number of seconds left to the end of the step

RouteControllerAlertLevelDidChange

  • Emitted when the alert level changes. This indicates the user should be notified about the upcoming maneuver. See [Alerts](#Alert levels). Notification contains 3 keys:
    • RouteControllerProgressDidChangeNotificationProgressKey - RouteProgress - Current progress along route
    • RouteControllerAlertLevelDidChangeNotificationDistanceToEndOfManeuverKey - CLLocationDistance - The users snapped distance to the end of the route.

RouteControllerShouldReroute

  • Emitted when the user is off the route and should be rerouted. Notification contains 1 key:
    • RouteControllerNotificationShouldRerouteKey - CLLocation - Last location of user

Alert levels

Alert levels indicate the type of announcement that should be given. The enum types available are:

  • none
  • depart - Emitted while departing origin
  • low - Emitted directly after completing the maneuver
  • medium - Emitted when the user has 70 seconds remaining on the route.
  • high - Emitted when the user has 15 seconds remaining on the route.
  • arrive - Emitted when the user arrives at destination

Rerouting

In the event of a reroute, it's necessary to update the current route with a new route. Once fetched, you can update the current route by:

navigation.routeProgress = RouteProgress(route: newRoute)

License

Mapbox Navigation SDK for iOS is released under the ISC License. See LICENSE for details.

mapbox-navigation-ios's People

Contributors

1ec5 avatar davidyou3 avatar dentelezhkin avatar ericrwolfe avatar frederoni avatar friedbunny avatar joneswah avatar mgurreta avatar

Watchers

 avatar  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.