尝试在 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
```