我是RoR的新手。
我被困在从数据库(纬度和经度)加载的点上在谷歌地图上设置一个标志(图像)。
任何帮助,请!
问问题
272 次
1 回答
1
您可以使用 Google Maps 中的嵌入式代码,并添加带变量的 lat/long。例如,假设您的纬度在变量中@latitude
,经度在@longitude
:
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q="+<%= @latitude %>+",+"+<%= @longitude >+"+(You+can+insert+your+text+here)&hl=en&ie=UTF8&t=m&z=14&iwloc=A&output=embed">
</iframe>
<br />
<small>
<a href="https://maps.google.com/maps?q="+<%= @latitude %>+",+"+<%= @longitude %>+"+(You+can+insert+your+text+here)&hl=en&ie=UTF8&t=m&z=14&iwloc=A&source=embed" style="color:#0000FF;text-align:left">
View Larger Map
</a>
</small>
于 2013-04-15T14:10:19.643 回答