-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (36 loc) · 1.38 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="dist/styles/main.min.css">
<title>Polyline on Gmap</title>
</head>
<body>
<main>
<h1>Create your track!</h1>
<div class="wrapper">
<div class="map">
<div class="event__actions">
<ul>
<li><button id="close">Close track</button></li>
<li><button id="reset">Clear all</button></li>
<li><button id="back">Undo</button></li>
<li><button id="tiny">Remove last point</button></li>
</ul>
</div>
<div id="map_canvas"></div>
</div>
<div class="right">
<h3 role="heading" aria-level="3">Informations</h3>
<div class="info">
<span class="info__dist">Distance : <span id="dist">dist</span></span>
<div id="elevation_chart"></div>
</div>
</div>
</div>
</main>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyA9m3Ix3AmZHlnvQCQAIUo4yyFjD7c9eLw&libraries=geometry&sensor=false" type="text/javascript"></script>
<script src="dist/scripts/main.min.js"></script>
</body>
</html>