0

我正在使用 gmaps4rails gem

我想在一个位置对其进行测试,因为它是从存储在数据库中的哈希中提取联系人的位置。

我把我的控制器:

@json = Contact.find_by_email("ted@cottonwoodcomm.com").my_location.to_gmaps4rails

我不断收到此错误:

undefined method `to_gmaps4rails' for "Commerce City, CO":String

有什么建议么?

4

1 回答 1

0

gmaps4rails需要将latitudelongitude列添加到模型中作为float。如果一切配置正确,该方法to_gmaps4rails将访问这些列,并且以下代码应该可以工作:

@json = Contact.find_by_email("ted@cottonwoodcomm.com").to_gmaps4rails
于 2013-09-11T16:14:00.647 回答