谷歌地圖API,我需要一些幫助,顯示出3.0頁 我在堆棧溢出後 Google Maps API with Rails 3.0使用Rails 3.0
喜歡製圖我跟着從https://github.com/parolkar/cartographer說明我的軌道內的地圖。 另外我創建了一個cartographer.yml,並與谷歌鍵localhost的rails_app/config目錄下保存它:3000和本地主機:3000/GMAP/
我的控制器看起來像:
def show
@place = Place.find(params[:id])
@map = Cartographer::Gmap.new('map')
@map.zoom = :bound
marker1 = Cartographer::Gmarker.new(:name=> "taj_mahal", :marker_type => "Building",
:position => [27.173006,78.042086],
:info_window_url => "/url_for_info_content")
marker2 = Cartographer::Gmarker.new(:name=> "raj_bhawan", :marker_type => "Building",
:position => [28.614309,77.201353],
:info_window_url => "/url_for_info_content")
@map.markers << marker1
@map.markers << marker2
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @place }
end
end
和我有...
未定義的方法'名」爲:正常:符號
提取的源(左右線#44):
41: </p>
42:
43: <%= raw Cartographer::Header.new.to_s %>
44: <%= raw @map.to_html %>
45:
46: <%= link_to 'Edit', edit_place_path(@place) %> |
47: <%= link_to 'Back', places_path %>
謝謝...
請採取秒閱讀有關如何對常見問題解答使用代碼的標記。 – Will
任何想法這裏發生了什麼http://stackoverflow.com/questions/12443178/cartographer-plugin-rendering-odd-map – Abram