gpt4 book ai didi

google-maps - 将地名和地址转换为 Google map URL 和 iFrame

转载 作者:行者123 更新时间:2023-12-02 03:47:37 26 4
gpt4 key购买 nike

背景

我正在使用 WordPress,并且想要显示嵌入式 Google map iframe。我在后端添加了一个自定义元框来保存文本字符串。

目前

我使用 Google map 创建 map 链接,然后保存整个可嵌入 iframe 代码。这为工作流程添加了另一个步骤。我必须手动转到 Google map ,找到地址,然后保存 iframe 代码。

目标

我更愿意只保存地址并让我的 PHP 将其转换为 iframe。 Google Maps API 有没有办法仅通过发送地址和可能的地名来获取 iframe

最佳答案

截至 2016 年 1 月更新

Google 允许直接使用地址并在 iframe 中工作的 URL 调用。您只需在调用中告诉 Google(如 coding addicted pointed out )输出已嵌入。

您调用电话:

https://www.google.com/maps

并且您给出两个 GET 参数:

q=[ADDRESS]
output=embed

iframe 调用在 HTML 中看起来像这样:

<iframe src="https://www.google.com/maps?q=[ADDRESS]&output=embed"></iframe>

示例:

<iframe src="https://www.google.com/maps?q=Randall Miller %26 Associates 300 E Broadway, Logansport, IN 46947&output=embed"></iframe>

因此,使用 PHP(这是我最初问题的一部分),我会说:

<iframe src="https://www.google.com/maps?q=<?php echo $name . ' ' . $address; ?>&output=embed"></iframe>

此功能自 2016 年 7 月 14 日起生效。

关于google-maps - 将地名和地址转换为 Google map URL 和 iFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21140338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com