├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── assets └── svelte-maplibre-template.png ├── gh-pages.js ├── package.json ├── public ├── favicon.ico ├── global.css └── index.html ├── rollup.config.js ├── scripts └── setupTypeScript.js └── src ├── App.svelte ├── components ├── Map.svelte └── Navbar.svelte └── main.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | .env 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/README.md -------------------------------------------------------------------------------- /assets/svelte-maplibre-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/assets/svelte-maplibre-template.png -------------------------------------------------------------------------------- /gh-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/gh-pages.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/components/Map.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/src/components/Map.svelte -------------------------------------------------------------------------------- /src/components/Navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/src/components/Navbar.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/svelte-template-maplibre-gl-js/HEAD/src/main.js --------------------------------------------------------------------------------