我正在用 HTML 开发一个网站,我想用一个链接包围一个邮政编码,这样当用户点击邮政编码时,他就会被发送到搜索该邮政编码的谷歌地图。有什么建议我该怎么做?谢谢!
问问题
4488 次
3 回答
3
<a href="https://maps.google.com/maps?q=POSTCODE">POSTCODE</a>
You mean like that?
于 2013-06-21T15:38:26.060 回答
0
Just put this type of link with q=postcode :
<a href="https://maps.google.fr/maps?q=YourPostCode" target="_blank">Go on maps </a>
example
<a href="https://maps.google.fr/maps?q=83210" target="_blank">Go on maps </a>
Enjoy
于 2013-06-21T15:38:08.913 回答
0
请参阅 Google 上的地图图像 API。这实际上很简单。
静态地图 API
将静态地图(包括地形或卫星地图)添加到您的网页或应用程序。静态地图 API 支持自定义样式、高分辨率打印和显示、标记和几何图形。
阅读开发者文档。
<img src="http://maps.googleapis.com/maps/api/staticmap?center=-15.800513,-47.91378&zoom=11&size=200x200&sensor=false">
开发文档在这里:https ://developers.google.com/maps/documentation/staticmaps/index
于 2013-06-21T15:11:59.557 回答