최유정

remove unused files

File mode changed
1 -
2 -var locationx;
3 -var locationy;
4 -var location_name;
5 -
6 -
7 -// 이미지 지도에 표시할 마커입니다
8 -// 이미지 지도에 표시할 마커를 아래와 같이 배열로 넣어주면 여러개의 마커를 표시할 수 있습니다
9 -var markers = [
10 - {
11 - position: new kakao.maps.LatLng(locationx, locationy)
12 - },
13 - {
14 - position: new kakao.maps.LatLng(locationx, locationy),
15 - text: '추천할 장소 : ' + location_name // text 옵션을 설정하면 마커 위에 텍스트를 함께 표시할 수 있습니다
16 - }
17 -];
18 -
19 -var staticMapContainer = document.getElementById('staticMap'), // 이미지 지도를 표시할 div
20 - staticMapOption = {
21 - center: new kakao.maps.LatLng(locationx, locationy), // 이미지 지도의 중심좌표
22 - level: 3, // 이미지 지도의 확대 레벨
23 - marker: markers // 이미지 지도에 표시할 마커
24 - };
25 -
26 -// 이미지 지도를 생성합니다
27 -var staticMap = new kakao.maps.StaticMap(staticMapContainer, staticMapOption);
...\ No newline at end of file ...\ No newline at end of file
File mode changed