반응형
연결 선 삽입 기능
path = [];
for (var i=0, ii=markerList.length; i<ii; i++) {
var position = new naver.maps.LatLng(markerList[i].position);
path.push(position);
}
polyline = new naver.maps.Polyline({
map: map,
path:path,
clickable: true,
strokeColor: '#5347AA',
strokeStyle: 'longdash',
strokeOpacity: 0.5,
strokeWeight: 5
});
반응형
'Sanpomichi Project' 카테고리의 다른 글
template might not exist or might not be accessible by any of the configured Template Resolvers (0) | 2020.09.09 |
---|---|
자바 스크립 초 단위 실행 (트래킹) (0) | 2020.09.08 |
Naver Map API 초기 위치 조정 및 Info 삽입 (0) | 2020.09.07 |
Naver Map API 클릭 시 마커 추가 + 삭제 (0) | 2020.09.07 |
Mysql JPA DB 연동 에러 해결 (0) | 2020.08.07 |