{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [ <%= note.lon %>, <%= note.lat %> ] }, "properties": { "id": <%= note.id %>, "date_created": "<%= note.created_at %>", "nearby": "<%= note.nearby_place %>", "status": "<%= note.status %>", <% if note.status == "closed" -%> "closed_at": "<%= note.closed_at %>", <% end -%> "comments": [ <%= render :partial => "note_comment", :collection => note.comments, :spacer_template => "note_spacer" -%> ] } }