How do i change the icon of a marker on google maps when I mouseover the text in a div? I managed to change the marker icon onmouseover the marker in the map itself using >
google.maps.event.addListener(marker1, 'mouseover', function () {
marker1.setIcon('miniMarker.png');
});
first call initialize function, define marker1 and then use this code, You can also call this function from different ways like you want on div mouse over etc.