如何重新定位地图上的信息窗口对象的箭头

时间:2019-06-24 10:12:02

标签: typescript google-maps infowindow

我在Google地图上有此InfoWindow:

enter image description here

我使用pixelOffset选项将信息窗口向左移动,但是箭头仍指向向下方向

var zoomLevel = this.sessionVar.map.getZoom();
    var leftPixelOffset =
      zoomLevel < 12
        ? new google.maps.Size(-(10 + bubbleWidth / 2), bubbleHeight/2 + 10)
        : new google.maps.Size(-(10 + bubbleWidth / 2), bubbleHeight/2 + 10);

infoWindow.setOptions({ pixelOffset: leftPixelOffset });

如何使箭头指向正确的方向? (箭头指向的点是绿色的星星)

0 个答案:

没有答案