Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dovecot
- 안드로이드 gcm
- html5
- UML
- 설치
- android 효과음
- 안드로이드 푸쉬
- FCM
- C#
- xe
- 자바스크립트
- chart.js
- Mail Server
- javascript
- mysql
- not working
- 우분투
- roundcube
- 안드로이드
- php 시큐어코딩
- curl
- C# IO
- Android
- php 취약점
- 자동 생성
- 안드로이드 푸시
- soundpool
- 폼메일
- WebView
- PHP
Archives
- Today
- Total
그러냐
구글맵 반경(원) 그리기/삭제, 반경중앙에 마커 추가/삭제(google map circle draw/delete) 본문
반응형
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /** * 반경 그리기 * @param : xy 좌표, 반경사이즈 */ var circle; function drawCircleOnMap(x, y, radius){ //반경중앙좌표, 반경(단위: m) circle = new google.maps.Circle({ strokeColor: '#FF0000', //원 바깥 선 색 strokeOpacity: 0.8, // 바깥 선 투명도 strokeWeight: 1, //바깥 선 두께 fillColor: '#FF0000', //선안의 색 fillOpacity: 0.2,// 토명도 center: {lat: y, lng: x}, //위치 좌표 radius: Number(radius) // 반경, 단위: m }); circle.setMap(map);// 반경을 추가할 map에 set } /** * 반경 중앙 마커그리기 */ var circleMarker; function addCircleMarkerOnMap(obj){ // 마커 정보 obj circleMarker = new google.maps.Marker({ position: new google.maps.LatLng(obj.y , obj.x), // 마커가 위치할 위도,경도(반경중좌표) icon: { url :obj.img, // 마커로 사용할 이미지 scaledSize : new google.maps.Size(obj.width, obj.height)//이미지 사이즈 조정 }, clickable : false, label:{ // 라벨 글씨 크기 및 css지정 text: obj.label, fontSize : "9px", fontFamily : "Dotum", fontWeight : "bold" } }); circleMarker.setMap(map); } /** * 반경 삭제, 반경중앙 마커 삭제 */ function deleteCircle(){ if(typeof circle !== 'undefined'){ circle.setMap(null); } if(typeof circleMarker !== 'undefined'){ circleMarker.setMap(null); } } | cs |
반경중앙에 마커는 중앙을 표시하기 위해 따로 추가한 내용이다.
마커의 icon 의 옵션 scaledSize를 사용하면 이미지의 크기를 지정할수 있다.
마커의 label 은 중앙에 글씨를 표현해준다.
반경(원) 과 마커를 같이 그렸으니 같이 삭제해준다.
출처 : https://henrymin.tistory.com/4
반응형
'javascript' 카테고리의 다른 글
[JavaScript] HTML5 API Geolocation - 현재 위치 정보 얻기 (0) | 2019.10.22 |
---|---|
javascript 날짜 계산, 시간계산 (0) | 2019.07.31 |
node.js React.js 강좌 (0) | 2019.01.03 |
js 파일 내 js 파일 참조 import (0) | 2018.01.22 |
[Javascript] 웹브라우저가 IE(인터넷 익스플로러)인지 확인하기 (0) | 2017.12.07 |