# Septima Widget API

[Septima Widget](https://widget.cdn.septima.dk/latest/index.html) (in Danish) is a simple way to add interactive maps on the web. It is a commercial API. Please contact us at kontakt@septima.dk for more info.

## Getting Started

Install the [`septima-widget` package](https://www.npmjs.com/package/septima-widget):

```
npm install septima-widget
```

Import WidgetAPI in your application:

```js
import WidgetAPI from 'septima-widget';

new WidgetAPI('#map', {
    "map": {
        "view": {
            "zoomLevel": 10,
            "x": 724413,
            "y": 6175985
        },
        "layer": [
            {
                "namedlayer": "#dk_standard",
            }
        ]
    }
});
```

## Documentation

Check out the [examples](https://widget.cdn.septima.dk/latest/examples.html) and the [documentation](https://widget.cdn.septima.dk/latest/api.html) (in Danish).
