Class Ym4r::YahooMaps::BuildingBlock::LocalSearch::ResultSet
In: lib/ym4r/yahoo_maps/building_block/local_search.rb
Parent: Array

Contains a list of results from the Yahoo! Maps Local Search REST service V3

Methods

new  

Attributes

first_result_position  [RW] 
map_url  [RW] 
total_results_available  [RW] 
total_results_returned  [RW] 

Public Class methods

[Source]

     # File lib/ym4r/yahoo_maps/building_block/local_search.rb, line 119
119:           def initialize(map_url,total_results_available, total_results_returned, first_result_position)
120:             super(0)
121:             @map_url = map_url
122:             @total_results_available = total_results_available
123:             @total_results_returned = total_results_returned
124:             @first_result_position = first_result_position
125:           end

[Validate]