-1
有人很快開始使用ClusterMarkers在本地GoogleMaps插件中託管大量2/3離子標記。謝謝。ClusterMarkers Ionic 2/3原生GoogleMaps
有人很快開始使用ClusterMarkers在本地GoogleMaps插件中託管大量2/3離子標記。謝謝。ClusterMarkers Ionic 2/3原生GoogleMaps
這就是如何添加標記給你的地圖。小心你需要先建立你的地圖。
addMarker() {
// costum image
//let image = 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png';
let marker = new google.maps.Marker({
map: this.map,
animation: google.maps.Animation.DROP,
position: this.map.getCenter()
//,icon: image
});
let content = "<h4>Information!</h4>";
this.addInfoWindow(marker, content);
}