Google Places Nearby Search
Asked Answered
M

1

6

I'm trying to fetch a local BMW repair facility for Dortmund, Germany. According to Google Maps, there is a BMW dealer nearby to location 51.48488,7.4687013.

The following request matches the above mentioned dealer: maps.googleapis.com/maps/api/place/nearbysearch/json?location=51.4842556,7.474081&radius=20000&language=en&name=BMW&key=API_KEY

{
    "name": "BMW Niederlassung Dortmund",
    ...,
    "types": [
        "car_repair",
        "car_dealer",
        "store",
        "point_of_interest",
        "establishment"
    ],
    ...,
    "vicinity": "Nortkirchenstraße 111, Dortmund"
}

However, if I be more specific on the type (type=car_repair) the above mentioned dealer isn't matched: maps.googleapis.com/maps/api/place/nearbysearch/json?location=51.4842556,7.474081&radius=20000&language=en&name=BMW&type=car_repair&key=API_KEY

I'm pretty sure the second request matched the mentioned dealer in the past...

Any suggestions?

Muscid answered 22/3, 2016 at 13:42 Comment(0)
M
4

After 12 days, this problem seems to be fixed.

Muscid answered 4/4, 2016 at 8:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.