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
4
votes
2 answers

Return 3 closest locations to a users location (geolocation) and list those locations for them

Background: I am working on a website/app built with HTML/CSS/Javascript that will use geolocation (Google Maps API) to find a users location (geolocation) and return them, for example, the top 5 closest water parks to them at that location they are…
4
votes
1 answer

How do I use a GTFS feed?

I want to use a GTFS feed in Google Maps, but I don't know how to. I want to display the buses available from a route. Just so you know, I'm planning on implementing the Google Map I make in a Visual C# application.
user2481787
  • 143
  • 2
  • 12
4
votes
1 answer

Fusion table spatial query

It is possible to search for location with in a bounding box in fusion table as: SELECT * FROM WHERE ST_INTERSECTS(, RECTANGLE(LATLNG(B, Y), LATLNG(A, X)) Now my question is, is it possible to search the location within a…
mpsbhat
  • 2,733
  • 12
  • 49
  • 105
4
votes
1 answer

iphone post to google fusion table without login

I need my iphone app to allow users to post to a google fusion table without entering a username and password. currently I use google client login with the password hard coded into the app. Obviously this is a poor solution, but I cannot find how…
David
  • 305
  • 2
  • 10
4
votes
1 answer

Fusion Tables + Google Maps API, Remove infowindows / cards / balloons?

I've implemented a fusion table map to create country fills for my google map... however I really need to get rid of the infowindows / cards that pop up when you click a country. I tried to just format the card so that there's no actual content, but…
4
votes
2 answers

How to get OAuth2 access token with Google API PHP client?

I'm trying to get an OAuth access token to import some data into the fusion table. I'm trying to use the Google API PHP client. I have created a service account for that purpose, and am using the code, mostly from the serviceAccount…
Septagram
  • 9,425
  • 13
  • 50
  • 81
4
votes
1 answer

Huge where clause

I have a problem with data visualization from fusion table. For example I have the next code: function initialize() { map = new google.maps.Map(document.getElementById('map_canvas'), { center: new google.maps.LatLng(38.71980474264242,…
oaleynik
  • 655
  • 5
  • 19
4
votes
2 answers

403 error when making an SQL query for a Fusion Table

I've been trying to migrate my project to new API, but I get the following error when trying out an SQL query such as the following: https://www.googleapis.com/fusiontables/v1/query?sql=SELECT * FROM…
Maarten
  • 6,894
  • 7
  • 55
  • 90
4
votes
2 answers

How to toggle a layer on/off using Google Maps API v3 and Fusion Tables?

I am trying to make a map with multiple fusion table layers. Each fusion table layer will show the number of cartel-related homicides in a particular year (including the sum of all years). Since each layer has the same geometry, I need to let the…
4
votes
2 answers

Accessing individual cell value from Google Fusion Tables on Click event

I am using Google Fusion Tables to make a map to show the number of scholarly journal articles that have been published by people at my university regarding global health. Currently, a popup bubble appears when you click on a country/polygon, with…
3
votes
4 answers

Basic Fusion Tables API: How do you do an update query correctly?

i am referring to an Fusion Tables API Example „Update Query“ https://developers.google.com/fusiontables/docs/samples/change_query It's is about a drop-down menu which alters the content of the layer upon the map. I tried to rebuild the whole…
user1260086
  • 31
  • 1
  • 9
3
votes
1 answer

Invalid Credentials Error when passing Oauth 2.0 Access Token to Fusion Tables API in PHP

I've reached my frustration point and am asking for help. I spent all weekend learning new things in order to try and figure out how to use the goolge fusion tables API which requires authentication via Oauth 2.0. I started developing in php…
Scott Kennedy
  • 45
  • 1
  • 5
3
votes
1 answer

Google Fusion Map: Circle blocking layer click events, javascript

The following code queries a Google fusion table based on a circular map region. The center of the circular map region is determined by where a user clicks and the radius is determined by selection from a from a drop down menu. I have a listener…
3
votes
1 answer

.on click event not firing inside Gmaps Infowindow with Fusion Tables info

Using Fusion Tables and GMaps(v3) with Jquery(v1.7.1). Gmaps displays a layer using Fusion Tables data. The InfoWindow is populated using Fusion Tables information (configured in the Google Docs -> Fusion Table -> Configure Info Window…
Josh
  • 3,385
  • 5
  • 23
  • 45
3
votes
2 answers

fusion table insert or update from javascript

My purpose is to plot data from fusiontable into google map using FusionTablesLayer and to insert or update the fusion table with user created information from map. I am not able to locate how can I do that from javascript. Is not it possible ? In…
user644745
  • 5,673
  • 9
  • 54
  • 80
1 2
3
89 90