Skip to content

GeoLocateControl

Usecase

  • Center the map to the user location on mobile devices.
  • Provide a locate-me button for field survey or navigation workflows.

Props

PropDescriptionTypeRequiredDefault Value
mapIdstringfalse--
dragIdstringfalse--
btnWidthnumberfalse40
position'top-left', 'top-right', 'bottom-left', 'bottom-right'false'bottom-right'
controlVisiblebooleanfalsetrue

Events

Slots

NameDescription
defaultid:string

Usage

vue
<script setup lang="ts">
import { Map, GeoLocateControl } from '@hungpvq/vue-map-core';
import '@hungpvq/vue-map/style.css';
</script>

<template>
  <Map>
    <GeoLocateControl />
  </Map>
</template>