-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.29 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <!--viewport 적용-->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.16.9/xlsx.full.min.js"></script>
<script src="./javascript/area.js"></script>
<title>꽃가루농도위험지수</title>
<link rel="stylesheet" href="./css/design.css" type="text/css">
<script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=f1b6ed2e1d208736a93f48c704aa9498&libraries=services"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#info").load("./info.html");
});
</script>
</head>
<body>
<div id="map" style="width:100%;height:100%;">
<div class="search">
<input id="address" type="text" placeholder="꽃가루 농도 위험지수가 궁금한 주소를 검색해주세요" value=""/>
<button id="submit"><img id="searchImg" src="./images/search.png" alt="검색" height="25"></button>
</div>
<div id="info"></div>
</div>
<script src="./javascript/kakaomap.js"></script>
</body>
</html>