Skip to content

Commit

Permalink
Step 17.8: Use in a template
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent 3126797 commit d353c89
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions client/imports/app/parties/party-details.component.html
Expand Up @@ -28,3 +28,15 @@ <h2>Reply to the invitation</h2>
<input type="button" value="Maybe" (click)="reply('maybe')">
<input type="button" value="No" (click)="reply('no')">
</div>

<sebm-google-map
[latitude]="lat || centerLat"
[longitude]="lng || centerLng"
[zoom]="8"
(mapClick)="mapClicked($event)">
<sebm-google-map-marker
*ngIf="lat && lng"
[latitude]="lat"
[longitude]="lng">
</sebm-google-map-marker>
</sebm-google-map>

0 comments on commit d353c89

Please sign in to comment.