我正在使用IONIC2,我已經實施了地圖並在地圖上放置了標記。 我可以得到地圖點擊偵聽器,但不能得到標記點擊偵聽器。如何在IONIC2中添加標記點擊監聽器?
我曾嘗試過addlistener,但無法獲得標記的單擊事件。
這裏是我在地圖上添加標記代碼:
addMarkerOnMap(latLng1: GoogleMapsLatLng, depotsEntity: DepotsEntity) {
/**
* To add marker in the map, need to initialize GoogleMapsMarkerOptions
*/
let options: GoogleMapsMarkerOptions = {
icon: "www/img/location.png",
title: depotsEntity.address,
position: latLng1,
animation: GoogleMapsAnimation.DROP
};
let marker = this.map.addMarker(options)
this.map.on(this.map.markerClicked, function() {
console.log("markerClicked"); // This is not working yet
});
如果有人知道關於IONIC2標記點擊收聽,請幫助我。
非常感謝,我從前兩天開始嘗試。 – BSavaliya