无论如何,有没有改变信息气泡的锚点?我希望信息气泡的位置在26px x 26px图标的顶部中心。

我正在将Maps API用于JavaScript 3.0.12.0

最佳答案

您可以使用CSS:

  /*move the bubble 26px upwards*/
.H_ib{margin-top:-26px;}
  /*remove the ellipsis at the end of the tail when you want to*/
.H_ib_tail svg path:first-child{display:none;}

09-15 19:56