私は RoR を初めて使用するので、まだよく理解していない概念がたくさんあります。
Rails での最初のプロジェクトとして、Michael Hartl によるチュートリアルに基づいてサイト ベースをコーディングしました。私のサイトは Rails 3.1.0 で作成されており、ubuntu ステーションの dev で正常に動作します。そのサイト内には、そのようにgemfileにロードされたgmaps4railsがあります:
gem 'gmaps4rails', "~> 1.4.8"
/public/timeglider フォルダーのパブリック フォルダーにある javacript コントロールである timeglider という別のコントロールもあります。
これはすべてdevで機能していますが、herokuで本番環境にデプロイしたい場合、Chromeコンソールで問題が発生します:
http://geojiffy.herokuapp.com/:277Uncaught ReferenceError: Gmaps is not defined
http://geojiffy.herokuapp.com/:182Uncaught ReferenceError: Gmaps is not defined
ロードされたページの結果をここで確認してください。gmaps セクションには何もロードされません。
問題は、277 行目に到達した時点で Gmaps が定義されていないことです。
私がそれを修正しようとしたとき、sprocket とそれが js ファイルをコンパイルする方法について、stackoverflow で他の多くの質問を読みました。
application.js を から に変更し *= require_tree .
ました
//= require jquery-ui
//= require jquery
//= require jquery_ujs
//= require jiffies.js
//= require gmap3.min.js
//= require jquery-1.7.1.min.js
//= require jquery-ui-1.8.16.custom.min.js
//= require gmaps4rails/all_apis.js
//= require gmaps4rails/bing.js
//= require gmaps4rails/gmaps4rails.base.js.coffee
//= require gmaps4rails/gmaps4rails.bing.js.coffee
//= require gmaps4rails/gmaps4rails.googlemaps.js.coffee
//= require gmaps4rails/gmaps4rails.base.js
//= require gmaps4rails/googlemaps.js
スクリプトは、スラッグの作成時にherokuによってコンパイルされます
ここで完全な application.js にアクセスでき ます。そのスクリプト内で Gmaps オブジェクトが定義されている場所を見つけることができます。
Rails、gmaps4rails、heroku で理解できないことが多く、展開の問題が発生することは明らかです。問題がアセット パイプラインにあるのかどうかはわかりません。
私はこのバグに何晩も費やしましたが、明確なデバッグ方法を理解できません。バグを見つけるためのヒントを教えてください。
ps : 写真とリンクを投稿したいのですが、初心者なので制約があります
それは私の見解ではコードです:
<%= gmaps({ "map_options" => { "type" => "ROADMAP", "zoom" => 10, "detect_location" => true,"center_on_user" => true,"auto_adjust" => false},
"markers" => { "data" => @json } }) %>
<div class='timeline-div' id='placement'></div>
$(function () {
var isGeoChanging = false;
var lastGmapInfoWindowOpen = null;
var lastTgInfoWindowOpen = null;
//*****************************************************
// Code pour les évènements sur control du formulaire
//*****************************************************
$("#btn_change_geo").live('click', function() {
switchGeoChanging();
});
switchGeoChanging = function()
{
if (isGeoChanging)
{
$("#btn_change_geo").html("Change Jiffy's Geo");
isGeoChanging = false;
$("#div_change_geo_info").hide();
}
else
{
$("#btn_change_geo").html("Cancel");
isGeoChanging = true;
$("#div_change_geo_info").show();
}
}
//************************************************
// Code pour les évènements sur le gmap
//************************************************
Gmaps.map.callback = function()
{
for (var i=0; i<this.markers.length; i++)
{
var marker = Gmaps.map.markers[i].serviceObject;
marker.set("id", Gmaps.map.markers[i].id);
google.maps.event.addListener(marker, 'click', function()
{
//ici on cache les infowindow precedament ouvert pour garder la fenêtre à l'ordre
if (lastGmapInfoWindowOpen != null) { lastGmapInfoWindowOpen.infowindow.close(); }
lastGmapInfoWindowOpen = marker;
if (lastTgInfoWindowOpen != null) { lastTgInfoWindowOpen.hide(); }
//ici,si l'option est enclanché, on change la valeur du du geoId qui est associé au Jiffy
if (isGeoChanging)
{
switchGeoChanging();
$("#txt_geo_id").val(this.get("id"));
callAjaxGet("http://localhost:3000/jiffies/"+this.get('id')+"/getGeo");
}
} );
}
marker = null;
};
callAjaxGet = function(url)
{
$.ajax(url, {
type: 'GET',
data: { },
success: function() { },
error: function() { alert("Impossible de charger le Jiffy."); }
});
}
//************************************************
// code pour les évènements sur le timeglider
//************************************************
$(".timeline-table").css({"display":"block"});
var tg1 = $("#placement").timeline({
"min_zoom":5,
"max_zoom":50,
"show_centerline":true,
"data_source":"#jiffies_table",
"show_footer":false,
"display_zoom_level":true,
"event_overflow":"scroll",
"icon_folder":"http://localhost:3000/timeglider/js/timeglider/icons/"
});
$("#scrolldown").bind("click", function() {
$(".timeglider-timeline-event").animate({top:"+=100"})
});
$("#scrollup").bind("click", function() {
$(".timeglider-timeline-event").animate({top:"-=100"})
});
<%= @js_jiffies.html_safe%>
}); // end document-ready