I have a place model that has two fields:
class Place
include Mongoid::Document
field :name, :type => String
field :loc, :type => Array
index([[:loc, Mongo::GEO2D]], :background => true)
validates_presence_of :name
end
I can easily output lat and lon in my views with:
@place.loc['lat']
A record in MongoDB that represents each place looks like this:
{ "_id" : ObjectId( "0293uhjf2hfio2h3" ),
"name" : "Starbucks",
"loc" : {
"lat" : 44.106667,
"lon" : -73.935833
}
}
My question is how can I create a form that will allow me to edit or create new location (lat/lon) fields?