Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to put a fusion table layer over my google map using javascript api v3. There are four columns in it: iso, color, name, geometry. My fusion table is:
https://www.google.com/fusiontables/data?docid=1uO0anbhABVwjktSOy-PJsGo0Q4y-gTtzAe607c8

Why I can filter with: where: 'color=0' but cannot filter with: where: 'iso="AU"'

'color' column type is number and 'iso' column type is text.

Any syntax error in that query? Thank you.

share|improve this question

1 Answer

up vote 1 down vote accepted

Oh, I find out why.

The where clause should be changed to where: "iso='AU'". Double quotes should surround single quotes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.