I try to get data from my json file
ngOnInit() {
   this.http.get('assets/json/buildings.json',  { responseType: 'text'})
    .map(response => response)
     .subscribe(result => this.data = result);
    console.log(this.data);
}
But I get undefined... Could you please help me and explain why I do not get my data. 
 
     
    