2017-07-15 110 views
1

我一直在爲[latitude] =「{{location.lat}}解析」我嘗試緯度=「{{location.lat}}」和緯度=「location.lat」,但它並未完成是工作離子2解析錯誤

<div *ngFor="let location of info"> 
    <agm-map [latitude]="{{location.lat}}"[longitude]='{{location.lng}}' [zoom]="15" 
      [zoomControl]="false"> 
     <agm-marker [latitude]='{{location.lat}}' [longitude]='{{location.lng}}'></agm-marker> 
    </agm-map> 
     </div> 

回答

0

你應該把表達而不{{}}

<div *ngFor="let location of info"> 
    <agm-map [latitude]="location.lat"[longitude]='location.lng' [zoom]="15" 
      [zoomControl]="false"> 
     <agm-marker [latitude]='location.lat' [longitude]='location.lng'></agm-marker> 
    </agm-map> 
/div> 
+1

只是修復:使用' 「......」''中的HTML's代替' '...' ' –

+0

好吧,所以這確實解決了分析,但現在地圖空白,當我點擊我得到這個錯誤undefined不是一個對象(評估'a.x') – Nouf