尝试在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
```
答案 0 :(得分:2)
您编写的代码没有任何问题,并且您得到的“消息”不是错误,它是一条消息,但是可能应该将其删除-我做了一个issue to remove it here
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"
您确定所使用的API密钥已在Places API上启用吗?