使用嵌入式ruby循环Google Maps Markers?

时间:2016-07-04 02:22:30

标签: javascript ruby-on-rails google-maps embedded-ruby

我是铁杆的新手,我想知道我究竟能够循环这些标记。我的JS变量“count”无法识别,我需要一些帮助循环遍历我的ruby数组或需要另一个解决方案。

 function initMap() {
          var mapDiv = document.getElementById('map');
          var map = new google.maps.Map(mapDiv, {
              center: {lat: 44.540, lng: -78.546},
              zoom: 8
          });

          var total = <%= mapcount %>

          var javascriptcount = 0;

          var count = 0;

      <% arraylat = [] %> 
      <% arraylng = [] %> 

      <% mapposttotal.each do |q| %>
          <% arraylat << q.lat %> 
          <% arraylng << q.lng %> 
      <% end %>

          for (; javascriptcount <= total; javascriptcount++) {
            var marker = new google.maps.Marker({
              position: {lat: <%= arraylat[count] %>, lng: <%= arraylng[count] %>},
              map: map,
              title: 'Hello World!'
            });
            count = count + 1;
            console.log()
          }

        var Clicker = document.getElementById('PostIt');


        Clicker.addEventListener('click', function() {
            window.location='/newpost.html';}, false);

        }


    <% end %>

1 个答案:

答案 0 :(得分:1)

由于您是Rails的新手,我可以建议这个解决方案:

1.在MarkersController中添加操作:

    def index
      respond_to do |format|
        format.json do 
          markers = Marker.all.map do |marker|
             {
               lat: marker.lat,
               lng: marker.lng
             }
          end
          render json: markers
        end
      end
    end

2.在routes.rb

get "/markers", to: "markers#index"

3.Javascript:

function initMap() {
  $.getJSON("/markers", function(data) {
    // All your js code to populate markers go in here. 
  })
}

基本上它应该如何运作。只需根据您的需要定制代码