Class Ym4r::GmPlugin::Geocoding::Placemarks
In: lib/gm_plugin/geocoding.rb
Parent: Array

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

Methods

new  

Attributes

name  [RW] 
status  [RW] 

Public Class methods

[Source]

    # File lib/gm_plugin/geocoding.rb, line 53
53:         def initialize(name,status)
54:           super(0)
55:           @name = name
56:           @status = status
57:         end

[Validate]