js api
function ok(inf){ console.log(inf); } function wrong() { console.log("error"); } navigator.geolocation.getCurrentPosition(ok,wrong); 위치 정보를 불러오기 위해 navigator.geolocation 사용. getCurrentPosion(성공 , 실패 )을 이용해 위치 사용권한을 얻었을때, 실패했을때 실행할 함수를 지정. ok함수의 인자에 경도,위도가 담겨있다. 날씨 api 제공 https://openweathermap.org/ 사용. api 키를 발급받고 제공 url에 구한 경도,위도를 넣고 사용함. 해당 url로 fetch()를 사용한다. fetch는 Promise. Promise는 당장 바로얻을 ..
웹/js
2022. 7. 2. 18:04