如何将地址转换为Google Maps Link

时间:2013-08-03 21:59:30

标签: php google-maps hyperlink

我有以下代码从数据库中提取地址。

 <td class="center"><?php echo ($customer->address!='')?$customer->address:'NA';?></td>

在管理区域显示地址。

我希望使用

将地址链接到谷歌地图
<a href="maps.google.com/?p= {then the addy} "> {the addy} </a>

但是当我添加代码链接时,代码就会中断。

最近的尝试是

<td class="center"><a href="http://map.google.com/?p=<?php echo ($customer->address!='')?$customer->address:'NA';?>"><?php echo ($customer->address!='')?$customer->address:'NA';?></a></td>

2 个答案:

答案 0 :(得分:5)

您的代码很好,只需将您的Google地址更改为https://maps.google.com/maps?q=

即可

答案 1 :(得分:0)

要获得有效的Google地图网址,您只需转到http://maps.google.com,输入您想要的地址,然后点击“链接按钮”即可。 您可以删除仍然有效的较短版本。 例如:纽约曼哈顿第五大街1号就像 https://maps.google.co.uk/maps?q=1+5th+Avenue,Manhattan,New+York,United+States。 所以只需在地址的各个部分之间添加','和每个空格的'+'。