Url到谷歌地图页面显示给定纬度/经度的图钉?

时间:2011-04-27 16:00:25

标签: html google-maps

我是否可以使用纬度,经度对构建一些网址,直接将我引导到Google地图页面以显示该位置?

例如,以下伪代码:

var lat = 43.23;
var lng = 114.08;

var url = 'http://google.com/maps/bylatlng?lat=' + lat + '&lng=' + lng';

print 'click here to see this location in google maps!: <a href="' + url + '">go</a>';

那样的东西?

由于

2 个答案:

答案 0 :(得分:179)

你应该可以这样做:

http://maps.google.com/maps?q=24.197611,120.780512

有关可用查询参数的更多信息at this location

这是SO thread

的另一个链接

答案 1 :(得分:21)

从我的笔记:

http://maps.google.com/maps?q=37.4185N+122.08774W+(label)&ll=37.419731,-122.088715&spn=0.004250,0.011579&t=h&iwloc=A&hl=en

这样解析:

    q=latN+lonW+(label)     location of teardrop

    t=k             keyhole (satelite map)
    t=h             hybrid

    ll=lat,-lon     center of map
    spn=w.w,h.h     span of map, degrees

iwloc与信息窗口有关。 hl显然是语言。

另请参阅:http://www.seomoz.org/ugc/everything-you-never-wanted-to-know-about-google-maps-parameters