-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
23 lines (23 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Vehicle Live Movement on Maps</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?key=AIzaSyCNmh084XWqfoDZucaXvWp6qD6yLK3-JjE&sensor=false"></script>
<script type ="text/javascript" src="http://www.geocodezip.com/scripts/v3_epoly.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body onload="initialize()">
<div id="tools">
<h4>Please enter locations and hit start to get started</h4>
<input id="start" value="gurugram" />
<input id="end" value="vasant kunj" />
<div id="error-msg"></div>
<button id="start-btn" onclick="setRoutes();">Start</button>
</div>
<div id="map_canvas" style="width:100%;height:100%;"></div>
</body>
</html>