[구글맵] 다중마커 표시

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title> Google Multiple Markers </title>


    <style type="text/css">

      

      #bound {

      height: 60%;

      width: 60%;

      }

      

      

      /* Always set the map height explicitly to define the size of the div

       * element that contains the map. */

       

      

      #map {

        height: 100%;

      }


      /* Optional: Makes the sample page fill the window. */

      html,

      body {

        height: 100%;

        margin: 0;

        padding: 0;

      }

      

      


    </style>

    

    

    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>

    <script

      src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=&v=weekly"

      defer

    >

    </script>

    

    

  <script>

  

  function initMap() {

      const myLatLng = {

        lat: 37.55902624,

        lng: 126.9749014

      };


    var locations = [

      ['서울역', 37.5546788, 126.9706069],

      ['서울특별시청', 37.5668260, 126.9786567],

      ['을지로입구역', 37.5660373, 126.9821930],

      ['덕수궁', 37.5655638, 126.974894],

    ];


    var map = new google.maps.Map(document.getElementById('map'), {

      zoom: 14,

      center: myLatLng,

    });


    var infowindow = new google.maps.InfoWindow();


    var marker, i;


    for (i = 0; i < locations.length; i++) {  

      marker = new google.maps.Marker({

        position: new google.maps.LatLng(locations[i][1], locations[i][2]),

        map: map

      });


      google.maps.event.addListener(marker, 'click', (function(marker, i) {

        return function() {

          infowindow.setContent(locations[i][0]);

          infowindow.open(map, marker);

        }

      })(marker, i));

    }    

  }

    

    </script>

  </head>

  <body>

  <div id = "bound">

    <div id="map"></div>

  </div>

  </body>

</html>

0
0
이 글을 페이스북으로 퍼가기 이 글을 트위터로 퍼가기 이 글을 카카오스토리로 퍼가기 이 글을 밴드로 퍼가기
captcha
자동등록방지 숫자입력

기타

번호 제목 글쓴이 날짜 조회수
13 [DICOM] 정보 최고관리자 11-20 2,093
12 [개발툴] Cross Platform UART Monitor 최고관리자 11-11 1,181
11 익명화 최고관리자 11-05 1,248
10 [KT Cloud] Linux 계열 서버 Data Disk Mount -LVM 구성 최고관리자 11-03 1,559
9 [의료영상솔루션] 의료영상솔루션에서 빅데이터로 'PACS의 진화' 최고관리자 10-26 1,342
8 [Firmware] STM8 Linker: text size overflow 최고관리자 10-26 1,601
7 [STM8] ST Visual Studio 프로젝트 셋팅 최고관리자 10-22 1,507
6 [Firmware] SMT32 HTTP Client 코드 작성을 위한 lwIP Library 최고관리자 10-15 2,641
5 [Firmware] STMF4 시리즈 부트로더, iap 개발 팁 최고관리자 10-15 1,600
4 [특허] 한국, 미국, 일본, 유럽연합, 중국의 디자인보호제도 비교 최고관리자 10-14 1,851
3 [주식] 현재가 창에서 매도. 매수 총잔량으로 파악 하는법 상승시점 파악: 매수시점 최고관리자 09-09 13,132
2 [리눅스] BASH 쉘 설정 최고관리자 09-08 1,846
1 가비아 - Google 도메인 소유자 확인 최고관리자 08-25 1,240