-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (89 loc) · 3.94 KB
/
Copy pathindex.html
File metadata and controls
93 lines (89 loc) · 3.94 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<title>Maison Notman House</title>
<script type="text/javascript" src="js/config.js"></script>
<script src="./TemplateData/js/jquery-2.2.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.min.js"></script>
<script type="text/javascript" src="js/ambiarc.service.js"></script>
<script type="text/javascript" src="js/controller.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link href="css/icons.css" rel="stylesheet">
</head>
<body ng-app="controller" style="pointer-events: none">
<!--Navigation section-->
<div ng-controller="NavCtrl">
<div class="container-fluid" style="z-index:100;" ng-if="mapLoaded">
<div id="status_bar_container">
<div id="status_bar_content">
Naviguer vers une étage ou une destination
</div>
<div class="separate-block buttons_row" ng-if="showBuildingSelector">
<div class="col-sm-6 floor_select_btn map_view">Bâtiment:</div>
<div class="col-sm-6 floor_select_btn select_wrapper"
style="pointer-events: all">
<select id="bldg-floor-select" ng-model="buildingId"
ng-change="selectBuilding(buildingId)">
<option ng-repeat="building in hierarchy track by building.id"
ng-value="building.id">{{building.id}}</option>
</select>
</div>
</div>
<div class="separate-block buttons_row">
<div class="col-sm-6 floor_select_btn map_view">Étage:</div>
<div class="col-sm-6 floor_select_btn select_wrapper"
style="pointer-events: all">
<select id="bldg-floor-select" ng-model="floorId"
ng-change="selectFloor(floorId)">
<option ng-repeat="floor in building.floors
track by floor.id"
ng-value="floor.id">{{floor.floorName}}</option>
</select>
</div>
</div>
<div class="separate-block buttons_row" ng-if="showPOISelector">
<div class="col-sm-6 floor_select_btn map_view">Destination:</div>
<div class="col-sm-6 floor_select_btn select_wrapper"
style="pointer-events: all">
<select id="bldg-floor-select" ng-model="poiId"
ng-change="selectPOI(poiId)">
<option ng-repeat="poi in pois track by poi.id"
ng-value="poi.id">{{poi.label}}</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!--Map section-->
<div>
<iframe src="./map.html" id="ambiarcIframe"
style="width:100%; height:100%; border:none; top:0; z-index:-1;
position:fixed; pointer-events: all;">
Your browser doesn't support iframes
</iframe>
</div>
<!--Controls section-->
<div ng-controller="ControlsCtrl">
<div id="controls-section" style="pointer-events: all">
<ul>
<li class="">
<div class="controls-btn ctrl-zoom-in" aria-hidden="true"
ng-click="zoomIn()"></div>
</li>
<li class="">
<div class="controls-btn ctrl-rotate-left" aria-hidden="true"
ng-click="rotateLeft()"></div>
<div class="controls-btn ctrl-rotate-right" aria-hidden="true"
ng-click="rotateRight()"></div>
</li>
<li class="">
<div class="controls-btn ctrl-zoom-out" aria-hidden="true"
ng-click="zoomOut()"></div>
</li>
</ul>
</div>
</div>
</body>
</html>