这种在没有 API 键的情况下动态嵌入 Google 地图的特定方法是否适用于 1000 秒的页面浏览量?
Will this specific method of dynamically embedding Google Maps without API key work for 1000s of page views?
随着 2018 年 Google 地图定价的变化,我们无法像迄今为止那样使用它。我们正在考虑转向另一个供应商,但也发现了一种无需提供 API 键即可嵌入地图的有效方法:
<div style="width: 100%">
<iframe width="100%" height="600"
src="https://maps.google.com/maps?output=embed&width=100%&height=600&hl=en&q=1600%20Pennsylvania%20Ave%20NW%2C%20Washington%2C%20DC%2020006%2C%20USA+(Example%20Address)&ie=UTF8&t=&z=16&iwloc=B"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
备注:
- 我们每天有数千次针对不同地址的页面浏览量。
- 我们找不到这种显示地图的方式 Google。
- 在
iframe
中加载地图的其他方法在没有 API 键的情况下似乎不起作用。 (例外:通过在 Google 地图上单击 'Share' 生成的 URL,格式为 <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!...other params that only Google knows how to generate here...></iframe>
- 显然我们不能手动执行此操作。)
我们的问题:
- 为什么 Google 保留这种自由嵌入动态 Google 地图而不使用 API 键的方法?
- 对此有请求限制吗(例如每天 100 个)?
- 是否有相关文档?
您示例中的 iframe 是使用 maps.google.com 上的消费者应用程序生成的。请注意,网站 maps.google.com 与 Google 地图 API 无关。这些是由 Google.
的不同团队管理的不同产品
由于您在 maps.google.com 上生成了一个 iframe 并且它不使用 API,因此您不需要任何 API 密钥。
Google 地图网站的这一功能记录在
https://support.google.com/maps/answer/144361
据我所知,此类 iframe 没有每日限制。
希望对您有所帮助!
随着 2018 年 Google 地图定价的变化,我们无法像迄今为止那样使用它。我们正在考虑转向另一个供应商,但也发现了一种无需提供 API 键即可嵌入地图的有效方法:
<div style="width: 100%">
<iframe width="100%" height="600"
src="https://maps.google.com/maps?output=embed&width=100%&height=600&hl=en&q=1600%20Pennsylvania%20Ave%20NW%2C%20Washington%2C%20DC%2020006%2C%20USA+(Example%20Address)&ie=UTF8&t=&z=16&iwloc=B"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
备注:
- 我们每天有数千次针对不同地址的页面浏览量。
- 我们找不到这种显示地图的方式 Google。
- 在
iframe
中加载地图的其他方法在没有 API 键的情况下似乎不起作用。 (例外:通过在 Google 地图上单击 'Share' 生成的 URL,格式为<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!...other params that only Google knows how to generate here...></iframe>
- 显然我们不能手动执行此操作。)
我们的问题:
- 为什么 Google 保留这种自由嵌入动态 Google 地图而不使用 API 键的方法?
- 对此有请求限制吗(例如每天 100 个)?
- 是否有相关文档?
您示例中的 iframe 是使用 maps.google.com 上的消费者应用程序生成的。请注意,网站 maps.google.com 与 Google 地图 API 无关。这些是由 Google.
的不同团队管理的不同产品由于您在 maps.google.com 上生成了一个 iframe 并且它不使用 API,因此您不需要任何 API 密钥。
Google 地图网站的这一功能记录在
https://support.google.com/maps/answer/144361
据我所知,此类 iframe 没有每日限制。
希望对您有所帮助!