2

我目前正在使用https://github.com/SebastianM/angular2-google-maps附加的 Angular Google Maps 链接,我的要求是在用户单击按钮时使用agm-polyline绘制动态线 ,它会在地图上放置一个带有纬度和经度,现在我想使用相同的 linee 绘制路径:我的示例是

应用程序.html

        <button (click)="add()">Add Line</button>
<agm-map [latitude]="lat" [longitude]="lng" [panControl]="true" [usePanning]="true" [rotateControl]="true">
        <agm-marker [latitude]="lat" [longitude]="lng">
        </agm-marker>
      </agm-marker>
              <agm-polyline *ngFor="let data of lines" [editable]="true">
                            <agm-polyline-point
                              [latitude]="data.lat"
                              [longitude]="data.lng">
                            </agm-polyline-point>
              </agm-polyline>
    </agm-map>

app.component.ts

 add() {
console.log('on shape')
this.lines.push({lat: 51.79, lng: 7.8});//creates a point now want to add draw path 

}

它现在使用这一点创建一个点我想画一条线任何帮助将不胜感激

4

1 回答 1

3

您需要将 *ngFor="let data of lines" 放在 agm-polyline-point 中。像这样:-

<agm-polyline [editable]="true">
    <agm-polyline-point *ngFor="let data of lines" 
        [latitude]="data.lat"
        [longitude]="data.lng">
    </agm-polyline-point>
</agm-polyline>
于 2017-12-02T08:05:44.930 回答