-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (29 loc) · 1.22 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
<!DOCTYPE html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
<title>road-radius</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--<link href='http://fonts.googleapis.com/css?family=Actor' rel='stylesheet' type='text/css'>-->
<link rel="stylesheet" type="text/css" media="screen" title="User Defined Style" href="./roadradius.css" />
<!-- note that the /1/ in the url links to the latest version -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="./js/roadradius.js"></script>
</head>
<body>
<div id="wrapper">
<div id="blank"></div>
<div id="content">
<div id="input">
<div id="question">
I want to travel
<input id='distance-input' type="text" value="50" />km
</div>
</div>
<div id="gmaps-canvas"></div>
</div>
</div>
</body>
</html>