-
Notifications
You must be signed in to change notification settings - Fork 0
/
panel.html
25 lines (23 loc) · 1.28 KB
/
panel.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
<div class="pane-head" style="padding: 10px;">
<button type="button" class="close" data-ng-click="panels.close();">x</button>
</div>
<div class="pane-body" style="padding: 10px;">
<div style="padding: 10px;background-color: white;"><img ng-src="{{selectedPOI.EM01_PICTURE}}">{{selectedPOI.EM01_NAME}}</div>
<h4>{{selectedPOI.EM02_NAME}}</h4>
<small>{{selectedPOI.EM02_DESCRIPTION}}</small>
<br />
<p>Dal {{selectedPOI.EM02_START_TIME| date:'dd/MM/yyyy H:mm'}} <br />
Al {{selectedPOI.EM02_END_TIME| date:'dd/MM/yyyy H:mm'}} </p>
<br />
<p>{{selectedPOI.EM02_PLACE_LOCATION_STREET}} <br />
{{selectedPOI.EM02_PLACE_LOCATION_CITY}}
</p>
<div>
<a ng-href="https://www.google.com/maps?q={{selectedPOI.EM02_PLACE_LOCATION_LATITUDE}},{{selectedPOI.EM02_PLACE_LOCATION_LONGITUDE}}" class="btn btn-primary btn-sm" role="button">Posizione</a>
<a ng-href="https://www.google.com/maps/dir/Current+Location/{{selectedPOI.EM02_PLACE_LOCATION_LATITUDE}},{{selectedPOI.EM02_PLACE_LOCATION_LONGITUDE}}" class="btn btn-primary btn-sm" role="button">Indicazioni</a>
<a ng-href="https://www.facebook.com/{{selectedPOI.EM02_IDEVENT}}" class="btn btn-primary btn-sm" role="button">Evento su FB</a>
</div>
<div>
<button type="button" class="close" data-ng-click="panels.close();">Chiudi</button>
</div>
</div>