Map Measurement docs 
Vue.js library for advanced map measurement tools and controls
🚀 Introduction 
Map Measurement is a Vue.js library that provides robust and flexible tools for measuring distances, areas, and angles directly on interactive maps. It is designed for high-precision, professional use cases, and supports custom measurement actions, multiple units, and seamless integration with other map modules.
📦 Installation 
bash
npm install @hungpvq/vue-map-measurement🎯 Features 
- ✅ Distance measurement – Measure distances between points
 - ✅ Area measurement – Calculate areas of polygons
 - ✅ Angle and bearing – Measure angles and bearings
 - ✅ Multiple units – Support for meters, kilometers, feet, miles, acres, hectares, and more
 - ✅ Custom actions – Extend measurement tools with your own actions
 - ✅ High precision – Accurate calculations using Turf.js
 - ✅ Export support – Export results to GeoJSON, KML, CSV, and JSON
 - ✅ TypeScript support – Full TypeScript typings
 - ✅ Vue 3 Composition API – Modern, composable API
 
🚀 Usage 
With Map Core 
vue
<template>
  <Map :mapId="mapId" @map-loaded="onMapLoaded">
    <!-- Core controls -->
    <ZoomControl position="top-right" />
    <HomeControl position="top-right" />
    <!-- Measurement controls -->
    <MeasurementControl position="top-right" />
  </Map>
</template>
<script setup lang="ts">
import { Map, ZoomControl, HomeControl } from '@hungpvq/vue-map-core';
import { MeasurementControl } from '@hungpvq/vue-map-measurement';
</script>With Dataset Management 
vue
<template>
  <Map :mapId="mapId" @map-loaded="onMapLoaded">
    <LayerControl position="top-left" show>
      <template #endList="{ mapId }">
        <MeasurementControl :mapId="mapId" />
      </template>
    </LayerControl>
    <MeasurementControl position="top-right" />
  </Map>
</template>
<script setup lang="ts">
import { Map } from '@hungpvq/vue-map-core';
import { MeasurementControl } from '@hungpvq/vue-map-measurement';
import { LayerControl } from '@hungpvq/vue-map-dataset';
</script>Usage Notes 
- You can provide custom actions via the 
actionsprop to extend the measurement workflow (e.g., export, add to layer). - The component emits events for integration with your application's state or analytics.
 - Supports both Composition API and Options API in Vue 3.