谷歌Fusion表“鼠标悬停”

时间:2016-05-01 00:56:20

标签: google-maps google-fusion-tables

如果有人知道如何在Google Fusion桌面上实现“鼠标悬停”选项,我感到很好奇吗?目前,用户必须单击实际图标而不是将鼠标悬停在其上以查看信息框。任何信息将不胜感激。非常感谢你!

1 个答案:

答案 0 :(得分:0)

首先,Fusion Tables API 1.0将最大响应大小限制为10 Mb。我们建议您迁移到为大型有效负载提供媒体下载的Google Fushion Tables API v2.0

您可以通过创建事件监听器来实现Mouseover,这是一个如何实现mouseover事件监听器的示例代码:

google.maps.event.addListener(country, 'mouseover', function() {
this.setOptions({fillOpacity: 1});
});

有关Fusion Tables REST API的更多信息,请按照此link进行操作。该文档包含migration of v1.0 to v2.0getting started and performance tips