Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최지우
/
oss_project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최지우
2020-11-30 23:52:48 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aed7ddccb8531b74b38228680378801ba2122d85
aed7ddcc
1 parent
101f0352
add readme, 카테고리별 검색 기능
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
391 additions
and
28 deletions
README.md
views/main.ejs
views/search.ejs
README.md
0 → 100644
View file @
aed7ddc
## Subject
Kakao 지도 API를 이용한 여행 경로 추천 서비스
출발지와 도착지를 설정하면 사이 경로의 유명 관광지/음식점/카페 등을 카테고리 별로 반환
원하는 장소를 경유지로 추가하여 경로를 재검색
## How to build
### npm
~$ npm install
### Kakao 지도 API
<https://apis.map.kakao.com/web/>
카카오계정을 통해 APP KEY를 발급받은 후 views/main.ejs, views/search.ejs의 아래 부분에 추가
src = "//dapi.kakao.com/v2/maps/sdk.js?appkey=APPKEY&libraries=services"
## How to use
-
메인 페이지 지도상에서 출발지와 도착지를 선택하고 검색버튼 클릭
-
검색된 페이지에서 이동 경로에 있는 카테고리 별 장소(관광명소, 숙박, 카페, 음식점)를 검색 가능
-
지도 상에 마커와 인포윈도우를 통해 결과를 출력
-
원하는 경유지를 선택하여 경로 재검색 가능
## License
MIT License
Copyright (c) 2020 Jiwoo Choi
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
views/main.ejs
View file @
aed7ddc
...
...
@@ -14,8 +14,8 @@
<script>
var
mapContainer
=
document
.
getElementById
(
'map'
),
// 지도를 표시할 div
mapOption
=
{
center
:
new
kakao
.
maps
.
LatLng
(
3
3.450701
,
126.570667
),
level
:
3
// 지도의 확대 레벨
center
:
new
kakao
.
maps
.
LatLng
(
3
7.564213
,
127.001698
),
level
:
10
// 지도의 확대 레벨
};
var
map
=
new
kakao
.
maps
.
Map
(
mapContainer
,
mapOption
);
// 지도를 생성합니다
...
...
@@ -39,7 +39,7 @@ var startDragSrc = 'https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/red
var
startDragImage
=
new
kakao
.
maps
.
MarkerImage
(
startDragSrc
,
startDragSize
,
startDragOption
);
// 출발 마커가 표시될 위치입니다
var
startPosition
=
new
kakao
.
maps
.
LatLng
(
3
3.450701
,
126.570667
);
var
startPosition
=
new
kakao
.
maps
.
LatLng
(
3
7.564213
,
127.001698
);
// 출발 마커를 생성합니다
...
...
@@ -83,7 +83,7 @@ var arriveDragSrc = 'https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/bl
var
arriveDragImage
=
new
kakao
.
maps
.
MarkerImage
(
arriveDragSrc
,
arriveDragSize
,
arriveDragOption
);
// 도착 마커가 표시될 위치입니다
var
arrivePosition
=
new
kakao
.
maps
.
LatLng
(
3
3.450701
,
126.572667
);
var
arrivePosition
=
new
kakao
.
maps
.
LatLng
(
3
7.564213
,
127.011698
);
// 도착 마커를 생성합니다
var
arriveMarker
=
new
kakao
.
maps
.
Marker
({
...
...
views/search.ejs
View file @
aed7ddc
...
...
@@ -2,13 +2,96 @@
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
카테고리로 장소 검색하기
</title>
<title>
검색 결과
</title>
<style>
.map_wrap
,
.map_wrap
*
{
margin
:
0
;
padding
:
0
;
font-family
:
'Malgun Gothic'
,
dotum
,
'돋움'
,
sans-serif
;
font-size
:
12px
;}
.map_wrap
{
position
:
relative
;
width
:
100%
;
height
:
800px
;}
#category
{
position
:
absolute
;
top
:
10px
;
left
:
10px
;
border-radius
:
5px
;
border
:
1px
solid
#909090
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.4
);
background
:
#fff
;
overflow
:
hidden
;
z-index
:
2
;}
#category
li
{
float
:
left
;
list-style
:
none
;
width
:
50px
;
px;
border-right
:
1px
solid
#acacac
;
padding
:
6px
0
;
text-align
:
center
;
cursor
:
pointer
;}
#category
li
.on
{
background
:
#eee
;}
#category
li
:hover
{
background
:
#ffe6e6
;
border-left
:
1px
solid
#acacac
;
margin-left
:
-1px
;}
#category
li
:last-child
{
margin-right
:
0
;
border-right
:
0
;}
#category
li
span
{
display
:
block
;
margin
:
0
auto
3px
;
width
:
27px
;
height
:
28px
;}
#category
li
.category_bg
{
background
:
url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/places_category.png)
no-repeat
;}
#category
li
.bank
{
background-position
:
-10px
0
;}
#category
li
.mart
{
background-position
:
-10px
-36px
;}
#category
li
.pharmacy
{
background-position
:
-10px
-72px
;}
#category
li
.oil
{
background-position
:
-10px
-108px
;}
#category
li
.cafe
{
background-position
:
-10px
-144px
;}
#category
li
.store
{
background-position
:
-10px
-180px
;}
#category
li
.on
.category_bg
{
background-position-x
:
-46px
;}
.placeinfo_wrap
{
position
:
absolute
;
bottom
:
28px
;
left
:
-150px
;
width
:
300px
;}
.placeinfo
{
position
:
relative
;
width
:
100%
;
border-radius
:
6px
;
border
:
1px
solid
#ccc
;
border-bottom
:
2px
solid
#ddd
;
padding-bottom
:
10px
;
background
:
#fff
;}
.placeinfo
:nth-of-type
(
n
)
{
border
:
0
;
box-shadow
:
0px
1px
2px
#888
;}
.placeinfo_wrap
.after
{
content
:
''
;
position
:
relative
;
margin-left
:
-12px
;
left
:
50%
;
width
:
22px
;
height
:
12px
;
background
:
url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png')
}
.placeinfo
a
,
.placeinfo
a
:hover
,
.placeinfo
a
:active
{
color
:
#fff
;
text-decoration
:
none
;}
.placeinfo
a
,
.placeinfo
span
{
display
:
block
;
text-overflow
:
ellipsis
;
overflow
:
hidden
;
white-space
:
nowrap
;}
.placeinfo
span
{
margin
:
5px
5px
0
5px
;
cursor
:
default
;
font-size
:
13px
;}
.placeinfo
.title
{
font-weight
:
bold
;
font-size
:
14px
;
border-radius
:
6px
6px
0
0
;
margin
:
-1px
-1px
0
-1px
;
padding
:
10px
;
color
:
#fff
;
background
:
#d95050
;
background
:
#d95050
url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/arrow_white.png)
no-repeat
right
14px
center
;}
.placeinfo
.tel
{
color
:
#0f7833
;}
.placeinfo
.jibun
{
color
:
#999
;
font-size
:
11px
;
margin-top
:
0
;}
.map_wrap
a
,
.map_wrap
a
:hover
,
.map_wrap
a
:active
{
color
:
#000
;
text-decoration
:
none
;}
#menu_wrap
{
position
:
absolute
;
top
:
0
;
left
:
1600px
;
bottom
:
0
;
width
:
250px
;
margin
:
10px
0
30px
10px
;
padding
:
5px
;
overflow-y
:
auto
;
background
:
rgba
(
255
,
255
,
255
,
0.7
);
z-index
:
1
;
font-size
:
12px
;
border-radius
:
10px
;}
.bg_white
{
background
:
#fff
;}
#placesList
li
{
list-style
:
none
;}
#placesList
.item
{
position
:
relative
;
border-bottom
:
1px
solid
#888
;
overflow
:
hidden
;
cursor
:
pointer
;
min-height
:
65px
;}
#placesList
.item
span
{
display
:
block
;
margin-top
:
4px
;}
#placesList
.item
h5
,
#placesList
.item
.info
{
text-overflow
:
ellipsis
;
overflow
:
hidden
;
white-space
:
nowrap
;}
#placesList
.item
.info
{
padding
:
10px
0
10px
55px
;}
#placesList
.info
.gray
{
color
:
#8a8a8a
;}
#placesList
.info
.jibun
{
padding-left
:
26px
;
background
:
url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/places_jibun.png)
no-repeat
;}
#placesList
.info
.tel
{
color
:
#009900
;}
#placesList
.item
.markerbg
{
float
:
left
;
position
:
absolute
;
width
:
36px
;
height
:
37px
;
margin
:
10px
0
0
10px
;
background
:
url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/marker_number_blue.png)
no-repeat
;}
#placesList
.item
.marker_1
{
background-position
:
0
-10px
;}
#placesList
.item
.marker_2
{
background-position
:
0
-56px
;}
#placesList
.item
.marker_3
{
background-position
:
0
-102px
}
#placesList
.item
.marker_4
{
background-position
:
0
-148px
;}
#placesList
.item
.marker_5
{
background-position
:
0
-194px
;}
#placesList
.item
.marker_6
{
background-position
:
0
-240px
;}
#placesList
.item
.marker_7
{
background-position
:
0
-286px
;}
#placesList
.item
.marker_8
{
background-position
:
0
-332px
;}
#placesList
.item
.marker_9
{
background-position
:
0
-378px
;}
#placesList
.item
.marker_10
{
background-position
:
0
-423px
;}
#placesList
.item
.marker_11
{
background-position
:
0
-470px
;}
#placesList
.item
.marker_12
{
background-position
:
0
-516px
;}
#placesList
.item
.marker_13
{
background-position
:
0
-562px
;}
#placesList
.item
.marker_14
{
background-position
:
0
-608px
;}
#placesList
.item
.marker_15
{
background-position
:
0
-654px
;}
#pagination
{
margin
:
10px
auto
;
text-align
:
center
;}
#pagination
a
{
display
:
inline-block
;
margin-right
:
10px
;}
#pagination
.on
{
font-weight
:
bold
;
cursor
:
default
;
color
:
#777
;}
</style>
</head>
<body>
<div
id=
"map"
style=
"width:100%;height:800px;"
></div>
<div
class=
"map_wrap"
>
<div
id=
"map"
style=
"width:100%;height:800px;position:relative;overflow:hidden;"
></div>
<ul
id=
"category"
>
<li
id=
"AT4"
data-order=
"0"
>
<span
class=
"category_bg oil"
></span>
관광지
</li>
<li
id=
"AD5"
data-order=
"1"
>
<span
class=
"category_bg mart"
></span>
숙박
</li>
<li
id=
"CE7"
data-order=
"2"
>
<span
class=
"category_bg cafe"
></span>
카페
</li>
<li
id=
"FD6"
data-order=
"3"
>
<span
class=
"category_bg store"
></span>
음식점
</li>
</ul>
<div
id=
"menu_wrap"
class=
"bg_white"
>
<hr>
<ul
id=
"placesList"
></ul>
<div
id=
"pagination"
></div>
</div>
</div>
<script
type=
"text/javascript"
src=
"//dapi.kakao.com/v2/maps/sdk.js?appkey=비밀&libraries=services"
></script>
<script>
var
Request
=
function
()
{
...
...
@@ -31,47 +114,283 @@ var startx = request.getParameter('startx');
var
starty
=
request
.
getParameter
(
'starty'
);
var
endx
=
request
.
getParameter
(
'endx'
);
var
endy
=
request
.
getParameter
(
'endy'
);
// 마커를 클릭하면 장소명을 표출할 인포윈도우 입니다
var
infowindow
=
new
kakao
.
maps
.
InfoWindow
({
zIndex
:
1
});
var
sw
=
new
kakao
.
maps
.
LatLng
(
startx
,
endy
),
ne
=
new
kakao
.
maps
.
LatLng
(
endx
,
starty
);
var
bs
=
new
kakao
.
maps
.
LatLngBounds
(
sw
,
ne
);
var
placeOverlay
=
new
kakao
.
maps
.
CustomOverlay
({
zIndex
:
1
}),
contentNode
=
document
.
createElement
(
'div'
),
// 커스텀 오버레이의 컨텐츠 엘리먼트 입니다
markers
=
[],
// 마커를 담을 배열입니다
currCategory
=
''
;
// 현재 선택된 카테고리를 가지고 있을 변수입니다
var
mapContainer
=
document
.
getElementById
(
'map'
),
// 지도를 표시할 div
mapOption
=
{
center
:
new
kakao
.
maps
.
LatLng
(
endx
,
endy
),
// 지도의 중심좌표
level
:
5
// 지도의 확대 레벨
level
:
8
// 지도의 확대 레벨
};
// 지도를 생성합니다
var
map
=
new
kakao
.
maps
.
Map
(
mapContainer
,
mapOption
);
// 장소 검색 객체를 생성합니다
var
ps
=
new
kakao
.
maps
.
services
.
Places
(
map
);
var
ps
=
new
kakao
.
maps
.
services
.
Places
(
);
//
카테고리로 유명관광지를 검색
합니다
ps
.
categorySearch
(
'AT4'
,
placesSearchCB
,
{
useMapBounds
:
true
});
//
지도에 idle 이벤트를 등록
합니다
kakao
.
maps
.
event
.
addListener
(
map
,
'idle'
,
searchPlaces
);
// 키워드 검색 완료 시 호출되는 콜백함수 입니다
function
placesSearchCB
(
data
,
status
,
pagination
)
{
if
(
status
===
kakao
.
maps
.
services
.
Status
.
OK
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
displayMarker
(
data
[
i
]);
// 커스텀 오버레이의 컨텐츠 노드에 css class를 추가합니다
contentNode
.
className
=
'placeinfo_wrap'
;
// 커스텀 오버레이의 컨텐츠 노드에 mousedown, touchstart 이벤트가 발생했을때
// 지도 객체에 이벤트가 전달되지 않도록 이벤트 핸들러로 kakao.maps.event.preventMap 메소드를 등록합니다
addEventHandle
(
contentNode
,
'mousedown'
,
kakao
.
maps
.
event
.
preventMap
);
addEventHandle
(
contentNode
,
'touchstart'
,
kakao
.
maps
.
event
.
preventMap
);
// 커스텀 오버레이 컨텐츠를 설정합니다
placeOverlay
.
setContent
(
contentNode
);
// 각 카테고리에 클릭 이벤트를 등록합니다
addCategoryClickEvent
();
// 엘리먼트에 이벤트 핸들러를 등록하는 함수입니다
function
addEventHandle
(
target
,
type
,
callback
)
{
if
(
target
.
addEventListener
)
{
target
.
addEventListener
(
type
,
callback
);
}
else
{
target
.
attachEvent
(
'on'
+
type
,
callback
);
}
}
// 카테고리 검색을 요청하는 함수입니다
function
searchPlaces
()
{
if
(
!
currCategory
)
{
return
;
}
// 커스텀 오버레이를 숨깁니다
placeOverlay
.
setMap
(
null
);
removeMarker
();
// 지도에 표시되고 있는 마커를 제거합니다
ps
.
categorySearch
(
currCategory
,
placesSearchCB
,
{
bounds
:
bs
});
}
// 장소검색이 완료됐을 때 호출되는 콜백함수 입니다
function
placesSearchCB
(
data
,
status
,
pagination
)
{
if
(
status
===
kakao
.
maps
.
services
.
Status
.
OK
)
{
// 정상적으로 검색이 완료됐으면 지도에 마커를 표출합니다
displayPlaces
(
data
);
displayPagination
(
pagination
);
}
else
if
(
status
===
kakao
.
maps
.
services
.
Status
.
ZERO_RESULT
)
{
// 검색결과가 없는경우 해야할 처리가 있다면 이곳에 작성해 주세요
alert
(
'검색 결과가 존재하지 않습니다.'
);
return
;
}
else
if
(
status
===
kakao
.
maps
.
services
.
Status
.
ERROR
)
{
// 에러로 인해 검색결과가 나오지 않은 경우 해야할 처리가 있다면 이곳에 작성해 주세요
alert
(
'검색 결과 중 오류가 발생했습니다.'
);
return
;
}
}
// 지도에 마커를 표시하는 함수입니다
function
displayMarker
(
place
)
{
// 지도에 마커를 표출하는 함수입니다
function
displayPlaces
(
places
)
{
var
listEl
=
document
.
getElementById
(
'placesList'
),
menuEl
=
document
.
getElementById
(
'menu_wrap'
),
fragment
=
document
.
createDocumentFragment
(),
listStr
=
''
;
removeAllChildNods
(
listEl
);
removeMarker
();
// 몇번째 카테고리가 선택되어 있는지 얻어옵니다
// 이 순서는 스프라이트 이미지에서의 위치를 계산하는데 사용됩니다
var
order
=
document
.
getElementById
(
currCategory
).
getAttribute
(
'data-order'
);
for
(
var
i
=
0
;
i
<
places
.
length
;
i
++
)
{
var
placePosition
=
new
kakao
.
maps
.
LatLng
(
places
[
i
].
y
,
places
[
i
].
x
);
// 마커를 생성하고 지도에 표시합니다
var
marker
=
new
kakao
.
maps
.
Marker
({
map
:
map
,
position
:
new
kakao
.
maps
.
LatLng
(
place
.
y
,
place
.
x
)
var
marker
=
addMarker
(
placePosition
,
order
);
var
itemEl
=
getListItem
(
i
,
places
[
i
]);
// 마커와 검색결과 항목을 클릭 했을 때
// 장소정보를 표출하도록 클릭 이벤트를 등록합니다
(
function
(
marker
,
place
)
{
kakao
.
maps
.
event
.
addListener
(
marker
,
'click'
,
function
()
{
displayPlaceInfo
(
place
);
});
})(
marker
,
places
[
i
]);
fragment
.
appendChild
(
itemEl
);
}
listEl
.
appendChild
(
fragment
);
menuEl
.
scrollTop
=
0
;
}
// 마커에 클릭이벤트를 등록합니다
kakao
.
maps
.
event
.
addListener
(
marker
,
'click'
,
function
()
{
// 마커를 클릭하면 장소명이 인포윈도우에 표출됩니다
infowindow
.
setContent
(
'<div style="padding:5px;font-size:12px;">'
+
place
.
place_name
+
'</div>'
);
infowindow
.
open
(
map
,
marker
);
function
getListItem
(
index
,
places
)
{
var
el
=
document
.
createElement
(
'li'
),
itemStr
=
'<span class="markerbg marker_'
+
(
index
+
1
)
+
'"></span>'
+
'<div class="info">'
+
' <h5>'
+
places
.
place_name
+
'</h5>'
;
if
(
places
.
road_address_name
)
{
itemStr
+=
' <span>'
+
places
.
road_address_name
+
'</span>'
+
' <span class="jibun gray">'
+
places
.
address_name
+
'</span>'
;
}
else
{
itemStr
+=
' <span>'
+
places
.
address_name
+
'</span>'
;
}
itemStr
+=
' <span class="tel">'
+
places
.
phone
+
'</span>'
+
'</div>'
;
el
.
innerHTML
=
itemStr
;
el
.
className
=
'item'
;
return
el
;
}
// 마커를 생성하고 지도 위에 마커를 표시하는 함수입니다
function
addMarker
(
position
,
order
)
{
var
imageSrc
=
'https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/places_category.png'
,
// 마커 이미지 url, 스프라이트 이미지를 씁니다
imageSize
=
new
kakao
.
maps
.
Size
(
27
,
28
),
// 마커 이미지의 크기
imgOptions
=
{
spriteSize
:
new
kakao
.
maps
.
Size
(
72
,
208
),
// 스프라이트 이미지의 크기
spriteOrigin
:
new
kakao
.
maps
.
Point
(
46
,
(
order
*
36
)),
// 스프라이트 이미지 중 사용할 영역의 좌상단 좌표
offset
:
new
kakao
.
maps
.
Point
(
11
,
28
)
// 마커 좌표에 일치시킬 이미지 내에서의 좌표
},
markerImage
=
new
kakao
.
maps
.
MarkerImage
(
imageSrc
,
imageSize
,
imgOptions
),
marker
=
new
kakao
.
maps
.
Marker
({
position
:
position
,
// 마커의 위치
image
:
markerImage
});
marker
.
setMap
(
map
);
// 지도 위에 마커를 표출합니다
markers
.
push
(
marker
);
// 배열에 생성된 마커를 추가합니다
return
marker
;
}
// 지도 위에 표시되고 있는 마커를 모두 제거합니다
function
removeMarker
()
{
for
(
var
i
=
0
;
i
<
markers
.
length
;
i
++
)
{
markers
[
i
].
setMap
(
null
);
}
markers
=
[];
}
// 클릭한 마커에 대한 장소 상세정보를 커스텀 오버레이로 표시하는 함수입니다
function
displayPlaceInfo
(
place
)
{
var
content
=
'<div class="placeinfo">'
+
' <a class="title" href="'
+
place
.
place_url
+
'" target="_blank" title="'
+
place
.
place_name
+
'">'
+
place
.
place_name
+
'</a>'
;
if
(
place
.
road_address_name
)
{
content
+=
' <span title="'
+
place
.
road_address_name
+
'">'
+
place
.
road_address_name
+
'</span>'
+
' <span class="jibun" title="'
+
place
.
address_name
+
'">(지번 : '
+
place
.
address_name
+
')</span>'
;
}
else
{
content
+=
' <span title="'
+
place
.
address_name
+
'">'
+
place
.
address_name
+
'</span>'
;
}
content
+=
' <span class="tel">'
+
place
.
phone
+
'</span>'
+
'</div>'
+
'<div class="after"></div>'
;
contentNode
.
innerHTML
=
content
;
placeOverlay
.
setPosition
(
new
kakao
.
maps
.
LatLng
(
place
.
y
,
place
.
x
));
placeOverlay
.
setMap
(
map
);
}
// 검색결과 목록 하단에 페이지번호를 표시는 함수입니다
function
displayPagination
(
pagination
)
{
var
paginationEl
=
document
.
getElementById
(
'pagination'
),
fragment
=
document
.
createDocumentFragment
(),
i
;
// 기존에 추가된 페이지번호를 삭제합니다
while
(
paginationEl
.
hasChildNodes
())
{
paginationEl
.
removeChild
(
paginationEl
.
lastChild
);
}
for
(
i
=
1
;
i
<=
pagination
.
last
;
i
++
)
{
var
el
=
document
.
createElement
(
'a'
);
el
.
href
=
"#"
;
el
.
innerHTML
=
i
;
if
(
i
===
pagination
.
current
)
{
el
.
className
=
'on'
;
}
else
{
el
.
onclick
=
(
function
(
i
)
{
return
function
()
{
pagination
.
gotoPage
(
i
);
}
})(
i
);
}
fragment
.
appendChild
(
el
);
}
paginationEl
.
appendChild
(
fragment
);
}
// 검색결과 목록 또는 마커를 클릭했을 때 호출되는 함수입니다
// 인포윈도우에 장소명을 표시합니다
function
displayInfowindow
(
marker
,
title
)
{
var
content
=
'<div style="padding:5px;z-index:1;">'
+
title
+
'</div>'
;
infowindow
.
setContent
(
content
);
infowindow
.
open
(
map
,
marker
);
}
// 검색결과 목록의 자식 Element를 제거하는 함수입니다
function
removeAllChildNods
(
el
)
{
while
(
el
.
hasChildNodes
())
{
el
.
removeChild
(
el
.
lastChild
);
}
}
// 각 카테고리에 클릭 이벤트를 등록합니다
function
addCategoryClickEvent
()
{
var
category
=
document
.
getElementById
(
'category'
),
children
=
category
.
children
;
for
(
var
i
=
0
;
i
<
children
.
length
;
i
++
)
{
children
[
i
].
onclick
=
onClickCategory
;
}
}
// 카테고리를 클릭했을 때 호출되는 함수입니다
function
onClickCategory
()
{
var
id
=
this
.
id
,
className
=
this
.
className
;
placeOverlay
.
setMap
(
null
);
if
(
className
===
'on'
)
{
currCategory
=
''
;
changeCategoryClass
();
removeMarker
();
}
else
{
currCategory
=
id
;
changeCategoryClass
(
this
);
searchPlaces
();
}
}
// 클릭된 카테고리에만 클릭된 스타일을 적용하는 함수입니다
function
changeCategoryClass
(
el
)
{
var
category
=
document
.
getElementById
(
'category'
),
children
=
category
.
children
,
i
;
for
(
i
=
0
;
i
<
children
.
length
;
i
++
)
{
children
[
i
].
className
=
''
;
}
if
(
el
)
{
el
.
className
=
'on'
;
}
}
</script>
</body>
...
...
Please
register
or
login
to post a comment