3

请任何人帮助我获取以下静态地图网址的动态地图网址。

http://maps.google.com/maps/api/staticmap?center=59.4,43.4&map_type=SATELLITE&markers=color:blue|label:b|59.4,43.4&sensor=false&size=400x300&zoom=10

4

1 回答 1

2

http://mapki.com/wiki/Google_Map_Parameters上有一个谷歌地图参数列表——太多了,无法复制出来并在此处列出答案。

您的地图将是http://maps.google.com/maps?q=59.4,43.4&t=k&z=10

注意:无法在 Google 地图中指定特定标记,因此没有蓝色标记的参数。你map_type=SATELLITE在你的 URL 中应该是maptype=satellite:没有下划线和小写。Maps URL 中的t=k指定卫星视图。

如果您想将其嵌入您的网站,<iframe>所需的代码是

<iframe width="400" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=59.4,43.4&amp;t=k&amp;ie=UTF8&amp;z=10&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?q=59.4,43.4&amp;t=k&amp;ie=UTF8&amp;z=10&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>

于 2012-04-23T10:14:59.127 回答