Skip to content

Instantly share code, notes, and snippets.

@moklick
Created October 10, 2013 13:12
Show Gist options
  • Save moklick/6918082 to your computer and use it in GitHub Desktop.
Save moklick/6918082 to your computer and use it in GitHub Desktop.
Litte Fusiontable-Query Helper
var FusionHelper = {
query: function(params) {
var base = 'https://www.googleapis.com/fusiontables/v1/query?',
url = base + $.param({
sql: params.sql,
key: '***'
});
$.ajax({
url: url,
type: 'POST',
dataType: 'jsonp',
success: params.callback
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment