I am building a web app where users can search for places via the Google Maps API and then enter those places locations (Lat, Lng) in a Google Fusion table. Those location entries are then displayed on a different "Navigation" map.

My problem is that in order for the location entry to be displayed on the "Navigation" map is must be geocoded. Thus far the only way I can see to do geocode a fusion table entry is maunally on the file menu of my Fusion Tables account. Can any one suggest away to automate this. Preferably in JavaScript before the location is entered into the fusion table.

Thanks!

link|improve this question

62% accept rate
feedback

1 Answer

You can use the Geocoding API, but you need to be mindful of the Terms of Service, which has restrictions around storage of data received from the API.

link|improve this answer
What part of the Geocoded response should I add to the fusion table? I am already adding Lat, Lng coordinates and they still come up highlighted yellow in the table indicating that they have not been geocoded. – user996035 Feb 13 at 3:26
The problem I was having was that the way I was parsing coordinates put parenthesis around them and the fusion table wasn't recognizing it as a coordinate. Coordinates inserted into a fusion table should be of the form "x,y" NOT "(x,y)"...with out the quotes of course. – user996035 Feb 15 at 3:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.