DerekYves / placement

Drivetime, distance, and geocoding in R via the Google Maps API
Other
21 stars 3 forks source link

Places search fails if radar = TRUE #8

Open kidwellj opened 6 years ago

kidwellj commented 6 years ago

The following works without error:

google_synagogues <- google_places(search_string = NULL, radar = FALSE, location = c(52.480682,-1.887292), place_type = "synagogue", radius = 50000, key = api_key)

Conversely, if I swap to the following, the search fails and produces an error:

google_synagogues <- google_places(search_string = NULL, radar = TRUE, location = c(52.480682,-1.887292), place_type = "synagogue", radius = 50000, key = api_key)