May I know a way to change the Google Map marker color via Javascript.. I am new at this and any help would be much appreciated, Thank you.
I used the following code
You can use this code it works fine.
var pinImage = new google.maps.MarkerImage("http://www.googlemapsmarkers.com/v1/009900/"); var marker = new google.maps.Marker({ position: yourlatlong, icon: pinImage, map: map });
see Example here