demarches-normaliennes/app/services/geojson_service.rb
2015-11-23 18:41:48 +01:00

10 lines
No EOL
169 B
Ruby

class GeojsonService
def self.to_polygon coordinates
{
geo: {
type: "Polygon",
coordinates: [coordinates]
}
}
end
end