모바일웹에서 현재위치의 좌표 가져오기

· 2015-12-03 (목) 11:09:10 · 14760

<!-- 지도를 보이기 위한 라이브러리 포함하기 -->

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>

 

<script type="text/javascript">  

function loadPost() {

  if (!!navigator.geolocation) 

  {

    navigator.geolocation.getCurrentPosition(successCallback,errorCallback);  

  }

  else

  {

    alert("이 브라우저는 Geolocation를 지원하지 않습니다");

  }

}    

 

function errorCallback(error)

{

    alert(error.message);

}    

 

function successCallback(position) { 

        var lat = position.coords.latitude;

        var lng = position.coords.longitude;

        취득한 좌표로 추가 로직을 첨부하면 됩니다. 

}

</script>

<body onload="loadPost();"> 

 

 

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 15-12-03 조회 3,105
Mobile 15-12-03 조회 1.5만
JavaScript 15-12-03 조회 1.8만
JavaScript 15-12-03 조회 3,915
PHP 15-12-02 조회 6,502
PHP 15-12-02 조회 4,166
PHP 15-12-02 조회 5,926
PHP 15-12-02 조회 3,235
PHP 15-12-01 조회 3,339
PHP 15-12-01 조회 2,587
PHP 15-12-01 조회 2,710
PHP 15-11-30 조회 3,972
PHP 15-11-30 조회 5,418
PHP 15-11-30 조회 3,409
PHP 15-11-29 조회 2,517
PHP 15-11-29 조회 2,724
PHP 15-11-29 조회 6,287
PHP 15-11-28 조회 2,584
PHP 15-11-28 조회 3,067
PHP 15-11-28 조회 7,306
PHP 15-11-27 조회 3,316
PHP 15-11-27 조회 3,434
PHP 15-11-27 조회 2,962
MySQL 15-11-26 조회 9,364
JavaScript 15-11-25 조회 3,258
PHP 15-11-25 조회 2,801
PHP 15-11-25 조회 2,735
PHP 15-11-25 조회 3,377
웹서버 15-11-25 조회 3,668
PHP 15-11-23 조회 7,596