0

私はRoRの初心者です。
データベース(緯度と経度)からロードされたポイントでGoogleマップにフラグ(画像)を設定することに固執しています。
助けてください!

4

1 に答える 1

1

Google マップの埋め込みコードを使用して、変数を使用して緯度/経度を追加できます。たとえば、緯度が変数@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)&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;z=14&amp;iwloc=A&amp;output=embed">
</iframe>
<br />
<small>
  <a href="https://maps.google.com/maps?q="+<%= @latitude %>+",+"+<%= @longitude %>+"+(You+can+insert+your+text+here)&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;z=14&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left">
    View Larger Map
  </a>
</small>
于 2013-04-15T14:10:19.643 に答える