Hi
I am trying to use the Places+ API to search for places. It seems to
me the API didn't consume the latitude and longitude parameters I
passed in
For example, with
https://api.hyperpublic.com/api/v1/places?lat=47.61lon=-122.33limit=20
(client_id and client_secret removed)
what I got are some places in Los Angeles area, while the coordinate
47.6,-122.33 is in Seattle:
[{"locations":[{"name":"5301 Beach Blvd, Buena Park, CA
90621","lon":-117.996940612793,"city":"Buena
Park","country":"US","postal_code":"90621" ...
I found out, however, I can add a "location" parameter to force the
results to be in Seattle:
https://api.hyperpublic.com/api/v1/places?lat=47.61lon=-122.33limit=20&location=seattle
But again results doesn't seem to change if I change the latitude/
longitude.
Interestingly, if I remove all the parameters (except client_id and
client_secrete) and just call
https://api.hyperpublic.com/api/v1/places
What I got are exactly the same as the results from the first query,
which are places in LA.
Are latitude and longitude being used at all, or is there anything
wrong with the way I call the API?
Thanks
HK