我想使用此代码在我的项目中从谷歌地图添加一个位置
<div class="map">
<iframe src="https://myurl"></iframe>
</div>
但它没有用。我收到消息error msg:google n'autorise pas la connexion
使用谷歌地图指南https://developers.google.com/maps/documentation/javascript/adding-a-google-map 而不是使用<iframe>
,由于安全考虑,这被认为是一种不好的做法
如果您想使用 iframe,可以使用 Maps Embedded API。在链接上,您可以输入您的地址,它将为您的地址生成一个 iframe 代码段。请注意,您需要包含 API 密钥作为密钥参数的值。
下面是您可以使用的示例代码段:
<div id="map">
<iframe width="600" height="450" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJB6jLlpY0_RIRMfzxHQUfogc&key=PUT_YOUR_API_KEY_HERE" allowfullscreen></iframe>
</div>
希望这有帮助!