-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.08 KB
/
index.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
<html>
<head>
<meta name="viewport" content="initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.16/dist/vue.min.js"></script>
<script type="text/javascript" src="https://s2.unlessquit.com/app/js/s2.js"></script>
<title>Location Example</title>
<style type="text/css" media="screen">
#map {
height: 100%;
}
#app {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
}
.ts {
position: absolute;
bottom: 20;
background: rgba(66,66,66,0.54);
border-radius: 10px;
color: white;
padding: 10px;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="app"></div>
<script type="text/javascript" src="./app.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCAvm_UJ9rnkOEztQC0iNwz7QEA7VmGEhQ&callback=initMap" async defer></script>
</body>
</html>