Skip to content

๐Ÿงฉ LControlAttribution โ€‹

The attribution control allows you to display attribution data in a small text bos on a map.

๐Ÿงช Demo โ€‹

vue
<script setup lang="ts">
import { LControlAttribution, LMap, LTileLayer } from '@maxel01/vue-leaflet'
import { ref } from 'vue'

const customAttributionPrefix = ref<string>('<strong>Custom bottom left attribution</strong>')
</script>

<template>
    <LMap ref="map" :zoom="2" :center="[47.41322, -1.219482]">
        <LTileLayer
            url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
            layer-type="base"
            name="OpenStreetMap"
        />
        <LControlAttribution position="bottomleft" :prefix="customAttributionPrefix" />
    </LMap>
</template>

โš™๏ธ Props โ€‹

Prop nameDescriptionTypeReactiveDefaultRequired
prefixThe HTML text shown before the attributions. Pass false to disable.string | falsetrue-false

๐Ÿ”— Inherited props โ€‹

from ControlAbstractProps
Prop nameDescriptionTypeReactiveDefaultRequired
positionThe position of the control (one of the map corners). Possible values are topleft, topright, bottomleft or bottomright.ControlPositiontrue-false
from ComponentProps
Prop nameDescriptionTypeReactiveDefaultRequired
optionsLeaflet options to pass to the component constructor.TinitOnly-false

๐Ÿ“ก Emits โ€‹

EventArgumentsDescription
readyTTriggers when the component is ready

๐Ÿงญ Exposes โ€‹

NameTypeDescription
leafletObjectRef<Control.Attribution | undefined>The underlying Leaflet instance. Can be used to directly interact with the Leaflet API (e.g. calling methods or accessing internal state).