根据坐标创建Google地图链接

时间:2015-05-30 09:05:36

标签: google-maps hyperlink coordinates share

如何根据坐标创建Google地图链接。他们的新基本共享网址包含许多参数,例如 -

https://www.google.com/maps/place/Vetlanda,+Sweden/@57.4217311,15.0849255,13z/data=!3m1!4b1!4m2!3m1!1s0x465758d912d321b5:0x55675191e550be84?hl=en

有什么想法吗?不是要嵌入,而只是创建可以共享的外部链接。

5 个答案:

答案 0 :(得分:115)

为什么不http://www.google.com/maps/place/lat,lng 我认为这是最简单的方式

http://www.google.com/maps/place/49.46800006494457,17.11514008755796

答案 1 :(得分:13)

根据this fiddle,您可以使用以下网址

another answer

显示图钉。

答案 2 :(得分:5)

当Google Maps重定向到其他URL格式时,当前接受的答案最终会在浏览器中添加一个额外的历史记录条目。

要避免在浏览器的历史记录中添加多余的内容,请use the official Maps API url

https://www.google.com/maps/search/?api=1&query=latitude,longitude

这还将在纬度,经度位置显示一个标记。

如果您只想center the map (and not display a marker), use the map action

https://www.google.com/maps/@?api=1&map_action=map&center=latitude,longitude

答案 3 :(得分:3)

在2020年工作,没有侧边栏,URL不变,包括缩放

Syntax: https://www.google.com/maps/@{lat},{long},{zoom}z

示例:https://www.google.com/maps/@51.123,10.123,15z

答案 4 :(得分:1)

最简单,最好的方法如下:-

https://maps.google.com/?q=latitude-value,longitude-value

希望有帮助。谢谢!