-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
58 lines (58 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- OpenLayers CSS -->
<link rel="stylesheet" href="http://openlayers.org/en/v3.12.1/css/ol.css" type="text/css">
<!-- OpenLayers JS -->
<script src="http://openlayers.org/en/v3.12.1/build/ol.js" type="text/javascript"></script>
<title>GCI | Loklak Heatmap</title>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Loklak Heatmap</h1>
<h2><small>Google Code-in - FOSSASIA</small></h2>
</div>
<div class="row">
<div class="col-md-4">
<input id="searchField" class="form-control" type="text" placeholder="Search term">
</div>
<div class="col-md-2">
<div class="input-group">
<input id="countField" class="form-control" type="text" placeholder="100">
<span class="input-group-addon">tweets</span>
</div>
</div>
<div class="col-md-4">
<div class="btn-group">
<button id="searchButton" class="btn btn-default" type="button">Search!</button>
</div>
</div>
</div>
<br>
<div class="panel panel-default">
<div class="panel-body">
<div id="map"></div>
</div>
</div>
<footer>
<hr>
<div class="well">
<b>Google Code-in 2015</b> | Made by Yago González with <3, for the Open Source community<br>
Powered by <a href="http://getbootstrap.com"><b>Bootstrap</b></a>, <a href="http://openlayers.org/"><b>OpenLayers</b></a> and the <a href="http://loklak.org"><b>loklak public API</b></a>
</div>
</footer>
</div>
<!-- jQuery JS -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- Loklak Fetcher Client lib -->
<script src="./loklak-fetcher-client.js"></script>
<!-- Main script -->
<script src="./script.js"></script>
</body>
</html>