- html5
 - html5/VA
 - html5/canvas
 - html5/drag-and-drop
 - html5/form
 - html5/geolocation
 - html5/offline-web-application
 - html5/others-api
 - html5/outline
 - html5/overview
 - html5/richtext-edit
 - html5/video&audio
 - html5/web-storage
 - html5/web-workers
 - html5/webSqlDatabase
 - html5/websocket
 - html5/문제점
 - html5practice/roundRect
 - html5practice/즐겨찾기목록만들기
 
1. Geolocation API? ¶
- 프로그램을 실행하는 디바이스의 위치 정보를 얻기 위한 API
 - 모바일 애플리케이션과 연동하여 사용
 - 고급 레벨의 API - GPS를 이용하는지 네트워크 정보를 이용하는지는 알수 없으나
디바이스나 네트워크의 종류에 관계없이 동작!
 
2.1. getCurrentPosition() ¶
- 현재 위치를 한번만 받는 메서드
 
   namigator.geolocation.getCurrentPosition(function(position){
     alert("위도:" + position.coords.latitude +
        "경도 :" + position.coords.longitude);
   });
- 위치 정보 객체의 속성
 
| coords 속성 | 설명 | 
| latitude | 위도 | 
| longitude | 경도 | 
| altitude | 표고 | 
| accuracy | 위도와 경도의 오차 | 
| altitudeAccuracy | 표고의 오차 | 
| heading | 진행방향 | 
| speed | 진행 속도 | 










