I am trying to create a map with Google Maps API V3 with data being supplied by a Fusion Table. My problem is this: The markers in the map I created do not match up with the map that the Fusion Table created. My API map has about half of the markers out of place or missing.
Here are screenshots of the Fusion Table map and the API map for comparison:
I have confirmed that the column used for the location data is set to the correct type 'Location' and that the table has been geocoded in Fusion Tables.
I also have a jsFiddle created so you can take a look at my code.
Update
Turns out that I'm an idiot
In the FusionTablesLayer query I wrote the column selection like so: "'Location'". That was one pair too many of quotation marks. I changed it to 'Location' and everything is working properly.
I left this question up instead of deleting it for posterity sake. Don't make the same mistake I did.