Gathering detailed insights and metrics for etm-react-native-map-link
Gathering detailed insights and metrics for etm-react-native-map-link
Gathering detailed insights and metrics for etm-react-native-map-link
Gathering detailed insights and metrics for etm-react-native-map-link
npm install etm-react-native-map-link
Typescript
Module System
Node Version
NPM Version
TypeScript (97.3%)
JavaScript (2.7%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
763 Stars
610 Commits
147 Forks
6 Watchers
1 Branches
61 Contributors
Updated on Jul 02, 2025
Latest Version
2.7.1
Package Id
etm-react-native-map-link@2.7.1
Unpacked Size
105.97 kB
Size
75.66 kB
File Count
23
NPM Version
6.9.0
Node Version
12.6.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
2
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
google-maps
citymapper
uber
lyft
transit
waze
yandex
moovit
yandex-maps
kakaomap
1npm i -S react-native-map-link # or yarn add react-native-map-link
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/Info.plist
to specify the URL schemes with which the app can interact.
Just put 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.
1<key>LSApplicationQueriesSchemes</key> 2<array> 3 <string>comgooglemaps</string> 4 <string>citymapper</string> 5 <string>uber</string> 6 <string>lyft</string> 7 <string>transit</string> 8 <string>waze</string> 9 <string>yandexnavi</string> 10 <string>moovit</string> 11 <string>yandexmaps</string> 12 <string>kakaomap</string> 13</array>
Using Expo? Read the instructions to make it work on iOS.
Using the showLocation
function will shown an action sheet on iOS and an alert on Android, without any custom styling:
1import { showLocation } from 'react-native-map-link'
2
3showLocation({
4 latitude: 38.8976763,
5 longitude: -77.0387185,
6 sourceLatitude: -8.0870631, // optionally specify starting location for directions
7 sourceLongitude: -34.8941619, // not optional if sourceLatitude is specified
8 title: 'The White House', // optional
9 googleForceLatLon: false, // optionally force GoogleMaps to use the latlon for the query instead of the title
10 googlePlaceId: 'ChIJGVtI4by3t4kRr51d_Qm_x58', // optionally specify the google-place-id
11 alwaysIncludeGoogle: true, // optional, true will always add Google Maps to iOS and open in Safari, even if app is not installed (default: false)
12 dialogTitle: 'This is the dialog Title', // optional (default: 'Open in Maps')
13 dialogMessage: 'This is the amazing dialog Message', // optional (default: 'What app would you like to use?')
14 cancelText: 'This is the cancel button text', // optional (default: 'Cancel')
15 appsWhiteList: ['google-maps'] // optionally you can set which apps to show (default: will show all supported apps installed on device)
16 // app: 'uber' // optionally specify specific app to use
17})
Notes:
sourceLatitude/sourceLongitude
options only work if you specify both. Currently supports all apps except Waze.This library is developed by Lean Motherfuckers, a tech consulting company like no other.
Contributors:
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 5/8 approved changesets -- score normalized to 6
Reason
6 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More