npm.io
0.2.2 • Published 8 years ago

react-native-location-mode-android

Licence
Version
0.2.2
Deps
0
Vulns
0
Weekly
0
Stars
1

react-native-location-mode-android

Provides information about location mode for android

Install

Download package

npm install react-native-location-mode-android --save

Link plugin files

react-native link react-native-location-mode-android

Usage

Get phone's location mode
import LocationMode from 'react-native-location-mode-android';

LocationMode.getMode().then((mode) => {
  console.log(mode); // -> can be one of LOCATION_OFF, HIGH_ACCURACY, DEVICE_ONLY, BATTERY_SAVE
});
Check specific mode
import LocationMode from 'react-native-location-mode-android';

LocationMode.isHighAccuracy().then((result) => {
  console.log(result); // -> boolean
});

Keywords