bozdoz / wp-plugin-leaflet-map

Add leaflet maps to Wordpress with shortcodes
https://wordpress.org/plugins/leaflet-map/
GNU General Public License v2.0
142 stars 72 forks source link

Add Accessible Markers #260

Closed bozdoz closed 1 month ago

bozdoz commented 1 month ago

From WP Forum:

Is it possible to add title and alt? Like here: https://leafletjs.com/examples/accessibility/ Markers must be labelled When using markers, it is vital to ensure each has a unique and descriptive alt or title:

var marker = L.marker([50.4501, 30.5234],
{alt: 'Kyiv'}).addTo(map) // "Kyiv" is the accessible name of this marker
.bindPopup('Kyiv, Ukraine is the birthplace of Leaflet!');