谷歌地图API V3 - DirectionsRendererOptions和InfoWindow中的自定义内容

时间:2011-05-26 14:06:37

标签: maps infowindow direction

我正在尝试使用Google maps V3 API实现基于地图/方向的应用程序。到目前为止,我已经能够显示地图并显示所选两个地点的路线。

但是,我无法使用DirectionsRendererOptions在InfoWindow上设置自定义内容。以下是我正在使用的内容。

var renderer = new google.maps.DirectionsRenderer(
                        {
                           infoWindow : new google.maps.InfoWindow(
                           {
                               content : "This is a test"
                           }
                         )}); 

似乎自定义InfoWindow正在设置,因为当在新的InfoWindow上设置disableAutoPan属性时,会发生预期的行为。但是内容未设置。

有没有办法可以访问InfoWindow的内容(由DirectionsRenderer生成)并更新它?

提前致谢。

1 个答案:

答案 0 :(得分:3)

这不会更新'你的InfoWindow,而不是它取而代之。所以没有事件监听器和setContent。

directionsService.route的回调中,我只是将response.routes[i].legs[j].end_addressresponse.routes[i].legs[j].start_address的内容修改为我想要的HTML。

我没有构建一个非常复杂的应用程序(此外我还是第一次学习GMaps API)所以这对我有用。