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
66
votes
3 answers

google maps v3 marker info window on mouseover

I have scoured stackoverflow and other forums including the google maps v3 api docs for an answer but I cannot find how to change the event that fires the marker info window from click to mouseover in the files I am working with. I am working with…
36
votes
1 answer

Correct redirect URI for Google API and OAuth 2.0

I am making an application with the Google Maps API. I want to be able to have one person on a computer, watch what another person has edited to a map. I am thinking of passing information of the map to a Google Fusion Table. The other person will…
user1454212
  • 421
  • 1
  • 5
  • 7
20
votes
3 answers

How to plot historic country data (USSR, East Germany, etc) in GoogleMaps?

I'm building a series of infographics using Fusion Tables to show yearly data for countries, each nation represented by a pin on Google's map, the data values visible when you click on the nation's pin. I've got the contemporary values working…
18
votes
1 answer

FusionTables private table with OAUTH2

Good pic by Tim Rosenberg that shows exactly how OAUTH2 work's: I'm kind a lazy to even start looking on this 2 files and test so I searched for easyest way to 1.get token 2.access with that token with help of gwt-oauth2 put it into index.php head…
Cody Tookode
  • 862
  • 12
  • 22
17
votes
1 answer

Sending POST request using com.google.api.client.http.HttpRequest object in Google API

I have to send POST request with following structure. POST https://www.googleapis.com/fusiontables/v1/tables Authorization: /* auth token here */ Content-Type: application/json { "name": "Insects", "columns": [ { …
17
votes
1 answer

Google maps infowindow events on open

Hi I am using google fusion tables and google maps, the thing is that my markers show up correctly, but I want to insert some images into the inforwindow. So the thing is that I do queries to find the location of those markers, and those markers…
Juan Diego
  • 1,396
  • 4
  • 19
  • 52
13
votes
2 answers

Generating heatmap layer for milions of points

I'm using heatmap layer from Google Maps to display a heatmap, however, I now have too many points and it stopped working, because browser cannot handle it anymore. I've found that they provide Fusion Tables, but they're also limited: to 100k rows,…
Makalele
  • 7,431
  • 5
  • 54
  • 81
11
votes
1 answer

What are the technical limitations when using Fusion Tables?

I am looking for information regarding the technical limitations when using Fusion Tables : - - how many rows can be stored in a Fusion Table - how many queries (read/write) can be run simultaneously against a Fusion Table. I could not find any info…
Pierre Denoeud
  • 111
  • 1
  • 1
  • 3
9
votes
1 answer

Google Maps - FusionTablesLayer to Polygon

I'm using Google Maps API and jquery-ui-maps (this questions has nothing to do with the plugin which is working great). I've created a FusionTablesLayer with all countries except Mozambique. The user could place a marker and reposition it. I'm…
7
votes
1 answer

using ROWID and asterisk in google fusion tables API SELECT statement

I'm trying to get the ROWID as well as all the data back for each row in a Google Fusion Tables. This select statement: SELECT *, ROWID FROM [tableID] results in this error: "domain": "fusiontables", "reason": "badQueryCouldNotParse", "message":…
noizy
  • 152
  • 2
  • 12
6
votes
2 answers

Adding thousands of Markers Google Map API V3

I am currently putting together a demo application that needs to show 28,000 markers on a map without using any type of clustering. The problem is, adding the marker to the map for that many takes so long that the browser crashes! Here is the…
6
votes
4 answers

Marker Clustering - Fusion Table Layer - Google Maps v3

Is there a way to get marker clustering (ie makerclusterer) to work with a Fusion Table layer? It seems that you have to assign markers to markerclusterer yet when using a fusion table layer, Google is handling the markers/infowindows? Still trying…
RonnieT
  • 2,193
  • 4
  • 32
  • 43
6
votes
2 answers

What causes maps.googleapis.com/maps/vt to return a 400 error?

I am currently using a Google Map with a Fusion Table Layer. With this map, I make AJAX queries that populate the map and a list with results. Recently there's been an issue with the Google Map API response coming back as a 400 "Malformed Request"…
user992394
6
votes
1 answer

Calculate Distance between points in fusion tables

My programming knowledge is very limited and I'm working on a college project that includes programming. What I want to do is a map, that shows your current location and the locations of recycling points. I already did the current location part,…
6
votes
6 answers

Fusion Tables: Why do I keep getting a "400 Bad Request" error when trying to update a table style via Ruby's RestClient gem

I'm trying to update a style for one of my Fusion Tables by using the Ruby gem RestClient. Here's my code: require 'rest_client' tableId = '' styleId = '' key = '
user1626730
  • 3,783
  • 5
  • 20
  • 24
1
2 3
89 90