"청주시 문화유산"의 두 판 사이의 차이
DH 교육용 위키
(→청주시 문화유산 지도) |
(→청주시 문화유산 지도) |
||
82번째 줄: | 82번째 줄: | ||
</googlemap> | </googlemap> | ||
</center> | </center> | ||
+ | |||
+ | <html> | ||
+ | <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> | ||
+ | <script type="text/javascript"> | ||
+ | var markers = [ | ||
+ | { | ||
+ | "title": 'Bombay Hospital', | ||
+ | "lat": '18.9409388', | ||
+ | "lng": '72.82819189999998', | ||
+ | "description": 'Bombay Hospital', | ||
+ | "type": 'Hospital' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Jaslok Hospital', | ||
+ | "lat": '18.9716956', | ||
+ | "lng": '72.80991180000001', | ||
+ | "description": 'Jaslok Hospital', | ||
+ | "type": 'Hospital' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Lilavati Hospital', | ||
+ | "lat": '19.0509488', | ||
+ | "lng": '72.8285644', | ||
+ | "description": 'Lilavati Hospital', | ||
+ | "type": 'Hospital' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Aksa Beach', | ||
+ | "lat": '19.1759668', | ||
+ | "lng": '72.79504659999998', | ||
+ | "description": 'Aksa Beach', | ||
+ | "type": 'Beach' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Juhu Beach', | ||
+ | "lat": '19.0883595', | ||
+ | "lng": '72.82652380000002', | ||
+ | "description": 'Juhu Beach', | ||
+ | "type": 'Beach' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Girgaum Beach', | ||
+ | "lat": '18.9542149', | ||
+ | "lng": '72.81203529999993', | ||
+ | "description": 'Girgaum Beach', | ||
+ | "type": 'Beach' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Oberoi Mall', | ||
+ | "lat": '19.1737704', | ||
+ | "lng": '72.86062400000003', | ||
+ | "description": 'Oberoi Mall', | ||
+ | "type": 'Mall' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Infinity Mall', | ||
+ | "lat": '19.1846511', | ||
+ | "lng": '72.83454899999992', | ||
+ | "description": 'Infinity Mall', | ||
+ | "type": 'Mall' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Phoenix Mall', | ||
+ | "lat": '19.0759837', | ||
+ | "lng": '72.87765590000003', | ||
+ | "description": 'Phoenix Mall', | ||
+ | "type": 'Mall' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Phoenix Mall', | ||
+ | "lat": '19.0759837', | ||
+ | "lng": '72.87765590000003', | ||
+ | "description": 'Phoenix Mall', | ||
+ | "type": 'Mall' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Hanging Garden', | ||
+ | "lat": '18.9560279', | ||
+ | "lng": '72.80538039999999', | ||
+ | "description": 'Hanging Garden', | ||
+ | "type": 'Park' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Jijamata Udyan', | ||
+ | "lat": '18.979006', | ||
+ | "lng": '72.83388300000001', | ||
+ | "description": 'Jijamata Udyan', | ||
+ | "type": 'Park' | ||
+ | } | ||
+ | , | ||
+ | { | ||
+ | "title": 'Juhu Garden', | ||
+ | "lat": '19.0839704', | ||
+ | "lng": '72.83388300000001', | ||
+ | "description": 'Juhu Garden', | ||
+ | "type": 'Park' | ||
+ | }, | ||
+ | { | ||
+ | "title": 'Sanjay Gandhi National Park', | ||
+ | "lat": '19.2147067', | ||
+ | "lng": '72.91062020000004', | ||
+ | "description": 'Sanjay Gandhi National Park', | ||
+ | "type": 'Park' | ||
+ | } | ||
+ | ]; | ||
+ | window.onload = function () { | ||
+ | |||
+ | var mapOptions = { | ||
+ | center: new google.maps.LatLng(markers[0].lat, markers[0].lng), | ||
+ | zoom: 8, | ||
+ | mapTypeId: google.maps.MapTypeId.ROADMAP | ||
+ | }; | ||
+ | var infoWindow = new google.maps.InfoWindow(); | ||
+ | var latlngbounds = new google.maps.LatLngBounds(); | ||
+ | var map = new google.maps.Map(document.getElementById("dvMap"), mapOptions); | ||
+ | var i = 0; | ||
+ | var interval = setInterval(function () { | ||
+ | var data = markers[i] | ||
+ | var myLatlng = new google.maps.LatLng(data.lat, data.lng); | ||
+ | var icon = ""; | ||
+ | switch (data.type) { | ||
+ | case "Hospital": | ||
+ | icon = "red"; | ||
+ | break; | ||
+ | case "Beach": | ||
+ | icon = "blue"; | ||
+ | break; | ||
+ | case "Mall": | ||
+ | icon = "yellow"; | ||
+ | break; | ||
+ | case "Park": | ||
+ | icon = "green"; | ||
+ | break; | ||
+ | } | ||
+ | icon = "http://maps.google.com/mapfiles/ms/icons/" + icon + ".png"; | ||
+ | var marker = new google.maps.Marker({ | ||
+ | position: myLatlng, | ||
+ | map: map, | ||
+ | title: data.title, | ||
+ | animation: google.maps.Animation.DROP, | ||
+ | icon: new google.maps.MarkerImage(icon) | ||
+ | }); | ||
+ | (function (marker, data) { | ||
+ | google.maps.event.addListener(marker, "click", function (e) { | ||
+ | infoWindow.setContent(data.description); | ||
+ | infoWindow.open(map, marker); | ||
+ | }); | ||
+ | })(marker, data); | ||
+ | latlngbounds.extend(marker.position); | ||
+ | i++; | ||
+ | if (i == markers.length) { | ||
+ | clearInterval(interval); | ||
+ | var bounds = new google.maps.LatLngBounds(); | ||
+ | map.setCenter(latlngbounds.getCenter()); | ||
+ | map.fitBounds(latlngbounds); | ||
+ | } | ||
+ | }, 80); | ||
+ | } | ||
+ | </script> | ||
+ | <table> | ||
+ | <tr> | ||
+ | <td> | ||
+ | <div id="dvMap" style="width: 500px; height: 500px"> | ||
+ | </div> | ||
+ | </td> | ||
+ | <td valign="top"> | ||
+ | <u>Legend:</u><br /> | ||
+ | <img alt="" src="http://maps.google.com/mapfiles/ms/icons/red.png" /> | ||
+ | Hospitals<br /> | ||
+ | <img alt="" src="http://maps.google.com/mapfiles/ms/icons/blue.png" /> | ||
+ | Beaches<br /> | ||
+ | <img alt="" src="http://maps.google.com/mapfiles/ms/icons/yellow.png" /> | ||
+ | Malls<br /> | ||
+ | <img alt="" src="http://maps.google.com/mapfiles/ms/icons/green.png" /> | ||
+ | Parks<br /> | ||
+ | </td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | </html> | ||
=='''국가지정문화재'''== | =='''국가지정문화재'''== |
2016년 6월 12일 (일) 16:48 판
목차
청주시 문화유산 지도
|
Legend: Hospitals Beaches Malls Parks |
국가지정문화재
국보
지정번호 | 명칭 | English Name |
---|---|---|
제41호 | 청주 용두사지 철당간 | Iron Flagpole at Yongdusa Temple Site, Cheongju |
제297호 | 안심사 영산회 괘불탱 | Hanging Painting of Ansimsa Temple (The Vulture Peak Assembly) |
보물
사적
지정번호 | 명칭 | English Name |
---|---|---|
제315호 | 청주 흥덕사지 | Heungdeoksa Temple Site, Cheongju |
천연기념물
지정번호 | 명칭 | English Name |
---|---|---|
제305호 | 청주 공북리 음나무 | Castor Aralia of Gongbuk-ri, Cheongju |
제522호 | 청주 연제리 모과나무 | Quince of Yeonje-ri, Cheongju |
중요민속문화재
지정번호 | 명칭 | English Name |
---|---|---|
제133호 | 청주 이항희 가옥 | Yi Hang-hui's House, Cheongju |
등록문화재
시도지정문화재
충청북도 유형문화재
충청북도 기념물
충청북도 민속문화재
지정번호 | 명칭 | English Name |
---|---|---|
제8호 | 청주 과필헌 | Gwapilheon House, Cheongju |