Sha256: 9e7e0ac262f19f0f7bb84fc273131d5d0501c9c053b5f0b8c790c7ea0119ceb9
Contents?: true
Size: 578 Bytes
Versions: 4
Compression:
Stored size: 578 Bytes
Contents
require 'cloudmade' cm = CloudMade::Client.from_parameters('BC9A493B41014CAABB98F0471D759707') puts 'Testing CloudMade Client' puts "Geocoding" puts "---------" puts "Find" puts cm.geocoding.find('Potsdamer Platz, Berlin, Germany') puts "Find closest" puts cm.geocoding.find_closest('pub', 50.9425, 6.9575) puts "Routing\n-------\n" puts cm.routing.route( CloudMade::Point.new(47.25976, 9.58423), CloudMade::Point.new(47.66117, 9.99882)) puts "Tiles\n-----\n" tile = cm.tiles.get_tile(50.39947, 30.6479, 15) file = File.new('my_tile.png', 'w') file.write(tile) file.close
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
cloudmade-0.2.1 | lib/cloudmade/examples.rb |
cloudmade-0.2.0 | lib/cloudmade/examples.rb |
cloudmade-0.1.4 | lib/cloudmade/examples.rb |
cloudmade-0.1.3 | lib/cloudmade/examples.rb |