Skip to content

LControlAttribution

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

Demo

vue
<LMap style="height: 350px" :zoom="8" :center="[47.21322, -1.559482]">
  <LTileLayer
    url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
    attribution="&amp;copy; <a href=&quot;https://www.openstreetmap.org/&quot;>OpenStreetMap</a> contributors"
    layer-type="base"
    name="OpenStreetMap"
  />
  <LControlAttribution position="topright" prefix="A custom prefix" />
</LMap>

Props

Prop nameDescriptionTypeRequiredDefault
prefixThe HTML text shown before the attributions. Pass false to disable.String|boolean-'Leaflet'

Inherited props

from control.ts
Prop nameDescriptionTypeRequiredDefault
positionThe position of the control (one of the map corners). Possible values are topleft, topright, bottomleft or bottomright.String as L.ControlPosition-'topright'
from component.ts
Prop nameDescriptionTypeRequiredDefault
optionsLeaflet options to pass to the component constructorObject-{}

Events

Event nameTypeDescription
readyobjectTriggers when the component is ready