

An easy way to open a location in a map app of the user's choice, based on the apps they have installed
on their device.
Currently supported apps:
- Apple Maps –
apple-maps
- Google Maps –
google-maps
- Citymapper –
citymapper
- Uber –
uber
- Lyft –
lyft
- The Transit App –
transit
- TruckMap –
truckmap
- Waze –
waze
- Yandex.Navi –
yandex
- Moovit –
moovit
- Yandex Taxi –
yandex-taxi
- Yandex Maps –
yandex-maps
- Kakao Map –
kakaomap
- Mapy.cz –
mapycz
- Maps.me –
maps-me
- OsmAnd -
osmand
- Gett -
gett
- Naver Map -
navermap
- 2GIS -
dgis
Installation
1. Install the package
npm i -S react-native-map-link # or yarn add react-native-map-link
2. Update your Info.plist
To allow your app to detect if any of the directions apps are installed, an extra step is required on iOS. Your app needs to provide the LSApplicationQueriesSchemes
key inside ios/{my-project}/Info.plist
to specify the URL schemes with which the app can interact.
Just add this in your Info.plist
depending on which apps you'd like to support. Omitting these might mean that the library can't detect some of the maps apps installed by the user.
<key>LSApplicationQueriesSchemes</key>
<array>
<string>comgooglemaps</string>
<string>citymapper</string>
<string>uber</string>
<string>lyft</string>
<string>transit</string>
<string>truckmap</string>
<string>waze</string>
<string>yandexnavi</string>
<string>moovit</string>
<string>yandextaxi</string>
<string>yandexmaps</string>
<string>kakaomap</string>
<string>szn-mapy</string>
<string>mapsme</string>
<string>osmandmaps</string>
<string>gett</string>
<string>nmap</string>
<string>dgis</string>
</array>
Using Expo? Read the instructions to make it work on iOS.
Usage
Using the showLocation
function will shown an action sheet on iOS and an alert on Android, without any custom styling:
import { showLocation } from 'react-native-map-link'
showLocation({
latitude: 38.8976763,
longitude: -77.0387185,
sourceLatitude: -8.0870631,
sourceLongitude: -34.8941619,
title: 'The White House',
googleForceLatLon: false,
googlePlaceId: 'ChIJGVtI4by3t4kRr51d_Qm_x58',
alwaysIncludeGoogle: true,
dialogTitle: 'This is the dialog Title',
dialogMessage: 'This is the amazing dialog Message',
cancelText: 'This is the cancel button text',
appsWhiteList: ['google-maps'],
naverCallerName: 'com.example.myapp'
})
Notes:
- The
sourceLatitude/sourceLongitude
options only work if you specify both. Currently supports all apps except Waze.
More information