Reputation: 8320
Google Geocode API is not returning result for certain locations. One of them is
Perkins Restaurant & Bakery, East Fowler Ave, Tampa, FL
Below is link of result API returns for this location.
Has anyone faced this issue? I don't provide components
parameter so search result should not be restricted to any geographical area.
Upvotes: 0
Views: 314
Reputation:
"You need to replace & in the address argument by its URL-encoding %26"
See https://stackoverflow.com/a/6979738/189804
With the ampersand:
{
"results" : [],
"status" : "ZERO_RESULTS"
}
With %26 encoding:
{
"results" : [
{
"address_components" : [
{
"long_name" : "2301",
"short_name" : "2301",
"types" : [ "street_number" ]
},
{
"long_name" : "East Fowler Avenue",
... and so on ...
Upvotes: 1