1

如果这已在其他地方解决,请原谅;我进行了搜索,但找不到有关此特定主题的任何内容。基本上,可以在使用 Javascript v3 api 的融合查询的 where 子句中使用 ROWID,例如:

    var locationLayer = new google.maps.FusionTablesLayer({ 
       query: { 
           select: 'Address', 
           from: 3349066, 
           where: "'ROWID' in ('2076','2077',....)" 
       } 
   }); 
   locationLayer.setMap(map); 

此查询适用于不包含 ROWID 的 where 子句,但我的语法可能有问题?谢谢您的帮助。

4

1 回答 1

1

just to let everyone know, I received this response from Google regarding using the ROWID in the where clause in the maps API:

April 6, 2012

Hi [Abram],

No, I don't think the rowid filter works in the Maps API. Feel free to open a feature request:

http://code.google.com/p/fusion-tables/issues/list

Cheers, Kathryn

于 2012-04-23T17:14:03.300 回答