개발/Javascript & Typescript

[RN] 현재 위치의 경도, 위도 가져오기

devhooney 2022. 11. 13. 16:02
728x90

리액트 네이티브 버전 :  "react-native": "0.69.2"

 

라이브러리를 활용하여 현재 위치의 경도, 위도를 가져와봤다.

 

npm i @react-native-community/geolocation

 

로 설치하면 "@react-native-community/geolocation": "^3.0.3" 버전이 설치된다.

 

안드로이드와 iOS 설정을 해줘야 한다.

 

- iOS

ios 폴더에서 pod install 후

Info.plist에 

<key>NSLocationWhenInUseUsageDescription</key>

<string></string>

을 찾아서 아래 코드를 넣어준다.

 

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string></string>
<key>NSLocationAlwaysUsageDescription</key>
<string></string>

 

- Android

andriodManifest.xml 파일에

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

를 넣어준다.

 

728x90