| Class | Ym4r::YahooMaps::BuildingBlock::MapImage::Result |
| In: |
lib/ym4r/yahoo_maps/building_block/map_image.rb
|
| Parent: | Struct.new(:warning,:url) |
Contains a result match from the Yahoo! Maps Map Image service.
Downloads the image to file.
# File lib/ym4r/yahoo_maps/building_block/map_image.rb, line 59
59: def download_to(file)
60: data = open(url).read
61: open(file,"wb") do |f|
62: f.write data
63: end
64: end