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
-1
votes
1 answer

Google Fusion Maps Info Window Dynamic Templating

I'm doing some web scraping with Python and the last step is to use Google Fusion maps, but as somebody who has never touched any CSS styling before, I have no idea how to do something probably incredibly simple: hide a column title in the info…
SpicyClubSauce
  • 4,076
  • 13
  • 37
  • 62
-1
votes
2 answers

Hide specific markers in Fusion Layer of Google Map

I am using a Fusion Layer to display markers in a google map. I want to use buttons that will hide specific marker types on the map. For example, a red button that will only hide the red markers and a green button that will only hide the green…
-1
votes
1 answer

Fusion table to be updated from google spreadsheet but not sync. and should avoid duplicates

Have a Google spreadsheet which is regularly updated with daily sales data we need only current two months data maximum at any give point of time in spread sheet rest needs to be backed up in fusion table and removed from spread sheet. Can any one…
Kanted
  • 169
  • 1
  • 12
-1
votes
1 answer

label near icon in fusion tables map

I created a map showing some restaurant in a particular area. I used fusion tables as data entry and the code generated to display this map: here is the link I tried with no luck to add a text label with the name of the restaurant near the placemark…
Jugo Tour
  • 1
  • 1
-1
votes
1 answer

How to query multiples 'where' in Fusion Tables?

I have two "where" in fusion table, so i wanted to run the code in a single where clause. query: { select: 'geometry', from: 'tableid', where: "direction = 'ida'", where: 'ST_INTERSECTS(geometry, CIRCLE(LATLNG(-8.754864219111248,…
user35280
  • 3
  • 1
  • 3
-1
votes
1 answer

Get a tooltip by mouseover with Fusion Tables

As a beginning self-made amateur programmer I’m currently trying to get some things done with Google Fusion Tables. I made a map with markers and got the HTML of that map. But I wish to add the function of a tooltip by a mouseover of a particular…
MNC2015
  • 1
  • 2
-1
votes
1 answer

code to create a geometry kml element with coordinates

I have a fusion table : 1hxNUdyIjqYRyv9wFhLcNzGyC-a8lcOlrPFEVB7oR with address. I want to use marker cluster. For this, I need to get coordinates of this address. It's possible to create kml geometry ? I've try to download my table in kml and open…
-1
votes
1 answer

How do I put a Google Chart inside Fusion Table Map's Info Window?

I want to put a Google Chart inside the info window of the Fusion Table's Map. Link to the code of Google Chart: https://google-developers.appspot.com/chart/interactive/docs/quick_start I inserted that code inside the info window custom layout but…
-1
votes
1 answer

How do I make markers appear on a Google Fusion Tables layer using GMaps JS API?

I've got a Google Maps object with a Fusion Tables layer on it. I'm trying to make it so that when you click the FT layer, you'll see a marker where you click. I've written code that gets the latitude and longitude of where you click. I've also…
-1
votes
1 answer

How do I make this script fire when I click a Fusion Tables layer?

I have a Fusion Table layer on my map. I want to make it so that when I click on the Fusion Table layer, this script fires. My code so far: gmap = new…
-1
votes
1 answer

Fusion table query - show only markers from range

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…
PiotrK
  • 357
  • 3
  • 13
-1
votes
1 answer

Google Maps with Fusion Table markers not showing in Chrome

I'm using Fusion tables to populate a Google Map. It works fine on IE11 and Firefox but the markers do not show up in Chrome (latest version). I am getting an error in the console: 'Attr.textContent' is deprecated. Please use 'value' instead. var…
-1
votes
2 answers

Result list is not being displayed (google-fusion-tables template derek)

I am trying to make a searchable map with the great template Derek made. I have tried everything but somehow I do not manage to get my result list to display. Div is visible but no results. Hope someone can help me. I followed these…
-1
votes
1 answer

How do I set the center of a Google Fusion Table Map?

I am using the following sample code to embed a Google Fusion Tables map: function initialize() { var map = new google.maps.Map(document.getElementById('map-canvas'), { center: new google.maps.LatLng(37.4, -122.1), …
Tim
  • 2,667
  • 4
  • 32
  • 39
-1
votes
1 answer

How to Draw dynamic polygons by user - once the map is generated from a fusion table?

I searched about fusion tables documentation, but i didn't find how to draw a polygon by the user dynamically once the map is generated by using fusion tables. Can any one please help me regarding this.