class Ym4r::YahooMaps::BuildingBlock::LocalSearch::ResultSet

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

Attributes

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

Public Class Methods

new(map_url,total_results_available, total_results_returned, first_result_position) click to toggle source
# File lib/ym4r/yahoo_maps/building_block/local_search.rb, line 112
def initialize(map_url,total_results_available, total_results_returned, first_result_position)
  super(0)
  @map_url = map_url
  @total_results_available = total_results_available
  @total_results_returned = total_results_returned
  @first_result_position = first_result_position
end