I have a problem with my new map, combination of fusion table layer and jquery tabs. The problem is that I want to show only markers from column DONOR/col6 for example Austria and it;s showing me all records. I was trying add where query after FT ID but it's now working
where: "col6 = 'Austria'"
That's main script to query FT
<SCRIPT type="text/javascript"> //Fisrt script to query Table and get data
var FT_TableID = 'FT_ID';// Fusion Table data ID
google.load('visualization', '1', {'packages':['corechart', 'table', 'geomap']});
function createSidebar() { //This line is important, change Table ID and column names
var queryText = encodeURIComponent("SELECT 'col6' FROM "+'FT_ID');
var query = new google.visualization.Query('http://www.google.com/fusiontables/gvizdata?tq=' + queryText);
query.send(getData);//set the callback function
}
google.setOnLoadCallback(createSidebar);// Set a callback to run when the Google Visualization API is loaded.
</SCRIPT>
And here is live example CLICK