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

Setting the style for multi-layer fusion table Google map

Is there a method for setting the default style on a multi layer fusion table map, currently the API just uses the default style which is a Red Fill and Black Border line which is quite annoying. The code I currently have for single layer is working…
Zack
  • 11
  • 3
-1
votes
1 answer

programmatically remove default polygon lines

I am trying to figure out out to remove all of the polygon lines that appear once a fusion table layer is brought into a Google map. I know on the fusion table side can do this by going into the "Change Map" and "Change Feature Style" by setting the…
Ian
  • 15
  • 1
  • 5
-1
votes
1 answer

How to automatically generate id in Fusion tables

I am using Google Apps Script to do CRUD for my Fusion Table in Google Drive. I tried to find a way to let Fusion table handle my primary key which is just a number right now but no luck so far. Do I have to write code to generate key or is there a…
Howdy
  • 557
  • 7
  • 12
-1
votes
1 answer

trigger a marker click

I am using a Fusion Table and the Google Map API and would like to know if I can automatically trigger an event when a marker is placed. Currently I can click on the map and I get a customized infowindow, but I want to do the same thing but after…
Ian
  • 15
  • 1
  • 5
-1
votes
2 answers

How can I generate an error message when text search of Google Fusion Table gets zero results?

I have a map that's internal so I can't show it, but this example shows the kind of text search that I have: http://gmaps-samples.googlecode.com/svn/trunk/fusiontables/change_query_text_input.html When the user searches for something with zero…
jumpyg
  • 3
  • 3
-1
votes
1 answer

Combine InfoWindow data when overlapping polygons clicked?

Is it possible to combine all polygon data (description & name) at a specific point into one InfoWindow when clicked? I have some overlapping polygons and the InfoWindow only displays the data from the topmost one. It seems this should be possible…
-1
votes
1 answer

maxZoom and styled Google Fusion map

When I use a styled Google map, it ignores the maxZoom and minZoom I have set, deleting the zoom bar altogether. The zoom limits work if I don't include the StyledMapType. Am I missing something? Or are maxZoom/minZoom not supported with a…
-1
votes
1 answer

select st_distance as 'distance' not working in google fusion table

ST_DISTANCE AS 'distance' not working on below code: var query = "SELECT 'Coordinates' as 'Coordinates', " + "'Lender_Name' as 'Lender_Name', " + "'ZIP_Code' as 'ZIP_Code' , " + "ST_DISTANCE('Coordinates', 'LATLNG(" + lat + " " + long +…
-1
votes
1 answer

Google fusion table where clause

I'm developing an app which allows user to select the region on the map. On click of the map I'm storing that region's state and country in two separate arrays. I want to apply a query on fusion table which gives me the data for only selected states…
-1
votes
2 answers

Google Charts with Spreadsheets

How can I use the data in google spreadsheets to make a google chart? I tried the examples linked below but it didn't work for me. I would like to put the charts into a website by putting the code in the html. I want to use the Pie Charts mostly,…
-1
votes
1 answer

Google Maps polygons hover gap on Firefox

I created a map where some polygons are downloaded from a Fusion Table and drawn on the map. http://jsfiddle.net/2wej9smf/135/ http://codepen.io/massic80/pen/WvgKym google.maps.event.addListener(country, 'mouseover', function(e) { …
-1
votes
1 answer

with fusiontables I want to show our delivery area's in google maps. But some country codes are not showing correct. How can I change this?

I tried to change the columns already, but that hasn't worked. I changed the GB to UK, but that doesnt work. A sample of a country which is showing in the US, but is actually a GB delivery. To City: Neewport NP204HH GB To PostalCode: Neewport To…
-1
votes
1 answer

KML infowindows glitch when combined w Fusion Tables layers in a Google Map

I have a glitch with my interactive mapping project that I've been unable to resolve. The map has several layers, a couple using data from KML files and the others using Fusion Tables files. The problem is that the infowindows launched by the KML…
wendysmith
  • 67
  • 2
  • 9
-1
votes
1 answer

Using Javascript to extract the Latitude and Longitude from a kml field in a Google fusion table

I have a google fusion table that I am inserting data into that contains kml. I need to query (or extract) the latitude and longitude from the kml column. When I query the table I get data returned in this format: { "kind":…
fillostein
  • 55
  • 2
-1
votes
1 answer

Toggle custom legend on google maps using a radio button

I created a legend for a google map using the following code from Google Developers Website Fusion Tables Layer Example: Legend