{{{ extraHead.local }}} {{{ css.tag }}} {{ title }}
{{#if ./experimental}} {{/if}}
Edit

{{ title }}

{{#each tags}} {{ ./tag }}{{ ./examples.length }} {{/each}}

{{{ contents }}}

{{ shortdesc }}

{{ md docs }}
main.js
import 'ol/ol.css';
{{ js.source }}
index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>{{ title }}</title>
    <!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
    <script src="https://unpkg.com/elm-pep"></script>
    <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
    <script src="https://cdn.polyfill.io/v3/polyfill.min.js?features=fetch,requestAnimationFrame,Element.prototype.classList,URL,TextDecoder,Number.isInteger"></script>{{#if extraHead.remote}}
{{ indent extraHead.remote spaces=4 }}{{/if}}
    <style>
      .map {
        width: 100%;
        height:400px;
      }
{{#if css.source}}{{ indent css.source spaces=6 }}{{/if}}    </style>
  </head>
  <body>
{{ indent contents spaces=4 }}    <script src="main.js"></script>
  </body>
</html>
{{#if worker.source}}
worker.js
{{ worker.source }}
{{/if}}
package.json
{{ pkgJson }}
{{{ js.tag }}}