Advertisement
BamiGorengo

Untitled

Sep 19th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <section class="site-restaurants">
  2.  
  3. <div class="restaurants-box">
  4. <a *ngFor="let item of restaurants | async">
  5. <md-card>
  6.  
  7. <md-card-header>
  8. <img md-card-avatar [src]="item.avatar">
  9. <md-card-title>{{item.name}}</md-card-title>
  10. <md-card-subtitle>{{item.distance}} entfernt</md-card-subtitle>
  11. </md-card-header>
  12.  
  13. <agm-map [latitude]="item.lat"
  14. [longitude]="item.lng"
  15. [styles]="mapStyle"
  16. [zoom]="zoom"
  17. [zoomControl]="zoomControl"
  18. [clickableIcons]="clickableIcons"
  19. [scrollwheel]="scrollwheel"
  20. [streetViewControl]="streetViewControl"
  21. [disableDoubleClickZoom]="disableDoubleClickZoom"
  22. [gestureHandling]="gestureHandling">
  23.  
  24. <agm-marker [latitude]="item.lat" [longitude]="item.lng"></agm-marker>
  25. </agm-map>
  26.  
  27. <md-card-content>
  28. <p *ngFor="let tip of restaurants[item.$key].tips" [innerHTML]="tip.description"></p>
  29. <p *ngFor="let tip of tips | async" [innerHTML]="tip.description"></p>
  30. </md-card-content>
  31.  
  32. <md-card-actions>
  33. <button md-icon-button [routerLink]="['/restaurant/'+item.$key]">
  34. <i class="material-icons">edit</i>
  35. </button>
  36. <button md-icon-button (click)="deleteItem(item.$key)">
  37. <i class="material-icons">delete</i>
  38. </button>
  39. </md-card-actions>
  40.  
  41. </md-card>
  42. </a>
  43. </div>
  44.  
  45. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement