Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add alt text to icons in legend #123

Merged
merged 2 commits into from
Jan 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions app/assets/javascripts/main.js.erb
Original file line number Diff line number Diff line change
Expand Up @@ -82,31 +82,36 @@ $(function() {
var icons = {
available: {
name: 'Drains to Sewer',
title: 'Sewer',
icon: '<%= image_path 'markers/tosewer.png' %>'
},
availableBay: {
name: 'Drains to Ocean/Bay',
title: 'Sewer to ocean/bay',
icon: '<%= image_path 'markers/tobay.png' %>'
},
adopted: {
name: 'Adopted',
title: 'Adopted by other',
icon: '<%= image_path 'markers/adopted.png' %>'
},
adopted_by_you: {
name: 'Adopted by you',
title: 'Adopted by you',
icon: '<%= image_path 'markers/adoptedbyyou.png' %>'
}
};

for (var key in icons) {
var type = icons[key];
var name = type.name;
var icon = type.icon;
var title = type.title;
var div = document.createElement('div');
div.innerHTML = '<img src="' + icon + '"> ' + name;
div.innerHTML = '<img src="' + icon + '" alt="' + title + ' icon" title="' + title + '"> ' + name;
legendItems.appendChild(div);
}

legend.appendChild(legendItems);

map.controls[google.maps.ControlPosition.BOTTOM_CENTER].push(legend);
Expand Down