在 gmaps4rails 文档中有这种方法:
def gmaps4rails_address
self.address #describe how to retrieve the address from your model
end
如何在那里设置自定义组合地址?我试过了:
def gmaps4rails_address
self.address = (address + ', ' + city + ', ' + state + ', ' + zip)
end
它没有用,我的表格中有市州邮政编码和地址字段。
为什么它不起作用?