-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap.html
49 lines (47 loc) · 1.2 KB
/
map.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<title>emotion-Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- css -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
</head>
<style>
div#map,
#map div {
overflow: visible;
}
#map,
#map {
width: 100%;
height: 100%;
}
@media print {
#map,
#map {
height: 500px;
}
}
</style>
<body>
<div id="container">
<div id="map"></div>
</div>
</body>
<footer>
<!-- js -->
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/map.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBDnA_qBmn9I8CGJmQ9m2ZWqP-wy3PI9KY&callback=myMap"></script>
<script type="text/javascript" src="js/login.js"></script>
<!-- <script type="text/javascript">
$(function() {
var w_height = screen.height;
var height = w_height;
$("#map").height(height+"px");
});
</script> -->
</footer>
</html>