-
Notifications
You must be signed in to change notification settings - Fork 315
/
index.html
1602 lines (1417 loc) · 96.8 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html ng-app="anyArchitect">
<head>
<!--<script>-->
<!-- if (window.location.protocol != "https:")-->
<!-- window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);-->
<!--</script>-->
<link rel="icon" type="image/png" href="build/images/favicon.png">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<meta name="google-signin-scope" content="profile email">
<meta name="google-signin-client_id"
content="587500723971-si8s4qqat9v5efgemnebihpi3qe9onlp.apps.googleusercontent.com">
<script src="https://apis.google.com/js/platform.js" async defer></script>
<link href="bower_components/jquery-ui/themes/base/all.css" rel="stylesheet" type="text/css"/>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="libs/jquery.ui.rotatable.js"></script>
<!--<script src="libs/jquery.ui.rotatable.min.js"></script>-->
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLSYNnIC93KfPnMYRL-7xI7yXjOhgulk8&libraries=places,visualization,drawing,geometry">
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xls/0.7.4-a/xls.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
<script type="text/javascript" type="text/javascript"
src="bower_components/angular-route/angular-route.min.js"></script>
<link rel="stylesheet" type="text/css" href="build/css/anyplace.css"/>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css"/>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900,400italic,700italic,900italic" rel="stylesheet"
type="text/css">
<!-- Must come after jquery/ui imports -->
<script type="text/javascript" src="bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js"></script>
<script src="bower_components/angular-ui-select/dist/select.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<link rel="stylesheet" type="text/css" href="bower_components/angular-ui-select/dist/select.css"/>
<link rel="stylesheet" href="bower_components/select2/select2.css">
<!-- TODO Deprecate/Remove angularjs-dropdown-multiselect -->
<script type="text/javascript"
src="bower_components/angularjs-dropdown-multiselect/dist/angularjs-dropdown-multiselect.min.js"></script>
<link rel="stylesheet" type="text/css"
href="bower_components/angularjs-dropdown-multiselect/pages/stylesheets/stylesheet.css"/>
<link rel="stylesheet" href="style/rrssb.css"/>
<title>Anyplace Architect</title>
<script type="text/javascript" src="bower_components/angular-bootstrap/ui-bootstrap.min.js"></script>
<script type="text/javascript" src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script type="text/javascript" src="bower_components/angular-loading-bar/src/loading-bar.js"></script>
<link rel="stylesheet" href="bower_components/angular-loading-bar/src/loading-bar.css">
<script type="text/javascript" src="build/js/anyplace.js"></script>
<link rel="stylesheet" type="text/css" href="build/css/anyplace.min.css"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--<script src="/bower_components/angular-cookies/angular-cookies.js"></script>-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular-cookies.js"></script>
</head>
<body>
<div id="top-container">
<div id="control-bar" class="ng-cloak box-shadow-1" ng-controller="ControlBarController as ctrlBarCtrl" ng-cloak>
<button type="button" id="maximize-btn" class="btn btn-maximize" ng-click="showFullControls=true"
ng-show="!showFullControls">
<i class="fa fa-window-maximize"></i>
</button>
<div id="logistics" ng-show="showFullControls">
<span class="logistics-header text-center">
<span><img class="logistics-header-img" src='build/images/logo-blue.png'/></span>
<span class="logistics-header-title">rchitect </span>
<span id="anyplace-version" class="logistics-header-version"></span>
</span>
<!--<button id="minimize-btn" class="btn btn" ng-click="toggleFullControls()"></button>-->
<button type="button" id="minimize-btn" class="btn btn-minimize" ng-click="toggleFullControls()">
<i class="fa fa-window-minimize"></i>
</button>
<span id="login-details" ng-show="isAuthenticated">
<a class="btn-user" ng-click="setTab(5)">
<span class="subnote" ng-class="{userModerator:isAdminOrModerator()}">
{{ user.name }}
</span>
<button class="btn profile-photo-wrapper">
<span class="profile-photo" ng-style="{'background-image': 'url('+user.image+')'}"></span>
</button>
</a>
</span>
</div>
<!-- BUGFIX: architect used to initialize 3 times -->
<span ng-controller="BuildingController as buildingCtrl">
<div id="sign-in-box" ng-hide="isAuthenticated || !showFullControls">
<div id="google-border" class="rborder">
<span class="button-style">
<button onclick="showHideFun('singInOptions');" class="menu-btn">
Google
</button>
</span>
<div id="singInOptions" class="mdl">
<span id="signinButton" style="display: block; text-align: center"; class="sub-btn button-style">
<div
class="g-signin2"
data-onsuccess="onSignIn"
data-onfailure="onSignInFailure"
data-width="wide"
data-height="tall"
data-accesstype="offline">
</div>
</span>
</div>
</div>
<div id="anyplace-border" class="rborder">
<span class="button-style">
<button onclick="showHideFun('registerOptions')"; class="menu-btn">
Anyplace
</button>
</span>
<div id="registerOptions" class="mdl">
<span class="button-style" ;>
<button onclick="document.getElementById('id01').style.display='block'" ; class="sub-btn">
<img src="./images/logo.png" class="login-img">
Anyplace login
</button>
</span>
<span class="button-style" ;>
<button onclick="document.getElementById('id02').style.display='block'" ; class="sub-btn">
<img src="./images/logo.png" class="login-img">
Anyplace register
</button>
</span>
</div>
<div id="id01" class="modal">
<form class="mdl-content anmt">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="cls" title="Close Modal">×</span>
</div>
<div class="cntnr">
<label for="uname"><b>Username</b></label>
<input ng-model="user.username" type="text" placeholder="Enter Username" name="uname" maxlength="32" required>
<label for="sPsw"><b>Password</b></label>
<input ng-model="user.password" type="password" placeholder="Enter Password" id="sPsw" maxlength="32" required>
<label>
<input type="checkbox" onclick="showPassword('sPsw')"> Show password
</label>
<button type="submit"; class="lgn-btn" ng-click="loginWithLocalAccount()">Login</button>
<!-- <label>-->
<!-- <input type="checkbox" checked="checked" name="remember"> Remember me-->
<!-- </label>-->
</div>
<div class="cntnr" style="background-color:#f1f1f1">
<button type="btn" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn lgn-btn">Cancel</button>
<!-- <!– <span class="psw">Forgot <a href="#">password?</a></span>-->
</div>
</form>
</div>
<div id="id02" class="modal">
<form class="mdl-content anmt">
<div class="imgcontainer">
<span onclick="document.getElementById('id02').style.display='none'" class="cls" title="Close Modal">×</span>
</div>
<div class="cntnr">
<label for="name"><b>Full Name</b></label>
<input ng-model="user.name" type="text" placeholder="Enter Name and Surname" name="name" maxlength="32" required>
<label for="mail"><b>Email</b></label>
<input ng-model="user.email" type="email" placeholder="Enter Email" name="mail" maxlength="128" required>
<label for="uname"><b>Username</b></label>
<input ng-model="user.username" type="text" placeholder="Enter Username" name="uname" maxlength="32" required>
<label for="psw"><b>Password</b></label>
<input ng-model="user.password" type="password" placeholder="Enter Password" id="rPsw" maxlength="32" required>
<label>
<input type="checkbox" onclick="showPassword('rPsw')"> Show password
</label>
<button type="submit"; class="lgn-btn" ng-click="registerLocalAccount()">Register</button>
</div>
<div class="cntnr" style="background-color:#f1f1f1">
<button type="btn" onclick="document.getElementById('id02').style.display='none'" class="cancelbtn lgn-btn">Cancel</button>
</div>
</form>
</div>
</div>
</div>
<div ng-show="isAuthenticated">
<ul id="ctrl-bar-tablist" class="nav nav-tabs" role="tablist" ng-show="showFullControls">
<li role="presentation" ng-class="{ active:isTabSet(1) }">
<a href="#tab-spaces" ng-click="setTab(1)">Spaces</a>
</li>
<li role="presentation" ng-class="{ active:isTabSet(2) }">
<a href="#tab-floors" ng-click="setTab(2)">Floors</a>
</li>
<li role="presentation" ng-class="{ active:isTabSet(3) }">
<a href="#tab-pois" ng-click="setTab(3)">POIs</a>
</li>
<li role="presentation" ng-class="{ active:isTabSet(4) }">
<a href="#tab-campuses" ng-click="setTab(4)">Campuses</a>
</li>
<li role="presentation" ng-class="{ active:isTabSet(6) }">
<a href="#tab-heatmaps" ng-click="setTab(6)" id="heatmapTab">Heatmaps</a>
</li>
<li role="presentation" ng-class="{ active:isTabSet(5) }">
<a href="#tab-user" ng-click="setTab(5)">User</a>
</li>
</ul>
<div id="ctrl-bar-buildings" ng-show="showFullControls">
<div ng-show="isTabSet(1)">
<ui-select ng-model="anyService.selectedBuilding" theme="bootstrap" ng-disabled="disabled">
<ui-select-match placeholder="Select a Space...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices
repeat="b in myBuildings | orderBy : 'name' | propsFilter: { name: $select.search, description: $select.search }">
<div ng-bind-html="b.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
<div class="divider-top-15-line">
<div class="subnote font-weight-bold">Space Toolbox:</div>
<div class="divider-top-10">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" ng-class="{ active:isCrudTabSelected(1) }">
<a href="" ng-click="setCrudTabSelected(1)">Add</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(2) }">
<a href="" ng-click="setCrudTabSelected(2)">Edit</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(3) }">
<a href="" ng-click="setCrudTabSelected(3)">Delete</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(4) }">
<a href="" ng-click="setCrudTabSelected(4)">Backup</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(5) }">
<a href="" ng-click="setCrudTabSelected(5)">Share</a>
</li>
</ul>
<!-- Tab 1-->
<div class="divider-top-10" ng-show="isCrudTabSelected(1)">
<div class="draggable-border">
<img id="draggable-building" src='build/images/building-icon.png'/>
</div>
<span class="subnote">drag to add new space</span>
</div>
<!-- Tab 2 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(2) && anyService.selectedBuilding">
<div class="form-group">Drag the space's marker to change its position.</div>
<form name="buildingEditForm">
<fieldset class="form-group">
<input ng-model="anyService.selectedBuilding.bucode"
class="form-control" type="text"
placeholder="Indoor Space Code">
</fieldset>
<fieldset class="form-group">
<input ng-model="anyService.selectedBuilding.name"
class="form-control" type="text"
placeholder="Space Name">
</fieldset>
<fieldset class="form-group">
<textarea ng-model="anyService.selectedBuilding.description"
class="form-control" type="text"
placeholder="Space Description"></textarea>
</fieldset>
<fieldset class="form-group">
<textarea ng-model="anyService.selectedBuilding.type"
class="form-control" type="text"
placeholder="Type"></textarea>
</fieldset>
<fieldset class="form-group">
<input ng-model="anyService.selectedBuilding.is_published"
type="checkbox"><span> Make the indoor space public.</span>
</fieldset>
<fieldset>
<button type="submit" class="btn btn-success pull-right add-any-button"
ng-click="updateBuilding()"><span
class="glyphicon glyphicon-pencil"></span>
click to update
</button>
</fieldset>
</form>
</div>
<!-- Tab 3-->
<div class="divider-top-10 center-delete-div"
ng-show="isCrudTabSelected(3) && anyService.selectedBuilding">
<div><b class="text-danger">WARNING:</b> Once you confirm, all floors, POIs and connections</div>
<div>that relate to <i class="font-weight-bold">{{anyService.getBuildingName()}}</i> will be
lost <b class="text-danger">PERMANENTLY.</b>
</div>
<button class="btn btn-danger divider-top-10" ng-click="deleteBuilding()">Confirm
Deletion
</button>
</div>
<!-- Tab 4 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(4) && anyService.selectedBuilding">
<div>
<div class="divider-top-10">
<div class="midnote">Backup</div>
<div class="subnote">You can backup all elements related to a space</div>
<div class="subnote">(floormaps, radiomaps, pois and connectors)</div>
<div>
<button class="btn btn-success" ng-click="DownloadBackup()">Download
</button>
</div>
<div ng-hide="!anyService.progress" ng-show="anyService.progress"
class="progress" style="margin: 3px;">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"
style="width: {{anyService.progress}}%">
</div>
</div>
</div>
</div>
</div>
<!-- Tab 5 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(5) && anyService.selectedBuilding">
<div>
<div class="subnote">Share your space through the following URL.</div>
<div>
<input class="form-control"
value="{{anyService.BASE_URL}}/viewer/?buid={{anyService.getBuildingViewerUrl()}}">
</div>
<script>
;(function ($) {
$.fn.customerPopup = function (e, intWidth, intHeight, blnResize) {
// Prevent default anchor event
e.preventDefault();
// Set values for window
intWidth = intWidth || '500';
intHeight = intHeight || '400';
strResize = (blnResize ? 'yes' : 'no');
// Set title and open popup with focus on it
var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share'),
strParam = 'width=' + intWidth + ',height=' + intHeight + ',resizable=' + strResize,
objWindow = window.open(this.attr('href'), strTitle, strParam).focus();
}
/* ================================================== */
$(document).ready(function ($) {
$('.customer.share').on("click", function (e) {
$(this).customerPopup(e);
});
});
}(jQuery));
</script>
<!-- Buttons start here. Copy this ul to your document. -->
<ul class="rrssb-buttons rrssb-1">
<li data-initwidth="25" style="width: 25%;" data-size="0"
class="rrssb-facebook">
<!-- Replace with your URL. For best results, make sure you page has the proper FB Open Graph tags in header: https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content/ -->
<a class="facebook customer share"
href="https://www.facebook.com/sharer/sharer.php?u={{anyService.BASE_URL}}/viewer/?buid={{anyService.getBuildingViewerUrl()}}">
<span class="rrssb-icon">
<svg viewBox="0 0 29 29" xmlns="http://www.w3.org/2000/svg">
<path d="M26.4 0H2.6C1.714 0 0 1.715 0 2.6v23.8c0 .884 1.715 2.6 2.6 2.6h12.393V17.988h-3.996v-3.98h3.997v-3.062c0-3.746 2.835-5.97 6.177-5.97 1.6 0 2.444.173 2.845.226v3.792H21.18c-1.817 0-2.156.9-2.156 2.168v2.847h5.045l-.66 3.978h-4.386V29H26.4c.884 0 2.6-1.716 2.6-2.6V2.6c0-.885-1.716-2.6-2.6-2.6z"/>
</svg>
</span>
<span class="rrssb-text">facebook</span>
</a>
</li>
<li class="rrssb-twitter" data-size="0" style="width: 25%;" data-initwidth="25">
<!-- Replace href with your Meta and URL information -->
<a class="facebook customer share"
href="https://twitter.com/intent/tweet?text={{anyService.BASE_URL}}%2Fviewer%2F%3Fbuid%3D{{anyService.getBuildingViewerUrl()}}">
<span class="rrssb-icon">
<svg viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path d="M24.253 8.756C24.69 17.08 18.297 24.182 9.97 24.62a15.093 15.093 0 0 1-8.86-2.32c2.702.18 5.375-.648 7.507-2.32a5.417 5.417 0 0 1-4.49-3.64c.802.13 1.62.077 2.4-.154a5.416 5.416 0 0 1-4.412-5.11 5.43 5.43 0 0 0 2.168.387A5.416 5.416 0 0 1 2.89 4.498a15.09 15.09 0 0 0 10.913 5.573 5.185 5.185 0 0 1 3.434-6.48 5.18 5.18 0 0 1 5.546 1.682 9.076 9.076 0 0 0 3.33-1.317 5.038 5.038 0 0 1-2.4 2.942 9.068 9.068 0 0 0 3.02-.85 5.05 5.05 0 0 1-2.48 2.71z"/>
</svg>
</span>
<span class="rrssb-text">twitter</span>
</a>
</li>
<li class="rrssb-email" data-size="0" style="width: 25%;" data-initwidth="25">
<!-- Replace subject with your message using URL Endocding: http://meyerweb.com/eric/tools/dencoder/ -->
<a href="mailto:?&body={{anyService.BASE_URL}}%2Fviewer%2F%3Fbuid%3D{{anyService.getBuildingViewerUrl()}}">
<span class="rrssb-icon">
<svg viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path d="M20.11 26.147c-2.335 1.05-4.36 1.4-7.124 1.4C6.524 27.548.84 22.916.84 15.284.84 7.343 6.602.45 15.4.45c6.854 0 11.8 4.7 11.8 11.252 0 5.684-3.193 9.265-7.398 9.3-1.83 0-3.153-.934-3.347-2.997h-.077c-1.208 1.986-2.96 2.997-5.023 2.997-2.532 0-4.36-1.868-4.36-5.062 0-4.75 3.503-9.07 9.11-9.07 1.713 0 3.7.4 4.6.972l-1.17 7.203c-.387 2.298-.115 3.3 1 3.4 1.674 0 3.774-2.102 3.774-6.58 0-5.06-3.27-8.994-9.304-8.994C9.05 2.87 3.83 7.545 3.83 14.97c0 6.5 4.2 10.2 10 10.202 1.987 0 4.09-.43 5.647-1.245l.634 2.22zM16.647 10.1c-.31-.078-.7-.155-1.207-.155-2.572 0-4.596 2.53-4.596 5.53 0 1.5.7 2.4 1.9 2.4 1.44 0 2.96-1.83 3.31-4.088l.592-3.72z"/>
</svg>
</span>
<span class="rrssb-text">email</span>
</a>
</li>
<li class="rrssb-googleplus" data-size="0" style="width: 25%;"
data-initwidth="25">
<!-- Replace href with your meta and URL information. -->
<a class="facebook customer share"
href="https://plus.google.com/share?url={{anyService.BASE_URL}}%2Fviewer%2F%3Fbuid%3D{{anyService.getBuildingViewerUrl()}}">
<span class="rrssb-icon">
<svg viewBox="0 0 24 24" height="24" width="24"
xmlns="http://www.w3.org/2000/svg"><path
d="M21 8.29h-1.95v2.6h-2.6v1.82h2.6v2.6H21v-2.6h2.6v-1.885H21V8.29zM7.614 10.306v2.925h3.9c-.26 1.69-1.755 2.925-3.9 2.925-2.34 0-4.29-2.016-4.29-4.354s1.885-4.353 4.29-4.353c1.104 0 2.014.326 2.794 1.105l2.08-2.08c-1.3-1.17-2.924-1.883-4.874-1.883C3.65 4.586.4 7.835.4 11.8s3.25 7.212 7.214 7.212c4.224 0 6.953-2.988 6.953-7.082 0-.52-.065-1.104-.13-1.624H7.614z"/></svg> </span>
<span class="rrssb-text">google+</span>
</a>
</li>
</ul>
<!-- Buttons end here -->
</div>
</div>
</div>
</div>
</div>
<!-- CAMPUS -->
<div ng-show="isTabSet(4)">
<ui-select ng-model="anyService.selectedCampus" theme="bootstrap" ng-disabled="disabled">
<ui-select-match placeholder="See my Campuses...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices
repeat="b in myCampus | orderBy : 'name' | propsFilter: { name: $select.search, description: $select.search }">
<div ng-bind-html="b.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
<div class="divider-top-15-line">
<div class="subnote font-weight-bold">Campus Toolbox:</div>
<div class="divider-top-10">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" ng-class="{ active:isCrudTabSelected(1) }">
<a href="" ng-click="setCrudTabSelected(1)">Add</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(2) }">
<a href="" ng-click="setCrudTabSelected(2)">Edit</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(3) }">
<a href="" ng-click="setCrudTabSelected(3)">Delete</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(4) }">
<a href="" ng-click="setCrudTabSelected(4)">Backup</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(5) }">
<a href="" ng-click="setCrudTabSelected(5)">Share</a>
</li>
</ul>
<!-- Tab 1-->
<div class="divider-top-10" ng-show="isCrudTabSelected(1)">
<div class="divider-top-10">
<div ng-dropdown-multiselect="" options="example9data"
selected-model="example9model" extra-settings="example9settings"></div>
<div class="form-group">Set Campus Information:</div>
<form id="myForm" class="form-group">
<input type="text" id="CampusName" size="25" class="form-control"
placeholder="Campus Name"/>
<br/>
<input type="text" id="CampusDescription" size="25" class="form-control"
placeholder="Campus Description"/>
<br/>
<label for="CampusID">Campus ID (you can overwrite with a unique alias):</label>
<input type="text" id="CampusID" size="25" class="form-control"
placeholder="Campus id (unique per space)"/>
<br/>
<input type="checkbox" id="Greeklish-OnOff" value=""/><a
href="https://en.m.wikipedia.org/wiki/Greeklish" target="_blank">
Enable Greeklish search</a>
<br/><br/>
<button type="submit" class="btn btn-success pull-right add-any-button"
ng-click="addCampus()"><span class="glyphicon glyphicon-pencil"></span>
Click to add Campus
</button>
<br/>
</form>
</div>
</div>
<!-- Tab 2 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(2) && anyService.selectedCampus">
<form name="buildingEditForm">
<div ng-dropdown-multiselect="" options="example9dataedit"
selected-model="example9modeledit" extra-settings="example9settingsedit"></div>
<fieldset class="form-group">
<input ng-model="anyService.selectedCampus.name"
class="form-control" type="text"
placeholder="Campus Name" id="CampusNameedit">
</fieldset>
<fieldset class="form-group">
<input ng-model="anyService.selectedCampus.description"
class="form-control" type="text"
placeholder="Campus Description" id="CampusDescriptionedit">
</fieldset>
<br/>
<input type="checkbox" id="Greeklish-OnOffedit" value=""/><a
href="https://en.m.wikipedia.org/wiki/Greeklish" target="_blank">
Enable Greeklish search</a>
<br/><br/>
<fieldset>
<button type="submit" class="btn btn-success pull-right add-any-button"
ng-click="updateCampus()"><span
class="glyphicon glyphicon-pencil"></span>
click to update
</button>
</fieldset>
</form>
</div>
<!-- Tab 3-->
<div class="divider-top-10 center-delete-div"
ng-show="isCrudTabSelected(3) && anyService.selectedCampus">
<div><b>WARNING</b>: Once you click the delete button below, Campus
<i>{{anyService.getCampusName()}}</i>
will be deleted but every building which is included in Campus will not be affected.
</div>
<button class="btn btn-danger divider-top-10" ng-click="deleteCampus()">Confirm Deletion
</button>
</div>
<!-- Tab 4 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(4) && anyService.selectedCampus">
<div>
<div class="divider-top-10">
<div class="subnote">Export / Import</div>
<button class="btn btn-success" ng-click="exportCampusToJson()">Export to JSON
</button>
</div>
</div>
</div>
<!-- Tab 5 -->
<div class="divider-top-10" ng-show="isCrudTabSelected(5) && anyService.selectedCampus">
<div>
<div>
<div class="subnote">Share your campus through the following URL.</div>
<div>
<input class="form-control" value="{{anyService.getCampusViewerUrl()}}">
</div>
<script>
;(function ($) {
$.fn.customerPopup = function (e, intWidth, intHeight, blnResize) {
// Prevent default anchor event
e.preventDefault();
// Set values for window
intWidth = intWidth || '500';
intHeight = intHeight || '400';
strResize = (blnResize ? 'yes' : 'no');
// Set title and open popup with focus on it
var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share'),
strParam = 'width=' + intWidth + ',height=' + intHeight + ',resizable=' + strResize,
objWindow = window.open(this.attr('href'), strTitle, strParam).focus();
}
/* ================================================== */
$(document).ready(function ($) {
$('.customer.share').on("click", function (e) {
$(this).customerPopup(e);
});
});
}(jQuery));
</script>
<!-- Buttons start here. Copy this ul to your document. -->
<ul class="rrssb-buttons">
<li class="rrssb-facebook">
<!-- Replace with your URL. For best results, make sure you page has the proper FB Open Graph tags in header: https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content/ -->
<a href="https://www.facebook.com/sharer/sharer.php?u={{anyService.getCampusViewerUrl()}}"
class="facebook customer share">
<span class="rrssb-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 29">
<path d="M26.4 0H2.6C1.714 0 0 1.715 0 2.6v23.8c0 .884 1.715 2.6 2.6 2.6h12.393V17.988h-3.996v-3.98h3.997v-3.062c0-3.746 2.835-5.97 6.177-5.97 1.6 0 2.444.173 2.845.226v3.792H21.18c-1.817 0-2.156.9-2.156 2.168v2.847h5.045l-.66 3.978h-4.386V29H26.4c.884 0 2.6-1.716 2.6-2.6V2.6c0-.885-1.716-2.6-2.6-2.6z"/>
</svg>
</span>
<span class="rrssb-text">facebook</span>
</a>
</li>
<li class="rrssb-twitter">
<!-- Replace href with your Meta and URL information -->
<a href="https://twitter.com/intent/tweet?text={{anyService.getCampusViewerUrlEncoded()}}"
class="facebook customer share">
<span class="rrssb-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28">
<path d="M24.253 8.756C24.69 17.08 18.297 24.182 9.97 24.62a15.093 15.093 0 0 1-8.86-2.32c2.702.18 5.375-.648 7.507-2.32a5.417 5.417 0 0 1-4.49-3.64c.802.13 1.62.077 2.4-.154a5.416 5.416 0 0 1-4.412-5.11 5.43 5.43 0 0 0 2.168.387A5.416 5.416 0 0 1 2.89 4.498a15.09 15.09 0 0 0 10.913 5.573 5.185 5.185 0 0 1 3.434-6.48 5.18 5.18 0 0 1 5.546 1.682 9.076 9.076 0 0 0 3.33-1.317 5.038 5.038 0 0 1-2.4 2.942 9.068 9.068 0 0 0 3.02-.85 5.05 5.05 0 0 1-2.48 2.71z"/>
</svg>
</span>
<span class="rrssb-text">twitter</span>
</a>
</li>
<li class="rrssb-email">
<!-- Replace subject with your message using URL Endocding: http://meyerweb.com/eric/tools/dencoder/ -->
<a href="mailto:?&body={{anyService.getCampusViewerUrlEncoded()}}">
<span class="rrssb-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28">
<path d="M20.11 26.147c-2.335 1.05-4.36 1.4-7.124 1.4C6.524 27.548.84 22.916.84 15.284.84 7.343 6.602.45 15.4.45c6.854 0 11.8 4.7 11.8 11.252 0 5.684-3.193 9.265-7.398 9.3-1.83 0-3.153-.934-3.347-2.997h-.077c-1.208 1.986-2.96 2.997-5.023 2.997-2.532 0-4.36-1.868-4.36-5.062 0-4.75 3.503-9.07 9.11-9.07 1.713 0 3.7.4 4.6.972l-1.17 7.203c-.387 2.298-.115 3.3 1 3.4 1.674 0 3.774-2.102 3.774-6.58 0-5.06-3.27-8.994-9.304-8.994C9.05 2.87 3.83 7.545 3.83 14.97c0 6.5 4.2 10.2 10 10.202 1.987 0 4.09-.43 5.647-1.245l.634 2.22zM16.647 10.1c-.31-.078-.7-.155-1.207-.155-2.572 0-4.596 2.53-4.596 5.53 0 1.5.7 2.4 1.9 2.4 1.44 0 2.96-1.83 3.31-4.088l.592-3.72z"/>
</svg>
</span>
<span class="rrssb-text">email</span>
</a>
</li>
<li class="rrssb-googleplus">
<!-- Replace href with your meta and URL information. -->
<a href="https://plus.google.com/share?url={{anyService.getCampusViewerUrlEncoded()}}"
class="facebook customer share">
<span class="rrssb-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24"><path
d="M21 8.29h-1.95v2.6h-2.6v1.82h2.6v2.6H21v-2.6h2.6v-1.885H21V8.29zM7.614 10.306v2.925h3.9c-.26 1.69-1.755 2.925-3.9 2.925-2.34 0-4.29-2.016-4.29-4.354s1.885-4.353 4.29-4.353c1.104 0 2.014.326 2.794 1.105l2.08-2.08c-1.3-1.17-2.924-1.883-4.874-1.883C3.65 4.586.4 7.835.4 11.8s3.25 7.212 7.214 7.212c4.224 0 6.953-2.988 6.953-7.082 0-.52-.065-1.104-.13-1.624H7.614z"/></svg> </span>
<span class="rrssb-text">google+</span>
</a>
</li>
</ul>
<!-- Buttons end here -->
</div>
</div>
</div>
</div>
</div>
</div> <!-- BUILDINGS -->
</div>
<div id="ctrl-bar-floors" ng-show="isTabSet(2) && showFullControls"
ng-controller="FloorController as floorCtrl">
<div ng-show="anyService.selectedBuilding !== undefined && anyService.selectedBuilding !== null">
<div class="working-on-indicator">{{anyService.selectedBuilding.name}}</div>
<div class="divider-top-15-line">
<div class="subnote font-weight-bold">Floor Toolbox:</div>
<div class="divider-top-10">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" ng-class="{ active:isCrudTabSelected(1) }">
<a href="" ng-click="setCrudTabSelected(1)">Add</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(2) }">
<a href="" ng-click="setCrudTabSelected(2)">Edit</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(3) }">
<a href="" ng-click="setCrudTabSelected(3)">Delete</a>
</li>
</ul>
<div ng-show="isCrudTabSelected(1)">
<div class="divider-top-10">
<label for="input-new-floor-num">Floor Number </label>
<input class="form-control" id="input-new-floor-num" type="number" min="-256"
max="256"
ng-model="newFloorNumber">
<label for="input-floor-plan">Floor Plan </label>
<input class="form-control" type="file" id="input-floor-plan"
name="files[]"
data-file="param.file"/>
<input type="checkbox" id="overlay-mode" name="overlay-mode" checked>
<label for="overlay-mode">Overlay Mode</label><br>
<div class="subnote">
<div>• Keeps the previous floorplan to help align the new one.</div>
</div>
</div>
<div class="divider-top-10" ng-show="isCanvasOverlayActive">
<button class="btn btn-success" ng-click="setFloorPlan()"><span
class="glyphicon glyphicon-ok"></span></button>
<button class="btn btn-danger" ng-click="removeFloorPlan()"><span
class="glyphicon glyphicon-remove"></span></button>
</div>
<div class="divider-top-10">
<div class="subnote">
<b>NOTES:</b>
<!-- <div class="text-warning font-weight-bold">• Aspect ratio is forcefully respected.</div>-->
<!-- <div class="font-weight-bold">• Image quality no longer depends on zoom level.</div>-->
<!-- <div class="font-weight-bold">• Image quality improves after floorplan submission.</div>-->
<div class="font-weight-bold">• Use high zoom level to improve placement accuracy.</div>
<div class="font-weight-bold">• Zoom level affects real-life size of the floorplan.</div>
</div>
</div>
</div>
<div ng-show="isCrudTabSelected(2)">
<div class="divider-top-10">
<div style="text-align: center" class="divider-top-10">
<span>To edit a floor's plan you can switch to the "Add" tab, select the "Floor Number" you want to change and upload the new image. The old image will be overwritten.</span>
</div>
</div>
</div>
<div class="divider-top-10 center-delete-div"
ng-show="isCrudTabSelected(3) && anyService.selectedBuilding">
<div><b>WARNING</b>: Once you click the delete button below, every POI and connection
that
is attached to floor <i>{{anyService.getFloorNumber()}}</i> of building
<i>{{anyService.getBuildingName()}}</i>
will be lost <b>PERMANENTLY.</b></div>
<button ng-click="deleteFloor()" class="btn btn-danger divider-top-10">Confirm Deletion
</button>
</div>
</div>
</div>
</div>
<div class="warning-prereq"
ng-show="anyService.selectedBuilding === undefined || anyService.selectedBuilding === null">
<div class="midnote">
No building selected.
</div>
<div class="midnote">
You can add a new one from the Building Toolbox.
</div>
</div>
</div>
<!-- POIS -->
<div id="ctrl-bar-pois" ng-show="isTabSet(3) && showFullControls" ng-controller="PoiController as poiCtrl">
<div ng-show="anyService.selectedBuilding !== undefined && anyService.selectedBuilding !== null && anyService.selectedFloor !== undefined && anyService.selectedFloor !== null">
<div class="working-on-indicator">[ {{anyService.selectedFloor.floor_number}} ] :
{{anyService.selectedBuilding.name}}
</div>
<ui-select ng-model="anyService.selectedPoi" theme="bootstrap" ng-disabled="disabled">
<ui-select-match placeholder="Select POI...">{{$select.selected.name}}
</ui-select-match>
<ui-select-choices
repeat="p in myPois | filter : { pois_type : '!None' } | propsFilter: { name: $select.search, description: $select.search, floor_number: $select.search } | orderBy : orderByName">
<div ng-bind-html="p.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
<!-- <div class="font-weight-bold">PUID: </div>-->
<!-- <input ng-model='anyService.selectedPoi.puid' disabled></input>-->
<div id="poi-toolbox" class="divider-top-15-line">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" ng-class="{ active:isCrudTabSelected(1) }">
<a href="" ng-click="setCrudTabSelected(1)">Add</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(2) }">
<a href="" ng-click="setCrudTabSelected(2)">Import (JSON)</a>
</li>
<li role="presentation" ng-class="{ active:isCrudTabSelected(3) }">
<a href="" ng-click="setCrudTabSelected(3)">Import (EXCEL)</a>
</li>
</ul>
<div class="divider-top-10" ng-show="isCrudTabSelected(1)">
<div class="subnote font-weight-bold">POI Toolbox:</div>
<div class="divider-top-10">
<div class="draggable-border">
<img id="draggable-poi" src='build/images/poi-new.png'/>
</div>
<span class="subnote">drag to add new POI</span>
</div>
<div class="divider-top-10">
<span id="helper-connector" class="draggable-border">
<img id="draggable-connector" class="poi-toolbox-btn" src='build/images/edge-connector.png'/>
</span>
<span class="subnote">drag to add new connector</span>
</div>
<div class="divider-top-10">
<span class="draggable-border" id="poi-edge-mode" ng-class="(edgeMode) ? 'draggable-border-blue' : ''"
ng-click="toggleEdgeMode()">
<img id="edge-mode-btn" src="build/images/edges.png"/>
</span>
<span ng-hide="edgeMode" class="subnote">toggle edge mode (off)</span>
<span ng-show="edgeMode" class="subnote">toggle edge mode (on)</span>
</div>
</div>
<div class="divider-top-10" ng-show="isCrudTabSelected(22)">
<div class="form-group">POI's types.</div>
<div style="height: 150px;">
<div style="overflow: scroll; height: 100%;">
<div ng-repeat="item in poicategories track by $index" style="margin: 2px;">
<input class="form-control" type="text" placeholder="Type new location"
ng-disabled="{{item.disenable}}" ng-model="item.poicat"
placeholder="{{item.poicatPlaceholder}}" value="{{poicategory.poicat}}"/>
<button class="fieldsme" ng-click="remove($index)">X</button>
</div>
</div>
</div>
<button style="margin: 2px;" id="buttononmap"
class="btn btn-success pull-right add-any-button" ng-click="add()">Add POI type
</button>
<div id="routes3-map"></div>
<div style="height: 150px;">
<div style="overflow: scroll; height: 100%;">
<div ng-repeat="poicategory in poicategories">
<span ng-click="deletetype(poicategory.id)"
class="glyphicon glyphicon-remove-circle">
<input style="margin: 2px; width: 80%;" class="form-control" type="text"
ng-disabled="{{poicategory.disenable}}"
placeholder="{{poicategory.poicatPlaceholder}}"
id="{{poicategory.id}}" ng-model="poicategory.poicat"
value="{{poicategory.poicat}}">
</span>
</div>
</div>
</div>
</div>
<div class="divider-top-10" ng-show="isCrudTabSelected(2) && anyService.selectedBuilding">
<div>
<div class="divider-top-10">
<div class="midnote">Export / Import</div>
<div class="subnote">Export EXISTING building POIs, edit them with a text editor
</div>
<div class="subnote">and Import them back.Manually set the “overwrite” field to
“true”
</div>
<div class="subnote">for every record that needs to be updated.</div>
<div>
<button class="btn btn-success" ng-click="exportBuildingToJson()">Export to JSON
</button>
</div>
<div>
<input class="form-control" style="margin: 3px;" type="file" id="file-input"
value=""/>
<button class="btn btn-success" ng-click="importBuildingFromJson()">Import from
JSON
</button>
</div>
</div>
</div>
</div>
<div class="divider-top-10" ng-show="isCrudTabSelected(3) && anyService.selectedBuilding">
<div>
<div class="divider-top-10">
<div class="midnote">Export / Import</div>
<div class="subnote">To update the POIs from an excel file, with same name,</div>
<div class="subnote">create an excel with 6 columns.</div>
<div class="subnote">Name the 1st 'buid',the 2nd name and from the 3rd to 6th name
them
</div>
<div class="subnote">'des1','des2','des3','des4' respectively.</div>
<div class="subnote">Furthermore in 'buid' column complete the buids,</div>
<div class="subnote">in 'name' column complete the names that mach with POIs
names,
</div>
<div class="subnote">and finally in use the des1,des2,des3,des4 to complete the
description.
</div>
<div class="subnote">The structure of descriptions is "des3 des4\ndes1\ndes2".</div>
<div class="subnote">Example of .xls file:<a
href="{{anyService.BASE_URL}}/architect/build/images/xls-file.png"
target="_blank">demo.xls</a></div>
<div>
<input class="form-control" style="margin: 3px;" type="file" id="my_file_input"
value=""/>
<button class="btn btn-success" ng-click="importBuildingFromExcel()">Import from
EXCEL
</button>
</div>
<div ng-hide="!anyService.progress" ng-show="anyService.progress" class="progress"
style="margin: 3px;">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"
style="width: {{anyService.progress}}%">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="warning-prereq"
ng-show="anyService.selectedBuilding === undefined || anyService.selectedBuilding === null || anyService.selectedFloor === undefined || anyService.selectedFloor === null">
<div class="midnote">
No floor selected.
</div>
<div class="midnote">
You can add a new one from the Floor Toolbox.
</div>
</div>
</div>
<!--Wi-Fi -->
<div id="ctrl-bar-areas" ng-controller="WiFiController as wifiCtrl">
<div ng-show="anyService.selectedBuilding !== undefined && anyService.selectedBuilding !== null">
<div id="control-bar-FMS" class="ng-cloak box-shadow-1" ng-cloak>
<!-- ROW 1: MODES APs & FINGERPRINT -->
<div class="divider-top-1" >
<span title="{{ getAPsModeText() }}" id="APs_1" class="A_0">
<span id="APs-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="Router location estimations">
<i class="icon-quickaction-router"></i>
</button>
</span>
</span>
<!-- box-shadow-1 -->
<span class="A_0 fms-col2" title="{{ getFingerPrintsModeText() }}" id="FPs_1">
<span id="fingerPrints-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="Fingerprints">
<i class="fa fa-podcast"></i>
</button>
</span>
</span>
<span class="A_0 fms-col3" title="Time MODE: {{ getFingerPrintsTimeModeText() }}" id="FPs_2" ng-show="fingerPrintsMode || radioHeatmapRSSMode" >
<span id="fingerPrints-time-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="Chronological filtering">
<i class="fa fa-clock"></i>
</button>
</span>
</span>
<span class="A_0 fms-col4" title="Delete FingerPrints MODE: {{ getDeleteFingerPrintsModeText() }}" id="deleteFingerprintsSpn" ng-show="fingerPrintsMode" >
<span id="delete-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="Cannot be undone!">
<i class="fa fa-trash text-danger"></i>
</button>
</span>
</span>
</div>
<!-- ROW 2: MODES: LOCALIZATION & HEATMAP -->
<div class="divider-top-1">
<span title="{{ getLocalizationAccuracyModeText() }}" id="LA_1" class="A_0">
<span id="localizationAccuracy-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="Accuracy map">
<i class="fa fa-map fa-margin-left-fix"></i>
</button>
</span>
</span>
<span class="A_0 fms-col2 fms-row2" title="{{ getHeatmapModeText() }}" id="HMs_1">
<span id="radioHeatmapRSS-mode">
<button type="button" class="btn btn-light btn-quickactions"
data-toggle="tooltip" data-placement="right" title="WiFi coverage">
<!-- <i class="fa fa-area-chart"></i>-->
<i class="fa fa-wifi fa-margin-left-fix-lg"></i>
</button>
</span>
</span>