I have a fusion table populated with addresses, not lat/lng coordinates. Google has done the geocoding for me so I don't have access to the geocoded data. This fusion table is one layer on my map, and it shows markers for each address.
I'm using the DrawingManager to allow the user to draw a polygon. Once the polygon is completed (i.e. in the polygoncomplete callback) I would like to be able to determine which of the markers from the fusion table are located within the polygon.
If I had access to the coordinates then I could do this with ST_INTERSECTS, but I don't have access to it. And since it is already geocoded by Google I don't see a reason to make additional queries using the geocoding API to get the coordinates.
So is there a way to determine which markers from the fusion table are within a polygon?