因为我是Ionic 2的新手所以在ng2-maps中遇到问题。 HTML方面的代码:
<ng2-map zoom="13">
<marker id="{{site.id}}" *ngFor="let site of sites" [position]="[site.latitude, site.longitude]" (click)="openInfoWindow($event)"></marker>
<info-window id="iw">
Site Name
</info-window>
和打字稿方面
openInfoWindow(event) : void {
var marker = event.target;
marker.nguiMapComponent.openInfoWindow('iw', marker, {
lat: marker.getPosition().lat(),
lng: marker.getPosition().lng(),
});
}
现在我正在尝试自定义信息窗口,但它没有打开并显示错误:
Cannot read property 'openInfoWindow' of undefined
任何形式的帮助将不胜感激
答案 0 :(得分:0)
使用“marker.ng2MapComponent.openInfoWindow”代替“marker.nguiMapComponent.openInfoWindow”