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 >
I'm using Chrome. In the console, Uncaught ReferenceError: marker1 is not defined If you set variable like this: marker1 is not accessible at "window" level. You have to write it like this:onmouseover
the
function a() {
var marker1 = "foo";
}
alert(marker1);
var marker1;
function a() {
marker1 = "foo";
}
alert(marker1);