ol-interaction-link
The link interaction allows you to synchronize the map state with the URL. By default the view center, zoom level, and rotation will be reflected in the URL as you navigate around the map. Layer visibility is also reflected in the URL. Reloading the page restores the map view state.
Usage
<template>
<form>
<label for="zoom">Zoom:</label>
<input type="number" id="zoom" v-model="zoom" />
</form>
<ol-map style="height: 400px">
<ol-view
ref="view"
:center="center"
:rotation="rotation"
:zoom="zoom"
:projection="projection"
@change:center="centerChanged"
@change:resolution="resolutionChanged"
@change:rotation="rotationChanged"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-rotate-control></ol-rotate-control>
<ol-interaction-link />
</ol-map>
<ul>
<li>center : {{ currentCenter }}</li>
<li>resolution : {{ currentResolution }}</li>
<li>zoom : {{ currentZoom }}</li>
<li>rotation : {{ currentRotation }}</li>
</ul>
</template>
<script setup>
import { ref } from "vue";
const center = ref([40, 40]);
const projection = ref("EPSG:4326");
const zoom = ref(8);
const rotation = ref(0);
const currentCenter = ref(center.value);
const currentZoom = ref(zoom.value);
const currentRotation = ref(rotation.value);
const currentResolution = ref(0);
function resolutionChanged(event) {
currentResolution.value = event.target.getResolution();
currentZoom.value = event.target.getZoom();
}
function centerChanged(event) {
currentCenter.value = event.target.getCenter();
}
function rotationChanged(event) {
currentRotation.value = event.target.getRotation();
}
</script>
<style scoped>
.ol-map {
position: relative;
}
.ol-map-loading:after {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 80px;
height: 80px;
margin-top: -40px;
margin-left: -40px;
border-radius: 50%;
border: 5px solid rgba(180, 180, 180, 0.6);
border-top-color: var(--vp-c-brand-1);
animation: spinner 0.6s linear infinite;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
</style>
Properties
Props from OpenLayers
Properties are passed-trough from OpenLayers directly. Their types and default values can be checked-out in the official OpenLayers docs. Only some properties deviate caused by reserved keywords from Vue / HTML. This deviating props are described in the section below.
Deviating Properties
None.
Events
You have access to all Events from the underlying interaction. Check out the official OpenLayers docs to see the available events tht will be fired.
<ol-interaction-link @error="handleEvent" />
Methods
You have access to all Methods from the underlying interaction. Check out the official OpenLayers docs to see the available methods.
To access the source, you can use a ref()
as shown below:
<template>
<!-- ... -->
<ol-interaction-link ref="interactionRef" />
<!-- ... -->
</template>
<script setup lang="ts">
import { ref, onMounted } from "vue";
import type Link from "ol/interaction/Link";
const interactionRef = ref<{ link: Link } | null>(null);
onMounted(() => {
const link: Link = interactionRef.value?.link;
// call your method on `link`
});
</script>