I'm using the Google Maps API Geocoding to convert address to latitude/longitude, but it's not returning the correct values.
For example, with this address: 15994 US Hwy 431, Headland, AL 36345
Using this endpoint:
The Google Maps Geocoding API is returning (Which is not correct):
"location": { "lat": 32.8365989, "lng": -84.8436105 },
However, if I search for that address in the google maps application it's pointing the correct address (it's changing automatically in the search bar to 15994 US-431 after pressing enter):
After testing a while, I discovered that if I change "Hwy" for "Highway" it does return the correct address. Is there any way to fix this?
Is there any way to make it understand abbreviations? Like Hwy for example

