我希望能够在 InfoWindow 中有按钮。我尝试使用标题而不是内容,如下所示:
map.addEventListener(GoogleMapsEvent.MAP_CLICK).subscribe((e) => {
let markerOptions: MarkerOptions = {
position: e,
title:"<button>Test</button",
draggable: true
};
map.addMarker(markerOptions).then((marker: Marker) => {
marker.showInfoWindow()
});
});
当我在我的 android 设备中测试它时,它只显示没有任何按钮的字符串'<button>Test</button>'。是否有任何缺失或任何其他功能可以做到这一点?