get location javascript1 자바스크립트 사용자의 위치 가져오기 How to get a user's location in JS 자바스크립트로 사용자의 위치 가져오기 Geolocation API geolocation API 사용자의 위치정보를 반환한다. 크롬 f12키 -> Application 에서 확인 코드 const COORDS = 'coords' // 좌표 function save(coordsObj) { localStorage.setItem(COORDS, JSON.stringify(coordsObj)); } function geoSuccess(position) { // 위치정보 수락했을 때 const latitude = position.coords.latitude; // 위도 const longitude = position.coords.lon.. 2022. 6. 4. 이전 1 다음