PHP code example of medeirosdev / weather-here-developer

1. Go to this page and download the library: Download medeirosdev/weather-here-developer 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/ */

    

medeirosdev / weather-here-developer example snippets


'providers' => [
    ...
    \MedeirosDev\WeatherHereDeveloper\Frameworks\Laravel\WeatherHereDeveloperServiceProvider::class,
]

'aliases' => [
    ...
    'WeatherHereDeveloper' => \MedeirosDev\WeatherHereDeveloper\Frameworks\Laravel\WeatherHereDeveloper::class,
]

$license = new License($appId, $appCode);

$request = new WeatherHereDeveloper($license);

// or

$request = WeatherHereDeveloper::license($license);

// or Laravel framework license is auto generated

$request = new WeatherHereDeveloper();

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLanguage(Language::PORTUGUESE_BR)
    ->setLocation(Location::byName('Campinas - SP - Brazil'))
    ->request();

// Get description of first node  
$response->nodes[0]->description

// Or get description of first node based json response
$response->observations->location[0]->observaton[0]->description

$response = (new WeatherHereDeveloper)
    ->setProduct(Product::OBSERVATION)
    ->setLanguage(Language::PORTUGUESE_BR)
    ->setLocation(Location::byName('Campinas - SP - Brazil'))
    ->request();

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLanguage(Language::PORTUGUESE_BR)
    ->setLocation(Location::byName('Campinas - SP - Brazil'))
    ->request();

$observations = $response->nodes;

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLanguage(Language::PORTUGUESE_BR)
    ->setLocation(Location::byName('Campinas - SP - Brazil'))
    ->setOneObservation()
    ->request();

$observation = $response->nodes[0];

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::FORECAST_7DAYS)
    ->setLanguage(Language::PORTUGUESE_BR)
    ->setLocation(Location::byName('Campinas - SP - Brazil'))
    ->setOneObservation()
    ->request();

$node = $response->nodes[0];

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLocation(Location::byLatitudeLongitude('-22.907104', '-47.063240'))
    ->request();

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLocation(Location::byZipcode('13000-000'))
    ->request();

$response = WeatherHereDeveloper::license($license)
    ->setProduct(Product::OBSERVATION)
    ->setLocation(Location::byZipcode('13000-000'))
    ->useImperial()
    ->request();

src/Entities/Language.php