0

如何在谷歌融合表的窗口布局中添加按钮?当我单击“GO”按钮时,我想获得从特定点到该点的方向。(https://developers.google.com/fusiontables/docs/samples/infowindow_driving_directions)

是否可以在自定义窗口布局中添加脚本?我想将这些功能添加到此页面。我在自定义窗口布局中添加了这个。

<div class='googft-info-window' style='font-family: sans-serif'>
<b>FamilyID:</b> {FamilyID}<br>
<b>FamilyHead:</b> {FamilyHead}<br>
<b>Ward:</b> {Ward}<br>
Get direction : <input type="button">Go</button>
</div>

按钮不显示。下面给出了我的融合表的链接。

https://www.google.com/fusiontables/DataSource?docid=1cabvZOod51ubZI815QTLL8Py2CM4DWkSE3E3Pds&pli=1#map:id=3

问候, 撒迦利亚 Cherian

4

2 回答 2

0

你的语法不正确。

<input type="button" value="Go">

但是你可能也想让它实际做一些事情。

于 2013-01-04T16:59:16.080 回答
0

指定信息窗口内容有两种不同的方式:(1) 在 Fusion Tables UI/信息窗口模板内 (2) 单击后,使用 Javascript 和 Google Maps API 指定信息窗口内容。

方法(1)不接受脚本。您将无法使您的按钮工作。方法(2)将支持您的按钮。但是,您不能在 Fusion Tables UI 中执行此操作。您必须使用 Google Maps API 将您的地图设置为 Fusion Tables 图层(FusionTableslayer 向导可以提供帮助),然后抑制 Fusion Tables 信息窗口并指定您自己的信息窗口内容。有关如何执行此操作的模型,请参阅示例代码。

-丽贝卡

于 2013-01-07T17:33:19.327 回答