5
我正在嘗試爲當地的德國多特蒙德寶馬修理設施。根據Google Maps,位置51.48488,7.4687013附近有一位寶馬經銷商。Google鄰居位置搜索
以下要求上述經銷商一致: maps.googleapis.com/maps/api/place/nearbysearch/json?location=51.4842556,7.474081 &半徑= 20000 &語言= EN &名= BMW &鍵= API_KEY
{
"name": "BMW Niederlassung Dortmund",
...,
"types": [
"car_repair",
"car_dealer",
"store",
"point_of_interest",
"establishment"
],
...,
"vicinity": "Nortkirchenstraße 111, Dortmund"
}
但是,如果我是對上述經銷商不匹配的類型(類型= car_repair)更具體的: maps.googleapis.com/maps/api/place/nearbysearch/json?location = 51.4842556,7.474081 & radius = 20000 & language = en &名= BMW &類型= car_repair &鍵= API_KEY
我敢肯定,第二次請求匹配的過去所提到的經銷商...
有什麼建議?