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 authored and DAB0mB committed Dec 14, 2016
1 parent d9ed1ca commit f0346ed
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 f0346ed

Please sign in to comment.