-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
61 lines (55 loc) · 3.07 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
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="map/css/index.css" />
<title>Working Google Maps</title>
<style>
<!-- Always set the map height explicitly to define the size of the div
* element that contains the map. -->
#map {
height: 100%;
}
<!-- Optional: Makes the sample page fill the window. -->
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.fa{
font-size: 30px;
}
</style>
<link rel="icon" type="image/png" href="img/icon.png">
<link href='http://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link href="map/assets/fonts/font-awesome.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="map/assets/bootstrap/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="map/assets/css/bootstrap-select.min.css" type="text/css">
<link rel="stylesheet" href="map/assets/css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="map/assets/css/jquery.slider.min.css" type="text/css">
<link rel="stylesheet" href="map/assets/css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="map/assets/css/style.css" type="text/css">
<link rel="stylesheet" href="map/style.css" type="text/css">
</head>
<body>
<div class="header"></div>
<div id="map"></div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="map/js/index.js"></script>
<script type="text/javascript" src="map/js/jquery.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAjpcjAr8YEfN-X8kS5s-iKnV2kc_P6p8A"> </script>
<script type="text/javascript" src="map/assets/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="map/assets/js/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="map/assets/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="map/assets/js/smoothscroll.js"></script>
<script type="text/javascript" src="map/assets/js/bootstrap-select.min.js"></script>
<script type="text/javascript" src="map/assets/js/retina-1.1.0.min.js"></script>
<script type="text/javascript" src="map/assets/js/custom.js"></script>
<div class="footer" style="background-color:white; width: 100%; position:fixed; line-height:30px; bottom:0;">
<a href="login.html"><div style="width:100%; border:1px solid black; float:left; background: linear-gradient(#687587, #404853); display:inline;"><center><b>Login</b></div></a>
</div>
</body>
</html>