I\'m trying to get the coords for these POI but Google Geocoding returns wrong coords, the same coords for both addresses. In the Google Maps they work fine. How should I co
They are both resolving to the same ADDRESS - since only a name is given instead of a street address. Try this:
https://maps.googleapis.com/maps/api/place/queryautocomplete/json?input=Paleo+Enetiko+Frourio,+Corfu+491+00+Greece&key=YOUR_API_KEY
That returns:
"description": "Paleo Enetiko Frourio, Corfu, 491 00, Greece",
"place_id": "ChIJc8Bxy-ddWxMRhASx_pNTDTU",
And then calling with the place_id:
https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJc8Bxy-ddWxMRhASx_pNTDTU&key=YOUR_KEY_HERE
That'll do the trick.