在ggmap中使用“register_google”注册谷歌地图API的问题
Posted
技术标签:
【中文标题】在ggmap中使用“register_google”注册谷歌地图API的问题【英文标题】:problem registering google map API using "register_google" in ggmap 【发布时间】:2021-07-13 03:30:44 【问题描述】:我知道以前有人问过这个问题,但我还没有找到答案。我试图在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,应该是有效的。
【问题讨论】:
【参考方案1】:您必须启用该 API:地理编码服务。
https://www.loopeando.com/google-maps-platform-rejected-your-request-an-internal-error-was-found-for-this-api/
【讨论】:
***.com/questions/32994634/…以上是关于在ggmap中使用“register_google”注册谷歌地图API的问题的主要内容,如果未能解决你的问题,请参考以下文章
在“ggplot”和“ggmap”中使用“facet_wrap”来显示多个图形的问题