-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
executable file
·32 lines (32 loc) · 1.07 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
<!DOCTYPE html>
<html>
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Around me</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places"></script>
</meta>
</head>
<body>
<div id="header">
<div class="styled-select">
<select id="ddlPlaces" ></select>
</div>
<input type="text" id="txtSearch">
</div>
<div id="lhc"> </div>
<div id="rhc"> </div>
<ul id="pager">
<li><button class="btnPager" id="pagePrev">Prev</button></li>
<li><label id="pageInfo">Loading...</label></li>
<li><button class="btnPager" id="pageNext">Next</button></li>
</ul>
<input type="range" oninput="App.changeSearchRadious(event)" id="milesRange" value="1.5" max="50" min="0.5" />
<label id="txtRadious"></label>
<script type="text/javascript" src="build/index.js"></script>
</body>
</html>