강희주

Update WeatherAPI/

delete unnecessary code
...@@ -11,7 +11,7 @@ request("https://api.openweathermap.org/data/2.5/weather?lat=" + userLat + "&lon ...@@ -11,7 +11,7 @@ request("https://api.openweathermap.org/data/2.5/weather?lat=" + userLat + "&lon
11 var LocationName = jsonObject.name; //지역 이름 11 var LocationName = jsonObject.name; //지역 이름
12 var WeatherCondition = jsonObject.weather[0].main; //현재 날씨 12 var WeatherCondition = jsonObject.weather[0].main; //현재 날씨
13 var Temp = jsonObject.main.temp; //현재 기온 13 var Temp = jsonObject.main.temp; //현재 기온
14 - console.log(body); 14 + //console.log(body);
15 console.log(LocationName); 15 console.log(LocationName);
16 console.log(WeatherCondition); 16 console.log(WeatherCondition);
17 console.log(Temp); 17 console.log(Temp);
......