1.7.2 • Published 2 years ago

web-weather v1.7.2

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Weather Web Component

Web Component implementation through Lit (Google);

The component displays a panel with the real time weather for a given position (Latitude and Longitude)

The component uses Open Meteo Api

Installation

npm install web-weather

Getting started

require('web-weather');

Example

<web-weather 
    lat="44.86"
    lng="10.06" 
    lang="it"
    title="Il meteo a Fidenza"
    backcolor="#f9f9f9" 
    padding="10" 
    color="#292929"
    size="1" 
    bdsize="0"
    bdradius="5" 
    bdcolor="#cdcdcd"
    shadow
    backgroundmode
    nextdays
></web-weather>

or you can use

// Create the element
const weather = document.createElement('web-weather');

// Set the properties
weather.lat             = "44.86"
weather.lng             = "10.06" 
weather.lang            = "it"
weather.title           = "Il meteo a Fidenza"
weather.backcolor       = "#f9f9f9" 
weather.padding         = "10" 
weather.color           = "#292929"
weather.size            = "1" 
weather.bdsize          = "0"
weather.bdradius        = "5" 
weather.bdcolor         = "#cdcdcd"
weather.shadow          = true;
weather.backgroundmode  = true;
weather.nextdays        = true;

// Put element in to the document
document.body.append(weather);

Property

lat: Latitude
lng: Longitude
lang: Language ( default en - Other languages ​​available: it )
title: Title of card
backcolor: Background color
padding: Padding
color: Text color
size: Text size - em
bdsize: Border size ( 0 = No border )
bdcolor: Border color
bdradius: Corners round
shadow: Box shadow
backgroundmode: Set on background mode
iconsmode: Set on Icons mode
nextdays: Set Next Days Visualization

Next Days

Schermata-2022-06-28-alle-14-23-25.png

Background Mode

Schermata-2022-06-28-alle-13-09-20.png

Icons Mode

Schermata-2022-06-28-alle-13-13-39.png

1.7.2

2 years ago

1.7.1

2 years ago

1.7.0

2 years ago

1.6.9

2 years ago

1.6.8

2 years ago

1.6.7

2 years ago

1.6.6

2 years ago

1.6.5

2 years ago

1.6.4

2 years ago

1.6.3

2 years ago

1.6.2

2 years ago

1.6.1

2 years ago

1.5.5

2 years ago

1.5.4

2 years ago

1.5.3

2 years ago

1.5.2

2 years ago

1.5.1

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago