Alpsolut Widgets Docs

Livigno Meteogram

Widget code:ALPSCH01

Provides weather forecast for Livigno Paese and Quota.

Parameters

tokenrequired:

The Alpsolut API token.

langoptional:

The language to use for the widget. It defaults to 'en'.

Widget integration

Using the alpsolut widget plugin you will have the iframe sizing correctly handled:

<html>
<head>
<script src="https://widget.alpsolut.eu/alpsolut-widget.min.js"></script>
<script>
window.onload = function () {
AlpsolutWidget.create(
"https://widget.alpsolut.eu/ALPSCH01?token=your_token",
"iframeContainer"
);
};
</script>
</head>
<body>
<div id="iframeContainer"></div>
</body>
</html>

Or you can manually add the widget with the iframe and handle the styling and sizing yourself:

<iframe src="https://widget.alpsolut.eu/ALPSCH01?token=your_token"></iframe>