일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 하루 한마디 영어
- SKY 시리우스
- objective-c
- Form Stuff
- 구글안드로이드
- 스카이 안드로이드폰 시리우스
- 안드로이드 개발 강좌
- 안드로이드폰
- android
- 안드로이드 개발
- 아이폰 바탕화면
- 안드로이드 배경화면
- 구글 안드로이드
- 구글 안드로이드 개발
- 아이폰 배경화면
- 영어
- 안드로이드 2.0 개발
- 안드로이드2.0
- MapView
- 안드로이드 바탕화면
- sky 시리우스폰
- 안드로이드 개발 2.0
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드2.0개발
- 스마트폰 배경화면
- 안드로이드개발
- 안드로이드
- 인기있는 블로그 만들기
- 안드로이드 개발 2.0 강좌
- 하루한마디영어
- Today
- Total
moozi
map.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>영화소개 - 밀정</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<style>
#googleMap{
width:100%;
height: 500px;
}
</style>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header">
<a href="index.html" data-icon="home" data-iconpos="notext">home</a>
<h1>상영관위치</h1>
<a href="index.html" data-icon="back" data-iconpos="notext">prev</a>
</div>
<div data-role="content">
<div id="googleMap"></div>
<!-- Add Google Maps -->
<script src="http://maps.googleapis.com/maps/api/js"></script>
<script>
/* cgv 강남*/
var myCenter = new google.maps.LatLng(37.501679, 127.026372);
/* cgv 압구정*/
var myCenter2 = new google.maps.LatLng(37.524316, 127.029382);
function initialize() {
var mapProp = {
center:myCenter,
zoom:12,
scrollwheel:true,
draggable:true,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
/* cgv강남 마커 */
var marker = new google.maps.Marker({
position:myCenter,
});
/* cgv압구정 마커 */
var marker2 = new google.maps.Marker({
position:myCenter2,
});
/* cgv강남 마커 맵에 세팅 */
marker.setMap(map);
/* cgv압구정 마커 맵에 세팅 */
marker2.setMap(map);
var content="CGV강남<br><a href='tel:1544-1122'>1544-1122</a>";
var infowindow = new google.maps.InfoWindow({
content: content
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</div>
<div data-role="footer">
<h3>©Copyright all right reserved by CGV.</h3>
</div>
</div>
</body>
</html>
'TIS_2016 > 주말반_4기' 카테고리의 다른 글
워드프레스 이클립스 테마 style.css 수정 코드 (0) | 2016.10.08 |
---|---|
10/1 company 백업 (0) | 2016.10.01 |
movie (0) | 2016.10.01 |
introduce2.html (0) | 2016.09.24 |
jquery mobile 기본구문 (0) | 2016.09.24 |