0

我希望能够在 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>'。是否有任何缺失或任何其他功能可以做到这一点?

4

1 回答 1

0

内容,而不是标题

  let markerOptions: InfoWindowOptions = {
    position: e,
    content:"<button>Test</button",
    draggable: true
  };
于 2017-05-02T10:10:29.063 回答