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
'개발 > Javascript & Typescript' 카테고리의 다른 글
[RN] 카카오톡 로그인 구현하기 (1) | 2023.01.20 |
---|---|
[RN] 드랍다운(Dropdown) 사용하기 (0) | 2022.11.18 |
[RN] AsyncStorage 사용하기 (0) | 2022.11.06 |
[RN] Calendars 넣어보기 (0) | 2022.11.02 |
[RN] React Navigation TopTab 꾸미기 (0) | 2022.11.01 |