在 ggmap 中使用 "register_google" 注册 google 地图 API 时出现问题
problem registering google map API using "register_google" in ggmap
我知道以前有人问过这个问题,但我还没有找到答案。我正在尝试在 ggmap
函数中显示城市地图。似乎自 2018 年以来,我们必须使用 google API
代码进行注册,如下所述:
https://cran.r-project.org/web/packages/ggmap/readme/README.html
或
https://rdrr.io/cran/ggmap/man/register_google.html
我尝试遵循这些示例并使用了以下代码:
library(ggmap)
register_google(key = "xxxxxxxx-RXRy215NIV1yyyyyyyyyyyyyyyyy")
geocode("mannheim")
我得到的结果是这样的:
Source : https://maps.googleapis.com/maps/api/geocode/json?address=mannheim&key=xxxx
Warning: Geocoding "mannheim" failed with error:
This API project is not authorized to use this API.
# A tibble: 1 x 2
lon lat
<dbl> <dbl>
1 NA NA
知道如何解决这个问题吗?我最近通过 google 帐户生成了 API,它应该是有效的。
我知道以前有人问过这个问题,但我还没有找到答案。我正在尝试在 ggmap
函数中显示城市地图。似乎自 2018 年以来,我们必须使用 google API
代码进行注册,如下所述:
https://cran.r-project.org/web/packages/ggmap/readme/README.html
或
https://rdrr.io/cran/ggmap/man/register_google.html
我尝试遵循这些示例并使用了以下代码:
library(ggmap)
register_google(key = "xxxxxxxx-RXRy215NIV1yyyyyyyyyyyyyyyyy")
geocode("mannheim")
我得到的结果是这样的:
Source : https://maps.googleapis.com/maps/api/geocode/json?address=mannheim&key=xxxx
Warning: Geocoding "mannheim" failed with error:
This API project is not authorized to use this API.
# A tibble: 1 x 2
lon lat
<dbl> <dbl>
1 NA NA
知道如何解决这个问题吗?我最近通过 google 帐户生成了 API,它应该是有效的。