Class: GeographicItem::MultiPoint
- Inherits:
-
GeographicItem
- Object
- GeographicItem
- GeographicItem::MultiPoint
- Defined in:
- app/models/geographic_item/multi_point.rb
Overview
Multi point definition…
Constant Summary collapse
- SHAPE_COLUMN =
:multi_point
Instance Method Summary collapse
- #rendering_hash ⇒ Hash
-
#st_start_point ⇒ RGeo::Point
First point.
-
#to_a ⇒ Array
Arrays of points.
Instance Method Details
#rendering_hash ⇒ Hash
18 19 20 |
# File 'app/models/geographic_item/multi_point.rb', line 18 def rendering_hash multi_point_to_hash(self.multi_point) end |
#st_start_point ⇒ RGeo::Point
Returns first point.
13 14 15 |
# File 'app/models/geographic_item/multi_point.rb', line 13 def st_start_point geo_object[0] end |
#to_a ⇒ Array
Returns arrays of points.
8 9 10 |
# File 'app/models/geographic_item/multi_point.rb', line 8 def to_a multi_point_to_a(self.multi_point) end |