我通过Fusion Table API调用FusionTableMapLayer。我在实际的Google Fusion Table程序中为该图层开发了一个自定义信息窗口,但是当我在我的应用程序中调用该图层时,信息窗口将恢复为默认的信息窗口。我如何a)调用保存在Google Fusion Table中的自定义信息窗口,或者b)在我的API调用中自定义信息窗口?
答案 0 :(得分:0)
使用从向导导出的代码(或至少从中导出的styleId和templateId)
new google.maps.FusionTablesLayer({
query: {
select: "geometry",
from: "1EPhndJHBm0ghi06Xq9d8P62hUwCisAcQxYxgH5ax",
},
map: map,
options: {
styleId: 2, // get these values from the proper tab on the FusionTables UI
templateId: 2 // get these values from the proper tab on the FusionTables UI
}
});