0

我想使用 javascript api v3 在我的谷歌地图上放置一个融合表层。其中有四列:iso、color、name、geometry。我的融合表是:
https ://www.google.com/fusiontables/data?docid=1uO0anbhABVwjktSOy-PJsGo0Q4y-gTtzAe607c8

为什么我可以过滤:where: 'color=0' 但不能过滤:where: 'iso="AU"'

'color' 列类型是数字,'iso' 列类型是文本。

该查询中有任何语法错误吗?谢谢你。

4

1 回答 1

1

哦,我知道为什么了。

where 子句应改为where: "iso='AU'". 双引号应围绕单引号。

于 2012-12-05T16:22:41.407 回答