I've been working on a project that requires me to get the address of a location from the name of the venue.
I'm doing this through Google's Geocoding API. However I see that sometimes, the wrong address and coordinates are returned. Searching for the location on Google returns the correct address.
eg: 'Queen Elizabeth Theatre - Toronto'
http://maps.google.com/maps/api/geocode/xml?address=Queen%20Elizabeth%20Theatre%20Toronto
What I would like is, '190 Princes' Blvd, Toronto, ON M6K 3C3', as per Google search.
This thread, Google Geocoding returning totally different result from Google Map, indicated that to get the right address I'd have to use Places API.
But for Places API to work I need to submit additional parameters other than just the name of the venue. Like approx. coordinates, and range of search, which I don't have (unless I get it with Geocoding API and then guess a search radius).
So what is the best way to get it?
Of course, I can scrape the page after searching for the location, but isn't scraping against Google's TOS?