forked from ktamas77/linxup-streetview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.06 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
<!DOCTYPE html>
<html ng-app="linxup-streetview">
<head>
<title>linxup street view</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="styles/app.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"/>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script type="text/javascript" src="/js/config.js"></script>
<script type="text/javascript" src="/js/app.js"></script>
</head>
<body>
<h1 class="title">linxup street view</h1>
<center>
<div ng-controller="LinxupController as linxup" class="vehicle-frame">
<div ng-repeat="driver in linxup.drivers">
<div driver-info class="driver-info"></div>
<div driver-map class="map-canvas"></div>
<div driver-view class="pano"></div>
</div>
<div style="clear: both;"></div>
</div>
</center>
</body>
</html>