AS3 Google地图标签和infoWindow偏移量

时间:2014-04-16 23:30:35

标签: actionscript-3 google-maps google-maps-api-3

我有两个问题。

1)我有一个带有标记的谷歌地图,应用于它的标签正好穿过标记的中心。理想情况下,我希望它在标记之上,但此时我会采取任何措施。这就是我所拥有的。

var m:Marker = new Marker(new LatLng(tempLat,tempLang),new MarkerOptions({label:"Hello World"}))

2)我对infoWindow有同样的问题。它完全覆盖了标记。这是代码。

map.openInfoWindow(new LatLng(tempLat,tempLang), new InfoWindowOptions({title: "Hello", content: "World"}))

谢谢。

1 个答案:

答案 0 :(得分:0)

我不认为标记标签有任何答案,但对于InfoWindow,这就是我所拥有的。

map.openInfoWindow(new LatLng(tempLat,tempLang),new InfoWindowOptions({title:storeName,content:to.text,hasTail:true,pointOffset:new Point(0,-40)}));