如何在infowindow中添加一个简单的方向

时间:2012-08-23 14:43:23

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

我正在将Google多点地图从版本2移动到3。 我可以在点击时显示图标并打开新窗口,但是在打开信息窗口时,在版本2上有一个选项“方向到这里,从这里”。当点击这里或从这里点击时,会出现一个文本字段,您可以输入一个城镇的名称。单击按钮时,用户就会在新窗口中发送到Google地图。 我似乎无法找到这样的选择。 这是我在第2版上的脚本:

// The info window version with the "to here" form open
    to_htmls[i] = html + '<br>Directions: <b>To here</b> - <a href="javascript:fromhere(' + i + ')">From here</a>' +
       '<br>Start address:<form action="http://maps.google.com/maps" method="get" target="_blank">' +
       '<input type="text" SIZE=40 MAXLENGTH=40 name="saddr" id="saddr" value="" /><br>' +
       '<INPUT value="Get Directions" TYPE="SUBMIT">' +
       '<input type="hidden" name="daddr" value="' + point.lat() + ',' + point.lng() + 
              // "(" + name + ")" + 
       '"/>';
    // The info window version with the "to here" form open
    from_htmls[i] = html + '<br>Directions: <a href="javascript:tohere(' + i + ')">To here</a> - <b>From here</b>' +
       '<br>End address:<form action="http://maps.google.com/maps" method="get"" target="_blank">' +
       '<input type="text" SIZE=40 MAXLENGTH=40 name="daddr" id="daddr" value="" /><br>' +
       '<INPUT value="Get Directions" TYPE="SUBMIT">' +
       '<input type="hidden" name="saddr" value="' + point.lat() + ',' + point.lng() +
              // "(" + name + ")" + 
       '"/>';
    // The inactive version of the direction info
    html = html + '<br><br>Directions: <a href="javascript:tohere('+i+')">To here</a> - <a href="javascript:fromhere('+i+')">From here</a>';

1 个答案:

答案 0 :(得分:0)

Here是代码从Mike Williams' Google Maps v2 tutorial出现的页面之一,已翻译为v3。