-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.25 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
<head>
<title>Ski Maps</title>
<!-- Bootstrap Stuff -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Filepicker -->
<script type="text/javascript" src="//api.filepicker.io/v1/filepicker.js"></script>
<!-- Leaflet Stuff -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<script src="//cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<style>
#map { height: 680px; }
</style>
</head>
<template name="map">
<div class="container">
<div class="span12">
<div id="map"></div><BR>
<div class="span2">
<button type="button" class="btn btn-default" id="uploadBtn">Upload GPX</button>
</div>
</div>
<script>
</script>
</div>
</template>