0.7.1 • Published 7 months ago

@cniot/react-native-mapbox-navigation v0.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@cniot/react-native-mapbox-navigation npm Build status npm

Mapbox React Native SDKs enable interactive maps and real-time, traffic-aware turn-by-turn navigation, dynamically adjusting routes to avoid congestion.

https://github.com/pawan-pk/react-native-mapbox-navigation fork, 增加了限行区域、自定义路线导航等功能

注意

  • ios V3版本不支持pods安装,请参考官方文档 通过package dependencies安装

🆕  Uses Mapbox navigation v3 SDK 📱  Supports iOS, Android 🌍  Various languages 🎨  Customizable  Multiple Waypoints 🚘  iOS CarPlay Support

Route View

Turn by turn Navigation View

Installation

1. Download package

# yarn
yarn add @cniot/react-native-mapbox-navigation

# npm
npm install @cniot/react-native-mapbox-navigation

iOS Specific Instructions

  1. Place your secret token in a .netrc file in your OS root directory.

    machine api.mapbox.com
    login mapbox
    password <INSERT SECRET TOKEN>
  2. Install pods

    cd ios && pod install
  3. Place your public token in your Xcode project's Info.plist and add a MBXAccessToken key whose value is your public access token.

  4. Add the UIBackgroundModes key to Info.plist with audio and location if it is not already present. This will allow your app to deliver audible instructions while it is in the background or the device is locked.

    <key>UIBackgroundModes</key>
    <array>
      <string>audio</string>
      <string>location</string>
    </array>

Android Specific Instructions

  1. Place your secret token in your android app's top level gradle.properties or «USER_HOME»/.gradle/gradle.properties file

    MAPBOX_DOWNLOADS_TOKEN=<YOUR_MAPBOX_DOWNLOADS_TOKEN>
  2. Open up your project-level build.gradle file. Declare the Mapbox Downloads API's releases/maven endpoint in the allprojects repositories block.

    allprojects {
        repositories {
            maven {
                  url 'https://api.mapbox.com/downloads/v2/releases/maven'
                  authentication {
                      basic(BasicAuthentication)
                  }
                  credentials {
                    // Do not change the username below.
                    // This should always be `mapbox` (not your username).
                      username = "mapbox"
                      // Use the secret token you stored in gradle.properties as the password
                      password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: ""
                  }
              }
        }
    }
  3. Add Resources To do so create a new string resource file in your app module (e.g. app/src/main/res/values/mapbox_access_token.xml) with your public Mapbox API token:

    <?xml version="1.0" encoding="utf-8"?>
     <resources xmlns:tools="http://schemas.android.com/tools">
         <string name="mapbox_access_token" translatable="false" tools:ignore="UnusedResources">YOUR_MAPBOX_ACCESS_TOKEN</string>
     </resources>

    For more details installation you can read the Official docs of Mapbox.

Usage

import MapboxNavigation from '@cniot/react-native-mapbox-navigation';
import { StyleSheet } from 'react-native';

export default function App() {
  return (
    <MapboxNavigation
      startOrigin={{ latitude: 30.699239, longitude: 76.6905161 }}
      destination={{ latitude: 30.6590196, longitude: 76.8185852 }}
      waypoints={[
        { latitude: 30.726848, longitude: 76.733758 },
        { latitude: 30.738819, longitude: 76.757902 },
      ]}
      style={styles.container}
      shouldSimulateRoute={false}
      showCancelButton={false}
      language="en"
    />
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
  },
});

MapboxNavigation Props

  • startOrigin(Required) (object): The starting point of the navigation. Should contain latitude and longitude keys.

  • destination(Required) (object): The destination point of the navigation. Should contain latitude and longitude keys.

  • waypoints (array): The waypoints for navigation points between startOrigin and destination. Should contains array of latitude and longitude keys.

  • style (StyleObject): Custom styles for the navigation mapview.

  • shouldSimulateRoute (boolean): iOS Only If true, simulates the route for testing purposes. Defaults to false.

  • showCancelButton (boolean): Android Only If true, shows a cancel button on the navigation screen. Defaults to false.

  • language (string): The language for the navigation instructions. Defaults to en.

  • distanceUnit ('metric' | 'imperial'): Unit of direction and voice instructions (default is 'imperial')

  • onLocationChange: Function that is called frequently during route navigation. It receives latitude, longitude, heading and accuracy as parameters that represent the current location during navigation.

  • onRouteProgressChange: Function that is called frequently during route navigation. It receives distanceTraveled, durationRemaining, fractionTraveled, and distanceRemaining as parameters.

  • onError: Function that is called whenever an error occurs. It receives a message parameter that describes the error that occurred.

  • onCancelNavigation: Function that is called whenever a user cancels navigation.

  • onArrive: Function that is called when you arrive at the provided destination.

  • travelMode ('driving' | 'driving-traffic' | 'walking' | 'cycling'): Specifies the mode of travel to be used for navigation (default is 'driving-traffic'):

    • 'driving': Standard automobile navigation that does not take live traffic conditions into account.
    • 'driving-traffic': Automobile navigation that considers current traffic conditions to avoid congestion.
    • 'walking': Navigation for pedestrians.
    • 'cycling': Navigation optimized for cyclists.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library