Class Ym4r::GoogleMaps::Geocoding::Placemarks
In: lib/ym4r/google_maps/geocoding.rb
Parent: Array

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

Methods

new  

Attributes

name  [RW] 
status  [RW] 

Public Class methods

[Source]

    # File lib/ym4r/google_maps/geocoding.rb, line 57
57:         def initialize(name,status)
58:           super(0)
59:           @name = name
60:           @status = status
61:         end

[Validate]