blob: d3ecb6128d7b9825e2f0be6e328d3f2a68fbb0af (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | 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
 |