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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> var map; var infowindow = new google.maps.InfoWindow(); initialize(); function initialize() { // 위도와 경도 var latlng = new google.maps.LatLng(37.530659, 126.924083); // 지도옵션 var myOptions = { zoom: 15, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; // 지도 객체생성 map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); // 마커 만들기 var marker = new google.maps.Marker({ position: latlng, map: map, title: "대한민국 서울특별시 영등포구 은행로 38" }); marker.setMap(map); google.maps.event.addListener(marker, 'click', function() { var infowindow = new google.maps.InfoWindow( { content: '<h4>대한민국 서울특별시 영등포구 은행로 38</h4> <br />(여의도동 16-1)', //size: new google.maps.Size(100,100) }) infowindow.open(map, marker); }); // 정보창 띄우기 var infowindow = new google.maps.InfoWindow({ content: "<h4>대한민국 서울특별시 영등포구 은행로 38</h4> <br />(여의도동 16-1)" }); infowindow.open(map, marker); } <div id="map_canvas" style="width: 768px; height: 370px"></div> Colored by Color Scripter cs | cs |
'World Wide Web > javascript' 카테고리의 다른 글
브라우저 체크 (0) | 2014.01.17 |
---|---|
팝업창에서 부모창 옆에 새창 띄우기 (0) | 2013.11.12 |
자바스크립트 location객체 설명 (0) | 2013.05.28 |
pc 또는 모바일 기기에서 접속했는지 판단하기 (0) | 2013.05.28 |
[javascript]팝업창-오늘 하루 열지 않기 (1) | 2013.05.06 |