Is Mapbox compliant with Section 508 on accessibility on US websites?

We are considering creating pages with a data visualization function on the federal government website and are interested in using the Mapbox API. There are concerns that this does not meet the requirements of section 508 regarding accessibility. Does anyone know a precedent when a card box was successfully used on a government website or how to make it available in accordance with instructions 508?

+3
source share
1 answer

The Mapbox web interface uses the open-source Leaflet.js library plug-in ( http://leafletjs.com ) to display web maps, so Mapbox adherence to accessibility standards is directly dependent on Leaflet meeting these standards.

Leaflet is currently not section 508, but they are working on it. There is currently a big discussion on Leaflet GitHub on this topic: https://github.com/Leaflet/Leaflet/issues/3210

The biggest problems are apparently related to the base plates (screen readers will read the file name of each tile) and the map control buttons.

(Note that this answer is definitely relevant to their Javascript library. I'm not sure about my iOS or Android SDK.)

0
source

All Articles