TypeScript - Angular2如何在其他人打开时隐藏infoWindow?

时间:2017-07-15 08:06:39

标签: angular

我的代码在HTML文件中:

<sebm-google-map-marker 
          *ngFor="let m of allMarkers; let i = index"
          [latitude]="m.gpsLongitude"
          [longitude]="m.gpsLatitude"
          [label]="m.label"
          (markerClick)="clickedMarker(m.deviceId, i,infowindow)">
 in component.ts file 
 clickedMarker(deviceId: number, index: number,infowindow) {
    if(this.infowindow.Isopen){
     ..... ?
    }
       console.log(`clicked the marker: ${deviceId || index}`)
  }

如果最后一个窗口打开然后关闭,应该跟踪的代码是什么?

我无法跟踪最后一个窗口是否仍然打开。我不想为此包含jQuery。

0 个答案:

没有答案