Javascript-13.geolocation 가져오기

위치를 가져오는 것은 쉽다.
navigator.geolocation.getCurrentPosition(성공, 실패)을 이용한다.

navigator.geolocation.getCurrentPosition(GeoSuccess, GeoError);

성공, 실패 경우에 대한 함수를 정의한다.
성공 시에는 인자에 position을 전달한다.

function GeoSuccess(position){
    const lat = position.coords.latitude;
    const lng = position.coords.longitude;
    console.log("You are in "+ lat, lng);

실패시에는 실패 메시지를 출력한다.

function GeoError(){
    console.log("No weather");
}

좋은 웹페이지 즐겨찾기