我是RoR的新手。
我在Google地图上设置了一个从数据库(纬度和经度)加载的标记(图像)。
请帮忙!
答案 0 :(得分:1)
您可以使用Google地图中的嵌入代码,并使用变量添加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>