|
|
|
@ -21,12 +21,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
public element: ElementRef, |
|
|
|
|
private router: Router, |
|
|
|
|
public emitService: EchartsDataService |
|
|
|
|
) { |
|
|
|
|
this.http.get("assets/echarts/tianjin.json").subscribe((res) => { |
|
|
|
|
this.mapData = res; |
|
|
|
|
console.log("--- result :: ", res); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
) {} |
|
|
|
|
|
|
|
|
|
map: IMap; //地图
|
|
|
|
|
yuandata; |
|
|
|
@ -34,7 +29,11 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.getechartsdata(); |
|
|
|
|
this.getYearlyCompleteProgress(); |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.echartsMap(); |
|
|
|
|
this.http.get("assets/echarts/tianjin.json").subscribe((res) => { |
|
|
|
|
this.mapData = res; |
|
|
|
|
this.echartsMap(); |
|
|
|
|
console.log("--- result :: ", res); |
|
|
|
|
}); |
|
|
|
|
}, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|