-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.php
33 lines (29 loc) · 887 Bytes
/
template.php
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>
<title>MapMap! - Compare two locations at the same zoom level</title>
<link rel="stylesheet" href="/main.css">
</head>
<body>
<div class="container__left">
<form id="locationLeft" class="location__container">
<input name="location" type="text" />
</form>
<div class="map__container">
<div id="mapLeft" class="map"></div>
</div>
</div>
<div class="container__right">
<form id="locationRight" class="location__container">
<input name="location" type="text" />
</form>
<div class="map__container">
<div id="mapRight" class="map"></div>
</div>
</div>
<script src="/utils.js"></script>
<script src="/app.js"></script>
<script src="/startup.js"></script>
<script src="<?= $google_maps_uri ?>" async defer></script>
</body>
</html>