1

尝试在 r 中使用 googleway 包列出指定位置半径内的退休村。获取雷达参数现在已弃用错误消息,因此结果为空。

library(googleway)
a <- google_places(location = c(-36.796578,174.768836),search_string = "Retirement Village",radius=10000, key = "key")
a$results$name
```

#Would expect this to give me retirement villages within 10km radius, instead get error message

```> library(googleway)
> a <- google_places(location = c(-36.796578,174.768836),search_string = "Retirement Village",radius=10000, key = "key")
The radar argument is now deprecated
> a$results$name
NULL
```
4

1 回答 1

2

您编写的代码没有任何问题,您收到的“消息”不是错误,而是一条消息,但它可能应该被删除 - 我在这里提出了删除它的问题

a <- google_places(
  location = c(-36.796578,174.768836)
  , search_string = "Retirement Village"
  , radius = 10000
  , key = "key"
  )

place_name( a ) 

# [1] "Fairview Lifestyle Village"                       "Eastcliffe Retirement Village"                   
# [3] "Meadowbank Retirement Village"                    "The Poynton - Metlifecare Retirement Village"    
# [5] "The Orchards - Metlifecare Retirement Village"    "Bupa Hugh Green Care Home & Retirement Village"  
#  [7] "Bert Sutcliffe Retirement Village"                "Grace Joel Retirement Village"                   
#  [9] "Bupa Remuera Retirement Village and Care Home"    "7 Saint Vincent - Metlifecare Retirement Village"
# [11] "Remuera Gardens Retirement Village"               "William Sanders Retirement Village"              
# [13] "Puriri Park Retirement Village"                   "Selwyn Village"                                  
# [15] "Aria Bay Retirement Village"                      "Highgrove Village & Patrick Ferry House"         
# [17] "Settlers Albany Retirement Village"               "Knightsbridge Village"                           
# [19] "Remuera Rise"                                     "Northbridge Residential Village" 

您确定在 Places API 上启用了您使用的 API 密钥吗?

于 2019-08-07T22:46:59.043 回答