私の目的は、マーカーの代わりに円を追加して、ツール モデル内の各ツールの位置の一般的な領域を示すことです。SO の他の回答に基づいて円を追加できましたが、次のコードを使用すると、この質問のタイトルにエラーが表示されます。
私のコントローラーで:
def index
@tools = Tool.all
@json=Tool.all.to_gmaps4rails
@circles = Tool.all{|t| {:longitude => t.longitude, :latitude => t.latitude, :radius =>"1000" }}.to_json
respond_to do |format|
format.html # index.html.erb
format.json { render json: @tools }
end
end
私のビューファイルでは:
<%= gmaps({ "markers" => {"data" => @circles}, "circles" => { "data" => @circles} } ) %>
JavaScript エラーにより、gmaps4rails.googlemaps.js ファイルの 401 行目に移動します。
this.boundsObject.extend(circle.serviceObject.getBounds().getNorthEast());
理由はありますか?