与离子本地的Google Maps的Infowdow相结合



我希望能够在Infowdindow中使用按钮。我尝试使用标题而不是以下内容:

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设备中测试它时,它只需显示字符串'&lt; button> test&lt;/button>'而没有任何按钮。是否有任何丢失或其他功能可以这样做?

内容,而不是标题

  let markerOptions: InfoWindowOptions = {
    position: e,
    content:"<button>Test</button",
    draggable: true
  };

相关内容

  • 没有找到相关文章

最新更新