WAI
Status Update
Comments
ca...@google.com <ca...@google.com> #2
Thanks for your suggestion! We are currently evaluating this request, but do not have any plans to implement it at the moment. Please star to add your vote and receive further updates, and feel free to add any comments to discuss your use case.
ha...@gmail.com <ha...@gmail.com> #3
I've transitioned from this team. Thanks!
ca...@google.com <ca...@google.com> #4
Thank you for the information.
We have logged this issue internally. Please note that we cannot give you any timelines, but you can star the issue to get notifications.
ca...@google.com <ca...@google.com> #5
Thank you for waiting.
Upon checking, the complete address for the query is 7276 Farm TO Market Road 14 TYLER TX 75706
. Please note that the parameter address
is the street address or plus code that you want to geocode. You should specify addresses in accordance with the format used by the national postal service of the country concerned
.
Sample request:
Result:
formatted_address: "7276 FM14, Tyler, TX 75706, USA",
place_id: "ChIJ162eHBrPSYYR1EWv91rTe7Q",
types: [
"premise"
]
Description
When querying the Google Geocoding API with specific addresses in Tyler, TX, the API returns incorrect latitude, longitude, and formatted addresses pointing to Hawkins, TX instead of Tyler, TX.
**Steps to Reproduce:**
Send a request to the Google Geocoding API with the address "7276 FARM TO MARKET 14 TYLER TX 75706".
as shown below:
import requests
url = "
params = {
"address": "7276 FARM TO MARKET 14 TYLER TX 75706",
"key": "API_KEY"
}
response = requests.get(url, params=params)
print(response.json())
Compare the API response with the result from Google Maps for the same address.
Expected Behavior: The API should return the correct latitude, longitude, and formatted address corresponding to Tyler, TX.
Actual Behavior: The API returns:
Formatted Address: 7276 FM 14, Hawkins, TX 75765, USA
Latitude, Longitude: 32.6066989, -95.2069308
Correct Result from Google Maps:
Formatted Address: 7276 FM14, Tyler, TX 75706, United States
Latitude, Longitude: 32.392050367364995, -95.28384235427431
Additional Information: This issue is also observed with the following addresses:
7032 FARM TO MARKET 14 TYLER TX 75706
7553 FARM TO MARKET 14 TYLER TX 75706
7234 FARM TO MARKET 14 TYLER TX 75706
7581 FARM TO MARKET 14 TYLER TX 75706
6503 FARM TO MARKET 14 TYLER TX 75706
5497 FARM TO MARKET 14 TYLER TX 75706
4879 FARM TO MARKET 14 TYLER TX 75706
Please investigate and resolve this discrepancy.
Thank you