-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
73 lines (57 loc) · 1.66 KB
/
map.html
File metadata and controls
73 lines (57 loc) · 1.66 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
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
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<title>Map</title>
<link href="css/map.css" rel="stylesheet">
</head>
<body onload="init()">
<div id="map" style="width:80%;height:500px;"></div>
<br>
<button class="location"><img src="pic/location.png"></button>
<div class="place-list"></div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLCGucvzQcFYLVzCx6iNW_WWr-Gw5j7cs">
</script>
<table>
<tr>
<th>Name:</th>
<td>Home</td>
<td></td>
<td>Office</td>
<td></td>
<td>Best coffee</td>
</tr>
<tr>
<th>Lan:</th>
<td>Lan</td>
<td></td>
<td>Lan</td>
<td></td>
<td>Lan</td>
<td></td>
</tr>
<tr>
<th>Lat:</th>
<td>Lat</td>
<td></td>
<td>Lat</td>
<td></td>
<td>Lat</td>
<td></td>
</tr>
</table>
<nav>
<a href="index.html" class="link-small" target="_blank">Main</a><br>
<br>
<a href="user-prefs.html" class="link-small" target="_blank">User-Prefs</a>
</nav>
<script src="js/utilService.js"></script>
<script src="js/userPrefService.js"></script>
<script src="js/placeService.js"></script>
<script src="js/mapController.js"></script>
</body>
</html>