2017-11-14 12:47:28 +00:00
< div class = "animated fadeIn" >
< div class = "row" >
< div class = "col-lg-12" >
< div class = "card" >
< div class = "card-header" >
2017-11-29 16:19:38 +00:00
< strong > Lancaster Independent Story< / strong >
2017-11-14 12:47:28 +00:00
< small > Required Data marked in < strong > bold< / strong > .< / small >
2017-12-08 13:26:18 +00:00
< select type = "text" [ ( ngModel ) ] = " assocMap " ( ngModelChange ) = " viewBoundsChanged ( ) " >
< option value = "lis" selected > Lancaster Independent Story< / option >
< option value = "esta" > Esta< / option >
< / select >
2017-11-14 12:47:28 +00:00
< / div >
2017-11-27 16:56:09 +00:00
< div class = "modal fade" bsModal # statusModal = "bs-modal" [ config ] = " { backdrop: false , animated: false } "
tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
< div class = "modal-dialog modal-sm h-100 d-flex flex-column justify-content-center my-0" >
< div class = "modal-content" >
< div class = "modal-header" >
< h4 class = "modal-title pull-left" > Status< / h4 >
< button type = "button" class = "close pull-right" aria-label = "Close" ( click ) = " statusModal . hide ( ) " >
2017-11-23 17:16:46 +00:00
< span aria-hidden = "true" > × < / span >
< / button >
< / div >
2017-11-27 16:56:09 +00:00
< div class = "modal-body" >
< div [ ngSwitch ] = " dataReceived " >
< div * ngSwitchCase = "'no'" >
< div class = "alert alert-danger" role = "alert" >
No map data received, check your connection.
< / div >
< / div >
< div * ngSwitchCase = "'loading'" >
< div class = "alert alert-warning" role = "alert" >
Map loading, please wait.
< / div >
< / div >
< / div >
2017-11-23 17:16:46 +00:00
< / div >
2017-11-27 16:56:09 +00:00
< / div >
2017-11-14 12:47:28 +00:00
< / div >
< / div >
2017-11-27 16:56:09 +00:00
<!-- this creates a google map on the page with the given lat/lng from -->
<!-- the component as the initial center of the map: -->
< agm-map
(mapReady)="onMapReady($event)"
[latitude]="lat"
[longitude]="lng"
[zoom]="zoom"
[scaleControl]="true"
2017-11-28 18:14:15 +00:00
(idle)="viewBoundsChanged()">
2017-11-27 16:56:09 +00:00
< agm-marker-cluster maxZoom = "13" imagePath = "https://raw.githubusercontent.com/googlemaps/v3-utility-library/master/markerclustererplus/images/m" >
< agm-marker
*ngFor="let m of markers"
2017-12-08 13:26:18 +00:00
[iconUrl]="'/assets/img/association/' + assocMap + '-map-pin.png'"
2017-11-27 16:56:09 +00:00
[latitude]="m.latitude"
[longitude]="m.longitude"
[openInfoWindow]="false"
(markerClick)="onMarkerClick(m, template)">
< / agm-marker >
< / agm-marker-cluster >
< / agm-map >
< ng-template # template >
< div class = "modal-header d-flex justify-content-between" >
2017-12-08 13:26:18 +00:00
< img src = "{{assocLogo}}" class = "w-15" alt = "lis logo" > < h4 class = "modal-title" > {{clickedMarker.name}}< / h4 >
2017-11-27 16:56:09 +00:00
< button type = "button" class = "close pull-right" aria-label = "Close" ( click ) = " modalRef . hide ( ) " >
< span aria-hidden = "true" > × < / span >
< / button >
< / div >
< div class = "modal-body text-right" >
< h5 > Located at:< / h5 >
< h6 > {{clickedMarker.street_name}}< / h6 >
< h6 > {{clickedMarker.town}}< / h6 >
< h6 > {{clickedMarker.postcode}}< / h6 >
< / div >
< / ng-template >
2017-11-14 12:47:28 +00:00
< / div >
< / div >
< / div > <!-- /.row -->
< / div >