반응형
전역 선언
var marker_;
playAlert = setInterval(function() {
marker_.setMap(null);
navigator.geolocation.getCurrentPosition(onSuccessGeolocation, onErrorGeolocation);
}, 1000);
초단위 현재 위치에 마커
function onSuccessGeolocation(position) {
var location = new naver.maps.LatLng(position.coords.latitude,
position.coords.longitude);
marker_ = new naver.maps.Marker({
position: location,
map: map
});
map.setCenter(location); // 얻은 좌표를 지도의 중심으로 설정합니다.
map.setZoom(17); // 지도의 줌 레벨을 변경합니다.
console.log('Coordinates: ' + location.toString());
}
초 단위 실행 종료
clearInterval(playAlert);
반응형
'Sanpomichi Project' 카테고리의 다른 글
datatable option remove (0) | 2020.10.05 |
---|---|
template might not exist or might not be accessible by any of the configured Template Resolvers (0) | 2020.09.09 |
Naver Map API Polyline (0) | 2020.09.07 |
Naver Map API 초기 위치 조정 및 Info 삽입 (0) | 2020.09.07 |
Naver Map API 클릭 시 마커 추가 + 삭제 (0) | 2020.09.07 |