调试google.maps.FusionTablesLayer

时间:2012-02-18 15:49:27

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

创建FusionTablesLayer时是否有任何failureCallback?有没有办法知道您的查询是否有问题?或者从查询中加载了多少行?

var layer = new google.maps.FusionTablesLayer({ 
       query: {    select: 'address',    
                   from: '198945',
                   where: 'ridership > 5000'  }
 });

1 个答案:

答案 0 :(得分:2)

对你的两个问题的简短回答都是肯定的。 我依靠未记录的Fusion Table JSONP支持来轻松​​测试查询,而不必担心GMap的东西,也可以从特定查询中检索行数。

Robin Kraft在此博客中使用jQuery记录了这种JSONP方法:

http://www.reddmetrics.com/2011/08/10/fusion-tables-javascript-query-maps.html

此外,在旧的FT API Google Group上已经讨论过这个问题。

埃里克