강희주

Merge remote-tracking branch 'refs/remotes/origin/master'

......@@ -12,6 +12,7 @@
console.log(userLat);
var userLng = document.getElementById('longitude').innerText.trim(); // trim으로 공백을 제거하고 실제 값만 불러오기
console.log(userLng);
const APIKEY = "ea903679a6e5a44da75a971c0231f4f4";
fetch("https://api.openweathermap.org/data/2.5/weather?lat=" + userLat + "&lon=" + userLng + "&appid=" + APIKEY + "&units=metric")
.then(res => res.json())
......@@ -90,11 +91,13 @@
<fieldset>
<legend>현재 내 위치 정보</legend>
<div><input type="button" value="현재 내 위치 검색"></div><br><!-- 검색 버튼 누르면 팝업으로 위치 서비스 동의 버튼 뜨게 하기 -->
<div><input type="button" value="현재 내 위치 검색"></div><br>
<li>위도:<span id="latitude"></span></li>
<li>경도:<span id="longitude"></span></li>
<li>위치:<span id="LocationName"></span></li>
<li>날씨:<span id="WeatherCondition"></span></li>
<li>기온:<span id="Temp"></span></li>
<!-- 검색 버튼 누르면 팝업으로 위치 서비스 동의 버튼 뜨게 하기 -->
</fieldset>
<fieldset>
......@@ -124,6 +127,7 @@
</fieldset>
<br>
<br>
<br>
......
......@@ -259,8 +259,3 @@ app.listen(3000, function() {
});
//로그인 로그아웃 여부
const authInfo = (req)=>{
if(req.user) return `${user.name} | <a href="/logout">로그아웃</a>`;
return `<a href="/login">login</a>`;
}
\ No newline at end of file
......