aducworth/openweather

该软件包最新版本(dev-master)没有可用的许可信息。

为 Laravel 5 提供的 OpenWeatherMap API 封装器

dev-master 2018-01-25 22:36 UTC

This package is not auto-updated.

Last update: 2024-09-14 20:04:08 UTC


README

Laravel 的 Open Weather 封装器

http://openweathermap.org

##安装

通过 Composer

$ composer require aducworth/openweather:dev-master

##服务提供者 'Aducworth\Openweather\OpenweatherServiceProvider'

##外观 'Openweather' => 'Aducworth\Openweather\Facades\Openweather'

用法

获取当前天气。

use Openweather;

$data = Openweather::byCity({appid},{city},{country=null});

$data = Openweather::byZip({appid},{zip});

$data = Openweather::byCoordinates({appid},{lat},{lon});