前提・実現したいこと
railsで自分用のアプリを制作中で取り入れたいJavaScriptのファイル (https://www.10bestdesign.com/jqvmap/)の地図をrailsのアプリのトップ画面で表示させたいがページ上は真っ白で何も表示されない
発生している問題・エラーメッセージ
コンソール上でFailed to load resource: the server responded with a status of 404 (Not Found) Uncaught ReferenceError: jQuery is not defined
該当のソースコード
index.html.haml
1!!! 2!!! 3%html 4 %head 5 %meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"}/ 6 %link{:href => "../dist/jqvmap.css", :media => "screen", :rel => "stylesheet", :type => "text/css"}/ 7 %script{:src => "http://code.jquery.com/jquery-1.11.3.min.js", :type => "text/javascript"} 8 %script{:src => "../dist/jquery.vmap.js", :type => "text/javascript"} 9 %script{:charset => "utf-8", :src => "../dist/maps/jquery.vmap.world.js", :type => "text/javascript"} 10 %script{:src => "js/jquery.vmap.sampledata.js", :type => "text/javascript"} 11 :javascript 12 jQuery(document).ready(function () { 13 jQuery('#vmap').vectorMap({ 14 map: 'world_en', 15 backgroundColor: '#333333', 16 color: '#ffffff', 17 hoverOpacity: 0.7, 18 selectedColor: '#666666', 19 enableZoom: true, 20 showTooltip: true, 21 scaleColors: ['#C8EEFF', '#006491'], 22 values: sample_data, 23 normalizeFunction: 'polynomial' 24 }); 25 }); 26 %body 27 #vmap{:style => "width: 100vw; height: 100vh;"} 28
試したこと
html記述をhamlに書き換えた
javascriptの読み込むファイルをassets/javascriptの中に移動させた
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
javascriptの読み込むファイルをassets/javascriptにうつさず、hamlを変換する前のhtmlファイルをウェブ上でみるとちゃんと表示されるが、自分が作成しているアプリのrailsのファイルに入れると何も表示されないです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。