Google 静态地图 API 总是显示损坏 link。我究竟做错了什么?
Google Maps Static API always shows broken link. What am I doing wrong?
我想在我的网站上设置基本的静态地图图像,因此想使用 Google 静态地图 API。
我已按照此处的文档进行操作:https://developers.google.com/maps/documentation/maps-static/dev-guide
并构建了这样的图像 link:
<img src="https://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400&key=ABC123">
但这不起作用 - 我只看到一张损坏的图像。我已经尝试了几个 API 键,但没有成功。
有什么我想念的吗?我需要一些其他参数吗?
从 URL 中删除 HTML 编码(&
应该是 &
)。这对我有用:
<img src="https://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400" />
我想在我的网站上设置基本的静态地图图像,因此想使用 Google 静态地图 API。
我已按照此处的文档进行操作:https://developers.google.com/maps/documentation/maps-static/dev-guide
并构建了这样的图像 link:
<img src="https://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400&key=ABC123">
但这不起作用 - 我只看到一张损坏的图像。我已经尝试了几个 API 键,但没有成功。
有什么我想念的吗?我需要一些其他参数吗?
从 URL 中删除 HTML 编码(&
应该是 &
)。这对我有用:
<img src="https://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400" />