forked from Rostlab/JS16_ProjectC_Group10
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
31 lines (29 loc) · 908 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Leaflet GOT Map - Group 10</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="./mockup/js/config.js"></script>
<script type="text/javascript" src="./builds/test.bundle.js"></script>
<link rel="stylesheet" href="./mockup/css/demo.css" />
<script type="text/javascript" src="./mockup/js/demo.js"></script>
</head>
<body>
<div id="map">
<!-- Filled in map.js -->
</div>
<div id="sidebar">
<form id="filter">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for...">
<i class="glyphicon glyphicon-search form-control-feedback"></i>
</div>
</form>
<!-- /input-group -->
<hr />
<div id="characters"><!-- Filled by gotmap.js --></div>
</div>
<div id="timeline"><!-- Filled by gotmap.js --></div>
</body>
</html>