@watergis/svelte-maplibre-export

@watergis/svelte-maplibre-export is a svelte component to add export control to maplibre.

Demo

©OpenStreetMap contributors | ©NARWASSCO,Ltd. | MapLibre

Usage

Install the package

npm i @watergis/svelte-maplibre-export
yarn add @watergis/svelte-maplibre-export
pnpm i @watergis/svelte-maplibre-export

Example

<script lang="ts">import { onMount } from 'svelte';
import { Map } from 'maplibre-gl';
import { MapExportControl, MapExportPanel } from '@watergis/svelte-maplibre-export';
let mapContainer;
// create maplibre.Map object
let map = new Map();
onMount(async () => {
    map = new Map({
        container: mapContainer,
        style: 'https://narwassco.github.io/mapbox-stylefiles/unvt/style.json'
    });
});
</script>

<div class="map" bind:this={mapContainer}>
	<div class="export-container">
		<MapExportPanel bind:map showPrintableArea={false} showCrosshair={false} />
	</div>
</div>
<MapExportControl bind:map showPrintableArea={true} showCrosshair={true} isShownSetting={true} />

<style lang="scss">@import 'maplibre-gl/dist/maplibre-gl.css';
.map {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map .export-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}</style>