강희주

Update WeatherAPI/

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