PHP code example of vemcogroup / laravel-weather

1. Go to this page and download the library: Download vemcogroup/laravel-weather library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vemcogroup / laravel-weather example snippets


GOOGLE_MAPS_GEOCODING_API_KEY= 

$request = (new Vemcogroup\Weather\Request('1 Infinite Loop, Cupertino, CA 95014, USA'));

$request = (new Vemcogroup\Weather\Request('1 Infinite Loop, Cupertino, CA 95014, USA', 600));

$request->withUnits(Vemcogroup\Weather\Providers\Provider::WEATHER_UNITS_FAHRENHEIT);

$request->withLocale('nl');

$request->withDates([$date, ...]);

$request->withOption('name', 'value');

$weather = weather()->getForecast($request);

$weather->first()->getCurrently(); // DataPoint

$weather->first()->getDaily()->getData(); // array

$weather = weather()->getHistorical($request);
bash
php artisan vendor:publish --provider="Vemcogroup\Weather\WeatherServiceProvider"