react-native-geotag-image
v0.1.0
Published
A react native package for geo tagging the images with coordinates and address.
Downloads
5
Maintainers
Readme
react-native-geotag-image
A react native android package for geo tagging the images with coordinates and address.
Installation
npm install react-native-geotag-imageUsage
import { geoTagImage } from 'react-native-geotag-image';
// ...
const result = await geoTagImage(
imagePath: string,
elementsList: string[],
tagUserCoordinates: boolean
)Android Permission
Requires permission for accessing Fine or coarse location if tagUserCoordinages is set true.
Add following lines in AndroidManifest.xml
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
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
