forked from willbreitkreutz/web_mapping_workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>A simple map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.css' rel='stylesheet' />
<link href='css/app.css' rel='stylesheet' />
<link href='css/save_shape_to_gist.css' rel='stylesheet' />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.4/mapbox.js'></script>
</head>
<body>
<!-- These are the only DOM elements we need for an awesome app -->
<div id='map'></div>
<div id='info' style='display:none'></div>
<!-- Change the reference here to change which javascript file we are using in the app -->
<script src='js/exercise_4.js'></script>
<!--
<script src='js/exercise_5.js'></script>
<script src='js/exercise_6.js'></script>
<script src='js/exercise_7.js'></script>
<script src='js/exercise_8.js'></script>
-->
<!-- Special bonus stuff we'll cover if there is time, -->
<script src='lib/spin.js'></script>
<script src='lib/shp.js'></script>
<div id='drag-overlay' style='display:none'>
<p class="drop-label">Drop a shapezip here</p>
</div>
<script src='js/save_shape_to_gist.js'></script>
</body>
</html>