vue-manpo-maps
v0.1.16
Published
Vue 3 components for Manpo Georeferencing Maps
Maintainers
Readme
vue-manpo-maps
Vue 3 components for building georeferenced map applications using Manpo Georeferencing Library. It provides seamless integration with OpenLayers and Vuetify.
Installation
npm install vue-manpo-maps manpo-georeflib ol ol-ext vue3-openlayers uuidFeatures
- BaseMapComponent: A foundational georeferenced map component.
- WebMapComponent: Supports online tiled maps (e.g. OpenStreetMap).
- ImgMapComponent: Supports static images as interactive maps.
- Store Hooks: Built-in Pinia stores for state management (
useGeorefStore,useControlPointsStore, etc.).
Usage
<script setup>
import { WebMapComponent } from 'vue-manpo-maps';
import 'vue-manpo-maps/dist/vue-manpo-maps.css'; // Don't forget to import styles
</script>
<template>
<WebMapComponent />
</template>