Embedding a Widget

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//ALPSCH04?station_id=1&date_start=2024-11-07T01:00:00.000Z&date_end=2024-12-07T01:00:00.000Z&aggregation_period=DAY&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//ALPSCH04?station_id=1&date_start=2024-11-07T01:00:00.000Z&date_end=2024-12-07T01:00:00.000Z&aggregation_period=DAY&token=your_token"></iframe>

Widgets ->

See the list of available widgets and their configuration.