// 현재 위치 받아오기, 해당 오브젝트 내에서 경도 위도 받아오기
let {coords : {latitude, longitude}} = await Location.getCurrentPositionAsync({accuracy:5});
// 경도 위도 바탕으로 지역정보 가져오기
const location = await Location.reverseGeocodeAsync({latitude, longitude}, {useGoogleMaps : false})
// city state에 저장해주기
setCity(location[0].city)
```
const response = await fetch(`https://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${API_KEY}`);
const json = await response.json();
```