打开天气地图gem包装器。安装将此行添加到应用程序的Gemfile中:
gem 'open_weather_api'
然后执行:
$ bundle
或者自己安装:
$ gem install open_weather_api
用法
- 获取伦敦的3小时天气预报:
```ruby
OpenWeatherApi.city('London').forecast
```
- 获取id为524901的城市当前天气:
```ruby
OpenWeatherApi.city_id(524901).current
```
- 获取16天的天气预报(使用公制单位):
```ruby
OpenWeatherApi.geolocate(lat: 45.321, lng: 34201).forecast
```
暂无评论