如何改变googlemaps中标记和infowindow之间的距离?

时间:2016-08-13 18:29:36

标签: android google-maps google-maps-markers

在我的设计中,我在标记和信息窗口之间有一个距离。有没有办法实现这个目标?

pic

编辑:我的问题是如何稍微移动信息窗口。

1 个答案:

答案 0 :(得分:4)

在这里找到答案:Android Google Map InfoWindow anchor point after marker rotation

您可以使用以下代码找到标记顶部中间的点:

var angle = 0.0;
var x = Math.sin(-angle * Math.PI / 180) * 0.5 + 0.5;
var y = -(Math.cos(-angle * Math.PI / 180) * 0.5 - 0.5);

并设置一些偏移量。在我的情况下-0.1f:

marker.setInfoWindowAnchor((float)x, (float)y -0.1f); // -0.1f for moving up