angular 2 zone.jsで新しいGoogleマップを作成しようとすると、最大コールスタックを超えています。誰もこれを経験しましたか?
マップ コンポーネント:
import { Component, OnInit} from '@angular/core';
import { Map, MapOptions, LatLng} from '../../models/map.model';
@Component({
moduleId: module.id,
selector: 'map',
templateUrl: 'map.component.html',
styleUrls: ['map.component.css']
})
export class MapComponent implements OnInit {
private _map: Map;
private _mapOptions: MapOptions;
constructor() {
}
ngOnInit() {
this._mapOptions = new MapOptions();
this._mapOptions.center = new LatLng(35.9273232, 14.413077);
this._map = new Map(document.getElementById('googleMap'), this._mapOptions);
}
}