У меня есть каждый:
{
"type": "FeatureCollection",
"features": [
<% @pois.each do |poi| %>
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [<%= poi.longitude %>, <%= poi.latitude %> ]
},
<% end %>
]
}
Я хочу удалить последнюю запятую для последней итерации. Как я могу это сделать?
Это не JSON, а Geojson.
У меня было бы что-то вроде этого:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [2.484957, 44.6044089 ]
},
"properties": {}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [2.3749903, 44.5656783 ]
},
"properties": {}
}
]
}
Все нормально, я просто хочу удалить последнюю запятую;)