The only way I managed to find is to directly manipulate the DOM elements corresponding to these markers. For example, they can be selected using
$('div').filter(function() { return $(this).css('width') == '11px'; })
Probably a more robust approach is to trace the DOM tree starting with the $ ('. Gm-style') element.
source share