class Geos::MultiPoint
Public Instance Methods
to_geojsonable(options = {})
click to toggle source
# File lib/geos/multi_point.rb, line 6 def to_geojsonable(options = {}) { :type => 'MultiPoint', :coordinates => self.to_a.collect { |point| point.to_a } } end
Also aliased as: as_geojson