af83/chouette-core

View on GitHub
app/views/stop_areas/show.geo.rabl

Summary

Maintainability
Test Coverage
object @stop_area

node do |s|
  {
    type: 'Feature',
    geometry: {
      type: 'Point',
      coordinates: [s.longitude.to_s, s.latitude.to_s]
    },
    properties: {
      name: s.name,
      type: 'waypoint'
    }
  }
end