我目前正在開發一個使用Google地圖的Angular2項目。Angular 2具有多個標記的Google地圖
我試圖在區域周圍顯示標記和多個標記。 我有地圖工作,但似乎不能標記。
<div class="google-maps"></div>
constructor(private _elementRef:ElementRef) {
}
ngAfterViewInit() {
let el = this._elementRef.nativeElement.querySelector('.google-maps');
GoogleMapsLoader.load((google) => {
let myLatlng = new google.maps.LatLng(44.5403,-78.5463);
new google.maps.Map(el, {
center: new google.maps.LatLng(44.5403, -78.5463),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
new google.maps.Marker(el,{
draggable: true,
animation: google.maps.Animation.DROP,
position: myLatlng,
title:"Hello World!"
});
});
}
任何錯誤? –
希望這個鏈接將幫助你http://stackoverflow.com/questions/3059044/google-maps-js-api-v3-simple-multiple-marker-example –
沒有錯誤日誌按摩 – sridharan