티스토리 뷰

안녕하세요 강정호입니다.

제가 인하우스키친 이라는 프로젝트를 진행하고 있는데요.

구글 지도 위에 마커를 표시하는 방법에 대해 포스팅 하려고 합니다.



구글 지도 위에 마커 표시하기


먼저 간단한 튜토리얼 예제부터 해보겠습니다.



[구글 지도위에 마커 1개 표시하기]

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
<!DOCTYPE html>
<html>
<head>
    <style>
        /* 지도를 포함하는 div 영역의 크기를 설정하는 css코드 */
        #map {
            height: 400px;  /* 높이는 400 픽셀 */
            width: 100%;  /* 너비는 웹 페이지의 너비 */
        }
    </style>
</head>
<body>
<h3>나의 구글 지도 튜토리얼</h3>
<!--The div element for the map -->
<div id="map"></div>
<script>
    // 구글 지도를 초기화 하고 마커를 추가한다.
    function initMap() {
        // 오스트레일리아 울룰루 산의 위도, 경도 정보
        var uluru = {lat: -25.344, lng: 131.036};
        // 구글 지도 객체를 생성하고, 위치는 uluru로 맞춘다.
        var map = new google.maps.Map(
            document.getElementById('map'), {zoom: 15, center: uluru});
        // Uluru 산에 마커를 위치시키는 ㅗ드
        var marker = new google.maps.Marker({position: uluru, map: map});
    }
</script>
<!--Load the API from the specified URL
* The async attribute allows the browser to render the page while the API loads
* The key parameter will contain your own API key (which is not needed for this tutorial)
* The callback parameter executes the initMap() function
-->
<script async defer
        src="https://maps.googleapis.com/maps/api/js?key=Your API Key&callback=initMap">
</script>
</body>
</html>
cs








이렇게 페이지에 구글 지도가 뜹니다.

그래 그럼 1개 마킹 하는 것은 어떻게 하는지 알겠는데 그렇다면 여러개를 마킹하기 위해서는 어떻게 해야 할까요??




[구글 지도위에 마커 여러개 표시하기]


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
<!DOCTYPE html>
<html>
<head>
    <style>
        /*div의 크기를 설정하기 위해서는 지도의 높이를 정의해야 합니다.*/
        #map {
            height: 100%;
        }
        /* Optional: Makes the sample page fill the window. */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
    </style>
</head>
<body>
<div id="map"></div>
<script>
    var map; //map을 담을 변수 선언
    function initMap() {
                                   //div id가 map인 영역에 지도를 초기화
        map = new google.maps.Map(document.getElementById('map'), {
            zoom: 2//지도의 zoom은 2로 설정.
            center: new google.maps.LatLng(2.8,-187.3), //지도가 초기화 될 때 중심 위치
            mapTypeId: 'terrain' //지도의 타입 : 육지, 위성 등이 있음
        });
 
        // 여러개의 위치 데이터를 가져오는 json 파일.
        var script = document.createElement('script');
        // This example uses a local copy of the GeoJSON stored at
        // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
        script.src = 'https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js';
        document.getElementsByTagName('head')[0].appendChild(script);
    }
 
    // 리스트 정보를 for문을 돌려 각각의 위치에 마커를 표시한다.
    // set of coordinates.
    window.eqfeed_callback = function(results) {
        for (var i = 0; i < results.features.length; i++) {
            var coords = results.features[i].geometry.coordinates;
            var latLng = new google.maps.LatLng(coords[1],coords[0]); //위도 경도 변수
            var marker = new google.maps.Marker({
                position: latLng, //여기에 위도 경도 정보를 입력하고 마커 생성
                map: map
            });
        }
    }
</script>
<script async defer
        src="https://maps.googleapis.com/maps/api/js?key=Your API Key&callback=initMap">
</script>
</body>
</html>
cs


마커를 여러개 표시할 때는 for문을 돌려서 구글 맵 위에 마커를 생성하면 되네요!!

결과는 다음과 같이 나와요.



이제 마커를 여러개 표시하는 방법을 알았으니 제 DB에 있는 리스트를 불러와서 지도에 표시 해볼까요?


1단계 : 호스트 리스트를 불러온다

2 단계 : Controller에서 JSON 형태로 호스트 리스트를 보낸다.

3 단계 : 스크립트에서 JSON 데이터를 for 문을 돌려 지도 위에 마커를 표시한다.


이렇게 3단계로 인하우스키친 프로젝트에 적용하려고 합니다. 아직 적용하는 중이어서 적용 완료되면 그 때 포스팅을 다시 이어갈게요!!

댓글