-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 2.19 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 2.19 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Open Canvas - Map demo</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css"/>
<link rel="stylesheet" href="css/carousel.css"/>
<link rel="stylesheet" href="css/jquery.jscrollpane.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places,geometry"></script>
</head>
<body>
<div id="map_canvas">map div</div>
<div id="hub" class="">
<section id="route_selection" style="position:absolute;left:0px;top:0px;z-index:999;">
</section>
<div id="places_holder">
<div class="controls">
<select id="route_list" name="selectbasic" class="input-medium">
</select>
</div>
<div id="places_list_holder"><ul></ul></div>
</div>
<section id="main">
<button id="close-main" class="close" style="z-index:99999;padding:4px;">×</button>
<div id="stories_holder" style="float:left;">
<ul id="stories_list_holder">
</ul>
</div>
<div id="media_holder" style="margin-left:60px;">
</div>
</section>
</div>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="vendor/underscore.js"></script>
<script src="vendor/backbone-min.js"></script>
<script src="vendor/jquery.easing.1.3.js"></script>
<script src="vendor/jquery.mousewheel.js"></script>
<script src="vendor/jquery.contentcarousel.js"></script>
<script src="models/routes.js"></script>
<script src="models/places.js"></script>
<script src="models/stories.js"></script>
<script src="collections/routes.js"></script>
<script src="collections/places.js"></script>
<script src="collections/stories.js"></script>
<script src="views/route_list_view.js"></script>
<script src="views/route_list_item_view.js"></script>
<script src="views/place_list_view.js"></script>
<script src="views/place_marker_view.js"></script>
<script src="views/place_list_item_view.js"></script>
<script src="views/story_list_view.js"></script>
<script src="views/story_list_item_view.js"></script>
<script src="app.js"></script>
</body>
</html>