반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 반려견
- JavaScript
- 닷홈
- css3
- MySQL
- 댕댕이
- 그누보드
- html5
- php
- 워드프레스란?
- 제이쿼리
- 병원홈페이지제작
- 워드프레스소개
- 반응형웹
- 자바스크립트
- 카페24
- 워드프레스홈페이지제작
- 워드프레스
- 무료호스팅
- 반응형홈페이지
- 기업홈페이지제작
- Wordpress
- 무료호스팅서버
- 웹호스팅
- 워드프레스플러그인
- 플러그인설치방법
- jQuery
- 영카트
- Linux
- 네이버웹마스터도구
Archives
- Today
- Total
pm1122dev의 비밀노트
[HTML5] geolocation api 본문
728x90
반응형
공식사이트
developer.mozilla.org/ko/docs/Web/API/Geolocation_API
크롬계열브라우저의 경우 무조건 https로 ssl 붙어있는것만 됩니다.
<button id = "find-me">Show my location</button><br/>
<p id = "status"></p>
<a id = "map-link" target="_blank"></a>
<script>
function geoFindMe() {
const status = document.querySelector('#status');
const mapLink = document.querySelector('#map-link');
mapLink.href = '';
mapLink.textContent = '';
function success(position) {
const latitude = position.coords.latitude;
const longitude = position.coords.longitude;
status.textContent = '';
mapLink.href = `https://www.openstreetmap.org/#map=18/${latitude}/${longitude}`;
mapLink.textContent = `Latitude: ${latitude} °, Longitude: ${longitude} °`;
}
function error() {
status.textContent = 'Unable to retrieve your location';
}
if(!navigator.geolocation) {
status.textContent = 'Geolocation is not supported by your browser';
} else {
status.textContent = 'Locating…';
navigator.geolocation.getCurrentPosition(success, error);
}
}
document.querySelector('#find-me').addEventListener('click', geoFindMe);
</script>
728x90
반응형
'javascript&jquery' 카테고리의 다른 글
[다음지도 api] 라이브러리 여러개 사용하기 (0) | 2021.01.27 |
---|---|
[다음지도API] 클러스터 (0) | 2021.01.27 |
단위 콤마 찍기 (0) | 2021.01.25 |
[jquery] 동적으로 추가한 경우 이벤트주기 (0) | 2021.01.23 |
swiperjs 특정 수 이상에서 동작하도록 작업 (0) | 2021.01.23 |
Comments