我正在使用 agm (有角度的谷歌地图)并希望使用ngfor绘制 n 个圈数,但我收到错误消息:
Can't bind to 'ngFor' since it isn't a known property of 'agm-circle'.
这是我的HTML:
<agm-circle *ngFor="data in circles"
[latitude]="data.lat"
[longitude]="data.lng"
[circleDraggable]="true"
[editable]="true"
[fillColor]="'data.color'"
[radius]="data.radius"
>
</agm-circle>
这是我的 ts 文件,其中包含数据:
lat: number;
lng: number;
circle: any;
@ViewChild(AgmPolygon) polygon: any;
path = [
{ lat: 51.791629704426924, lng: 7.809007 },
{ lat: 51.974729774949644, lng: 0.6317138671875 },
{ lat: 51.303145259199056, lng: 0.6646728515625 },
{ lat: 51.416338106400396, lng: -0.4779052734375 }
];
constructor () {
this.lat = 51.678418;
this.lng = 7.809007;
this.circle = [
{lat: 51.79, lng: 7.8, radius: 60000, color: 'red'},
{lat: 52.79, lng: 12.8, radius: 60000, color: 'green'},
{lat: 54.79, lng: 10.8, radius: 60000, color: 'yellow'},
{lat: 51.79, lng: 8.8, radius: 60000, color: 'yellow'},
{lat: 60.79, lng: 7.8, radius: 60000, color: 'green'},
];
}
至于这些是假人数据,但这些圈子的数据将 n 任何建议都将受到赞赏
答案 0 :(得分:0)
我通过使用关键词调整ngFor解决了这个问题让我不知道为什么AGM不支持上述语法但是我的新语法:
<强>的index.html 强>
hintText
希望它会有所帮助:-p