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 the strokeColor property:
strokeColor
var marker = new google.maps.Marker({ id: "some-id", icon: { path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW, strokeColor: "red", scale: 3 }, map: map, title: "some-title", position: myLatlng });
See this page for other possibilities.