Added API changes

This commit is contained in:
piratefinn 2017-09-27 17:46:25 +01:00
parent b59351addf
commit f402d46db8
3 changed files with 16 additions and 28 deletions

View file

@ -24,12 +24,12 @@
(idle)="viewBoundsChanged($event)">
<agm-marker
*ngFor="let m of markers"
[latitude]="m.lat"
[longitude]="m.lng"
[label]="m.label">
[latitude]="m.latitude"
[longitude]="m.longitude"
[label]="m.name[0]">
<agm-info-window>
<strong>{{m.label}}</strong>
<strong>{{m.name}}</strong>
</agm-info-window>
</agm-marker>
</agm-map>