class Ym4r::GoogleMaps::Geocoding::Placemarks

Group of placemarks returned by the Geocoding service. If the result is valid the status attribute should be equal to Geocoding::GE0_SUCCESS

Attributes

name[RW]
status[RW]

Public Class Methods

new(name,status) click to toggle source
# File lib/ym4r/google_maps/geocoding.rb, line 98
def initialize(name,status)
  super(0)
  @name = name
  @status = status
end