I have a problem visualizing data from a fusion table. For example, I have the following code:
function initialize() { map = new google.maps.Map(document.getElementById('map_canvas'), { center: new google.maps.LatLng(38.71980474264242, -121.552734375), zoom: 5, mapTypeId: google.maps.MapTypeId.ROADMAP }); fusionLayer = new google.maps.FusionTablesLayer({ query: { select: 'column', from: 'tableId', where: "a huge where clause" }, map: map }); }
As you can see, I have the "huge space" option in the "where" option. But during map API initialization, google makes many GET requests for URIs like this:
http://mt1.googleapis.com/mapslt?hl=en-US&lyrs=ft:tableId|sc:'column'|sg:{huge_where_clause}&x=6&y=13&z=5&w=256&h=256&source=apiv3&token=74442
All of these requests are not executed with status code 414: Request-URI Too Large.
So my question is: is it possible to query a fusion table with huge suggestions or use POST requests instead of GET?
source share