afimb/ninoxe

View on GitHub
app/presenters/chouette/geometry/access_point_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Chouette::Geometry::AccessPointPresenter
  include Chouette::Geometry::GeneralPresenter

  def initialize(access_point)
    @access_point = access_point
  end

  def geometry
    to_point_feature( @access_point)
  end
end