class RGeo::Kml::PointBuilder

Attributes

geo_factory[R]
parent[R]
point[R]
points[RW]
text[RW]

Public Class Methods

new(geo_factory, parent) click to toggle source
# File lib/rgeo/kml/point_builder.rb, line 8
def initialize(geo_factory, parent)
  @geo_factory = geo_factory
  @parent = parent
end

Public Instance Methods

build() click to toggle source
# File lib/rgeo/kml/point_builder.rb, line 13
def build
  @point = points.first
end