I’m using the Google Maps Geolocation API to obtain a country code giving the coordinates. But for some coordinates the filter I use in result_type doesn’t get the country code
Examples: For GB - United Kingdom
https://maps.googleapis.com/maps/api/geocode/json?latlng=51.507351,-0.127758&result_type=country&key=[KEY] -> doesn’t return any result
but if I use the result_type=country|political https://maps.googleapis.com/maps/api/geocode/json?latlng=51.507351,-0.127758&result_type=country|political&key=[KEY] -> it returns OK
For DE - Germany" https://maps.googleapis.com/maps/api/geocode/json?latlng=52.520007,13.404954&result_type=country&key=[KEY] - > just using the result_type=country works OK ]
Calling the API with no filter on result_type works but I have to iterate for every address
Did anyone have similar behavior?