Questions tagged [google-fusion-tables]

Fusion Tables is Google's product for managing and combining datasets via a web service and Google Drive, and visualizing them in charts and other ways. Fusion Tables was shut down on December 3, 2019, Maps API version 3.37 is the last version that supported Fusion Tables

Google Fusion Tables lets you store, share, query and visualize data tables. It offers a RESTful API to manage your data tables (create, delete). Besides, you can run SQL-like queries to manage data rows (insert/update/delete) and query the table for all rows that match spatial or data conditions.

The results of queries can be in JSON or used directly in the Google Maps API (via Fusion Tables Layer) or Google Chart Tools.

1344 questions
3
votes
1 answer

Closing Google v3 API InfoWindow, using FusionTables Layer

We are generating a map with Markers/Infowindows via FusionTables. The map is being presented via a FusionTables Layer, and I am using the InfoBox plugin in order to create my own custom style of InfoWindow. This is all fine and dandy. My window…
3
votes
2 answers

Google apps script update fusion table from spreadsheet script

I would like to create an apps script in a google docs spreadsheet that will periodically copy rows from the sheet and insert them into a fusion table. Below I've pasted my best attempt, but it should be noted that I really want it to be posting a 2…
3
votes
2 answers

Android and Google fusion tables

I want to build a map view with a google fusion table layer, bringing data from a public table. I'm searching for tutorials, infos ... Someone can give me some advises about how I can proceed? Thanks :)
Massimo Variolo
  • 4,669
  • 6
  • 38
  • 64
3
votes
5 answers

Trouble with Get request from Google Fusion tables

I've been having trouble querying the Google Fusion Tables using an HTTP request. If I paste the URL from the query below in the browser, it comes back with a commas separated list. However, when I do this with the .get function as below, nothing…
bolo
  • 31
  • 1
  • 2
3
votes
0 answers

Google Fusion Table: Unauthorized with api key

I'm trying to create and query a fusion table. So what I did: I created a new fusion table in google drive Created a new api key Set the fusion table to public (using share button) Now I'm using Advanced REST client executing this request: GET…
Maarten Kieft
  • 6,806
  • 3
  • 29
  • 34
3
votes
1 answer

How to link a form output to a google fusion table query using javascript

I am trying to create a html form which will display a google fusion table depending on the users inputted county. Here is the code I currently have which displays the results for county louth. Sample form
3
votes
0 answers

Changing z-order of Google Maps layers

I have 3 layers on a Google Maps map. The first is a set of polygons. The second is a set of markers. The third is a heatmap. I'm using the following script libraries
bugmagnet
  • 7,631
  • 8
  • 69
  • 131
3
votes
1 answer

app inventor 2 using a private fusiontable

I am creating an app in ai2 that connects to one of my fusion tables as a high score datastore. If I use traditional Oauth2 flow then each user would be presented with an oauth login for their fusiontable, which is not what I want. I have set up a…
khany
  • 1,167
  • 15
  • 33
3
votes
1 answer

can Google geocode NUTS area codes?

I tried to geocode NUTS codes in Google Fusion Tables (using some Maps API in the background), but despite receiving no error messages or warning, it did not recognize these spatial units. NUTS area codes are fairly standard, even official in…
László
  • 3,914
  • 8
  • 34
  • 49
3
votes
1 answer

Request-URI Too Large (Fusion table layers Google Maps)

I am trying to put the fusion table layer data on my Google Map but I am getting an error Request-URI Too Large. I searched a lot but couldn't find how can I make it work either by POST method or something else. The problem is the where clause but I…
Dead Man
  • 2,880
  • 23
  • 37
3
votes
2 answers

Google Fusion Tables from iOS app / Objective-C?

I started developing ios application that integrate with google fusion tables. I searched both google gdata and google client libraries but they do not offer fusion tables. On google groups they say "gtm-http-fetcher and gtm-oauth2 libraries could…
asaki
  • 45
  • 3
3
votes
2 answers

Long/Lat from KML Fusion Tables export - any way?

Is there a way to get the long/lat coordinates from a Fusion Tables KML export? This is a post about it, but the process doesn't work anymore: http://mickschroeder.com/2011/03/fusion-tables-export/
user2583766
  • 31
  • 1
  • 3
3
votes
2 answers

Force.com OAuth 2.0 JWT to Google Service Account Fusion Table API 400 Bad Request Invalid_Grant

What I am trying to accomplish is to be able to upload data from Force.com into a Google Fusion Table held under the service account that has already been set up so that a network graph visualization can be generated based on that data and shown in…
3
votes
1 answer

Can I freeze the header row of a fusion table

I've got data from 50 states that I'd like to display in the table format (I've also got it mapped) but the table height is so large that you can't scroll down without losing the header row. Since there's 13 columns with yes/no information, once you…
Robert1er
  • 81
  • 5
3
votes
1 answer

adding data to fusion tables using an url in a browser

I have been trying to read/write from/to a fusion table directly from my browser using different urls. For Reading a use "https://www.googleapis.com/fusiontables/v1/query?sql=SELECT * FROM WHERE ID = '1' &key=" This works well and i can read data…