setContent to InfoWindow of Google maps in ionic native

时间:2017-05-02 09:09:35

标签: google-maps ionic2 ionic-native

我希望能够在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设备上测试它时,它只显示字符串&lt;&lt; button&gt; Test&lt; / button&gt;&#39;没有任何按钮。是否有遗漏或任何其他功能?

1 个答案:

答案 0 :(得分:0)

内容,而不是标题

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