I need to remove the tabindex the map on my page. I used the code below but the tab passes through the markers on the map and the Google logo.
var map = new goog
[].slice.apply(document.querySelectorAll('#map a')).forEach(function(item) { item.removeAttribute('tabindex'); });
Some like that