-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
68 lines (59 loc) · 2.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>OSM Deep History</title>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.0/css/bulma.min.css" />
<link rel='stylesheet' href='css/fixedtable.css' />
<link rel='stylesheet' href='css/site.css' />
</head>
<body>
<div class="hero is-primary is-small">
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<div class="column is-5">
<p class="title">OSM Deep History</p>
<p class="subtitle">View history of objects in OpenStreetMap</p>
</div>
<div class='column'>
<div class="field is-grouped">
<div class="control">
<div class="field has-addons">
<p class="control select is-small">
<select id='type'>
<option value='node'>Node</option>
<option value='way'>Way</option>
<option value='relation'>Relation</option>
</select>
</p>
<p class="control relative">
<span id="error" class="tag is-danger is-hidden"></span>
<input id="id" class="input is-small" type="number" placeholder="Object ID">
</p>
</div>
</div>
<div class="control">
<button id="go" class="button is-primary is-inverted is-small">Get History</button>
</div>
<div class='control'>
<button id='more' class='button is-info is-small' disabled>Show More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="main" class="columns is-variable is-0">
<div id='map' class='column is-parent is-5'>
</div>
<div id='history' class='column fixed-table-container content is-small'>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src='js/bundle.js'></script>
</body>
</html>