Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <div class="field">
  2. <%= form.label :start %>
  3. <%= collection_select(:path, :start, Location.all, :id, :Name, prompt: true) %>
  4. </div>
  5.  
  6. <div class="field">
  7. <%= form.label :end %>
  8. <%= collection_select(:path, :end, Location.all, :id, :Name, prompt: true) %>
  9. </div>
  10.  
  11. <%= content_tag :div, class: "temp_information", data: {lat: @location.Latitude,long: @location.Longitude} do %>
  12. <% end %>
  13.  
  14. <script>
  15. map code
  16. $('.temp_information').data('lat')
  17. $('.temp_information').data('long')
  18. </script>
  19.  
  20. alert(JSON.stringify(gon.paths))
  21. alert(JSON.stringify(gon.path))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement