DrawControl 
Usecase 
- Let users sketch points/lines/polygons for feedback or annotation.
 - Collect geometry inputs for further analysis or data submission.
 
Props 
| Prop | Description | Type | Required | Default Value | 
|---|---|---|---|---|
mapId | string | false | -- | |
dragId | string | false | -- | |
btnWidth | number | false | 40 | |
position | 'top-left', 'top-right', 'bottom-left', 'bottom-right' | false | 'bottom-right' | |
controlVisible | boolean | false | true | 
and
| Prop | Description | Type | Required | Default Value | 
|---|---|---|---|---|
drawOptions | Drawing options (see below) | DrawOption | false | undefined | 
Slots 
| Name | Description | 
|---|---|
default | Custom content slot | 
Usage Notes 
- Use inside a 
<Map>component from@hungpvq/vue-map-core. - Provide a 
drawOptionsprop to configure supported geometry types and save behavior. - Emits events for all major draw actions (start, complete, update, delete).
 - Supports slot for custom button or UI extension.
 
Usage 
vue
<script setup lang="ts">
import { Map } from '@hungpvq/vue-map-core';
import { DrawControl } from '@hungpvq/vue-map-draw';
import '@hungpvq/vue-map-core/style.css';
import '@hungpvq/vue-map-draw/style.css';
</script>
<template>
  <Map>
    <DrawControl />
  </Map>
</template>