在個人資料檢視中顯示 Google 地圖上的地址
在配置檔案檢視中,顯示列表中使用者或組的配置檔案欄位以及 Google 地圖上的地址欄位。
- # app/views/profiles/show.html.haml
%h1 Contact Information
.profile_fields
= render @profile_fields
.google_map{data: address_fields: @address_fields.to_json }
適當的 @profile_fields
和 @address_fields
在控制器中設定:
# app/controllers/profiles_controller.rb
class ProfilesController < ApplicationController
def show
# ...
@profile_fields = @user_or_group.profile_fields
@address_fields = @profile_fields.where(type: 'ProfileFields::Address')
end
end
使用 javascript 初始化地圖,放置標記,設定縮放和其他地圖設定。