如何根据坐标创建Google地图链接。他们的新基本共享网址包含许多参数,例如 -
有什么想法吗?不是要嵌入,而只是创建可以共享的外部链接。
答案 0 :(得分:115)
为什么不http://www.google.com/maps/place/lat,lng
我认为这是最简单的方式
http://www.google.com/maps/place/49.46800006494457,17.11514008755796
答案 1 :(得分:13)
答案 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¢er=latitude,longitude
答案 3 :(得分:3)
在2020年工作,没有侧边栏,URL不变,包括缩放
Syntax: https://www.google.com/maps/@{lat},{long},{zoom}z
答案 4 :(得分:1)
最简单,最好的方法如下:-
https://maps.google.com/?q=latitude-value,longitude-value
希望有帮助。谢谢!