Socket
Book a DemoInstallSign in
Socket

react-native-google-maps-directions

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-google-maps-directions

Get direction using Google Maps in React Native

Source
npmnpm
Version
1.1.1
Version published
Weekly downloads
489
-10.28%
Maintainers
1
Weekly downloads
 
Created
Source

🚚 react-native-google-maps-directions 🚲

🚕 Get direction using Google Maps in React Native 🚗

NPM version Downloads Standard Travis Build Standard Readme GitHub version

Built with ❤︎ by Tiaan and contributors

Table of Contents

Table of Contents
  • About
  • Install
  • Usage
  • API
  • Contribute
  • License
  • About

    A tiny module that uses the React Native Linking API to get directions using Google Maps by opening it in the default browser or app if installed.

    Maps for the win

    Install

    $ npm install --save react-native-google-maps-directions
    
    $ yarn add react-native-google-maps-directions
    

    Usage

    import getDirections from 'react-native-google-maps-directions'
    
    export default class gmapsDirections extends Component {
    
      handleGetDirections = () => {
        const data = {
           source: {
            latitude: -33.8356372,
            longitude: 18.6947617
          },
          destination: {
            latitude: -33.8600024,
            longitude: 18.697459
          },
          params: [
            {
              key: "dirflg",
              value: "w"
            }
          ]
        }
    
        getDirections(data)
      }
    
      render() {
        return (
          <View style={styles.container}>
            <Button onPress={this.handleGetDirections} title="Get Directions" />
          </View>
        );
      }
    }
    
    Demo usage

    API

    The module exports a single getDirections function that takes a object as its argument. The object may have destination (Where your coming from) and source (Where you going to) both of which have latitude and longitude number properties. If source is undefined, it defaults to the user's current location. If destination is undefined, it leaves it blank in Google Maps and the user will be able to enter a destination.

    Additionaly parameters can be added as key-value pairs to the params array (optional). The supported parameters are listed here. For example, in the code above, the key-value pair dirflg and w tells google maps to provide the directions with travel mode set to walking.

    Contribute

    Contributions are welcome. Please open up an issue or create PR if you would like to help out.

    Note: If editing the README, please conform to the standard-readme specification.

    License

    Licensed under the MIT License.

    Keywords

    react-native,

    FAQs

    Package last updated on 16 Aug 2017

    Did you know?

    Socket

    Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

    Install

    Related posts