728x90
일단 처음이기 때문에 니콜라스 쌤 수업을 들으면서 진행하려고 한다!
#2.8 Weather (15:32) – 노마드 코더 Nomad Coders
이 영상을 보면서 따라했다!
필수!!
expo install expo-location
<App.js>
import * as Location from "expo-location";
import { StatusBar } from "expo-status-bar";
import React, { useEffect, useState } from "react";
import {
View,
Text,
Dimensions,
ActivityIndicator,
StyleSheet,
ScrollView,
} from "react-native";
import { Fontisto } from "@expo/vector-icons";
const { width: SCREEN_WIDTH } = Dimensions.get("window");
const API_KEY = "784ab24ff2ed5d94d4288abed9e25d13";
const icons = {
Clouds: "cloudy",
Clear: "day-sunny",
Atmosphere: "cloudy-gusts",
Snow: "snow",
Rain: "rains",
Drizzle: "rain",
Thunderstorm: "lightning",
};
export default function App() {
const [city, setCity] = useState("Loading...");
const [days, setDays] = useState([]);
const [ok, setOk] = useState(true);
const getWeather = async () => {
const { granted } = await Location.requestForegroundPermissionsAsync();
if (!granted) {
setOk(false);
}
const {
coords: { latitude, longitude },
} = await Location.getCurrentPositionAsync({ accuracy: 5 });
const location = await Location.reverseGeocodeAsync(
{ latitude, longitude },
{ useGoogleMaps: false }
);
setCity(location[0].city);
const response = await fetch(
`https://api.openweathermap.org/data/2.5/onecall?lat=${latitude}&lon=${longitude}&exclude=alerts&appid=${API_KEY}&units=metric`
);
const json = await response.json();
setDays(json.daily);
};
useEffect(() => {
getWeather();
}, []);
return (
<View style={styles.container}>
<StatusBar style="light" />
<View style={styles.city}>
<Text style={styles.cityName}>{city}</Text>
</View>
<ScrollView
pagingEnabled
horizontal
showsHorizontalScrollIndicator={false}
contentContainerStyle={styles.weather}
>
{days.length === 0 ? (
<View style={{ ...styles.day, alignItems: "center" }}>
<ActivityIndicator
color="white"
style={{ marginTop: 10 }}
size="large"
/>
</View>
) : (
days.map((day, index) => (
<View key={index} style={styles.day}>
<View
style={{
flexDirection: "row",
alignItems: "center",
width: "100%",
justifyContent: "space-between",
}}
>
<Text style={styles.temp}>
{parseFloat(day.temp.day).toFixed(1)}
</Text>
<Fontisto
name={icons[day.weather[0].main]}
size={68}
color="white"
/>
</View>
<Text style={styles.description}>{day.weather[0].main}</Text>
<Text style={styles.tinyText}>{day.weather[0].description}</Text>
</View>
))
)}
</ScrollView>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "tomato",
},
city: {
flex: 1.2,
justifyContent: "center",
alignItems: "center",
},
cityName: {
fontSize: 58,
fontWeight: "500",
color: "white",
},
weather: {},
day: {
width: SCREEN_WIDTH,
alignItems: "flex-start",
paddingHorizontal: 20,
},
temp: {
marginTop: 50,
fontWeight: "600",
fontSize: 100,
color: "white",
},
description: {
marginTop: -10,
fontSize: 30,
color: "white",
fontWeight: "500",
},
tinyText: {
marginTop: -5,
fontSize: 25,
color: "white",
fontWeight: "500",
},
});
위 코드를 실행하기 전에
install을 해줘야 한다!
expo install expo-location
위도 경도까지 알수 있음!
이것도 써서 서버에 보내고 막 이러쿵 저러쿵 쓰면 될거 같다!
app 키를 받으면 좋은 데ㅔ
그냥 쓰고 싶은걸요ㅎㅎㅎㅎ,,,,
위 코드는 날씨 정보까지 가져온다!
https://dev-yakuza.posstree.com/ko/react-native/react-native-geolocation-service/
https://dlee0129.tistory.com/32
https://www.univdev.page/posts/react-native-tracking/
이게 제일 좋아보임!
직접 코드를 짜기 전에 찾아봤던 자료들이다
728x90
'프론트 > React Native, React' 카테고리의 다른 글
[리액트네이티브] react-native QR code (0) | 2023.06.19 |
---|---|
[React] 프로젝트 생성하기(1)_일주일 프로젝트 (0) | 2023.06.19 |
[리액트 네이티브] react-native 전화번호 인증하기 (0) | 2023.06.19 |
[리액트 네이티브] react-native 로그인 회원가입 (0) | 2023.06.19 |
[리액트 네이티브] react-native 리액트 네이티브 파일 프로젝트 생성하기(2) (2) | 2023.06.19 |