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).